🔥 Burn Fat Fast. Discover How! 💪

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 20

2021-04-06 13:36:49 Code snippet
List one = new ArrayList();
one.add("abc");
List two = new ArrayList<>();
two.add("abc");
if (one == two)
System.out.println("A");
else if (one.equals(two))
System.out.println("B");
else
System.out.println("C");
708 views10:36
Open / Comment
2021-04-02 14:09:25 Code snippet:
13: String a = "";
14: a += 2;
15: a += 'c';
16: a += false;
17: if ( a == "2cfalse") System.out.println("==");
18: if ( a.equals("2cfalse")) System.out.println("equals");
730 views11:09
Open / Comment
2021-03-30 13:23:08 Code snippet:
3: String s = "purr";
4: s.toUpperCase();
5: s.trim();
6: s.substring(1, 3);
7: s += " two";
8: System.out.println(s.length());
765 views10:23
Open / Comment