جافا Java
6.46K subscribers
212 photos
18 videos
81 files
269 links
ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم
Download Telegram
Which data type value is returned by all transcendental math functions?
#java_1
Anonymous Quiz
31%
int
43%
double
15%
float
12%
long
👍1
#java_1
A switch can use relational operators (>, <).
Anonymous Quiz
56%
True
44%
False
#java_1
A switch can only test for equality using the equality operator (==).
Anonymous Quiz
64%
True
36%
False
👍1
#java_1
Used to break out of a loop if a certain condition is met.
Anonymous Quiz
84%
break
16%
Continue
#java_1
Will stop further execution of the current iteration of a loop, and then evaluate the LCC and continue if it is true.
Anonymous Quiz
31%
break
69%
Continue
1
#java_1
a syntax to select one of many code blocks to be executed
Anonymous Quiz
26%
if else
19%
if
35%
switch
21%
loop
👍1
#java_1
A ... statement tests a variable for equality against a list of values. Each value is called a case, and the variable being switched on is checked for each case.
Anonymous Quiz
19%
if else
64%
switch
11%
for loop
6%
Do while