Get Mystery Box with random crypto!

Top Java Quiz Questions ☕️

Logo of telegram channel topjavaquizquestions — Top Java Quiz Questions ☕️ T
Logo of telegram channel topjavaquizquestions — Top Java Quiz Questions ☕️
Channel address: @topjavaquizquestions
Categories: Education
Language: English
Subscribers: 2.87K
Description from channel

🎓🔥💾 If you want to acquire a solid foundation in Java and/or your goal is to prepare for the exam, this channel is definitely for you.
🤳Feel free to contact us - @topProQ
If you are interested in Python https://t.me/topPythonQuizQuestions

Ratings & Reviews

3.50

2 reviews

Reviews can be left only by registered users. All reviews are moderated by admins.

5 stars

1

4 stars

0

3 stars

0

2 stars

1

1 stars

0


The latest Messages 18

2021-05-14 10:50:46
257 views07:50
Open / Comment
2021-05-14 10:50:30 Code snippets:
251 views07:50
Open / Comment
2021-05-11 14:13:20 Code snippet:
public class Cheetah {
int numSpots;
public Cheetah(int numSpots) {
// INSERT CODE HERE
}
public static void main(String[] args) {
System.out.println(new Cheetah(50).numSpots);
}
}
171 views11:13
Open / Comment
2021-05-05 09:33:23 Code snippet:
public class BirdSeed {
private int numberBags;
boolean call;
public BirdSeed() {
// LINE 1
call = false;
// LINE 2
}
public BirdSeed(int numberBags) {
this.numberBags = numberBags;
}
public static void main(String[] args) {
BirdSeed seed = new BirdSeed();
System.out.println(seed.numberBags);
} }
227 views06:33
Open / Comment
2021-04-29 14:54:28 Code snippet:
1: public class Squares {
2: public static long square(int x) {
3: long y = x * (long) x;
4: x = -1;
5: return y;
6: }
7: public static void main(String[] args) {
8: int value = 9;
9: long result = square(value);
10: System.out.println(value);
11: } }
536 views11:54
Open / Comment