programming languages Online Quiz - 15
Description: programming languages Online Quiz - 15 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Attempted
0/20
Correct 0
Score 0
‹
›
x=InStrRev("abc","cba") x=???
x=space(2) y=Len(x) y=????
Read this piece of code carefully if("String".toString() == "String") System.out.println("Equal"); else System.out.println("Not Equal");Answers
In JAVA, Delete Is Keyword?
What Is SuperClass In JAVA
JAVA Runs on ........
What's the difference between an Applet and an application ?
The following statements make “length” be what number ? int length; length = 4; length ++;
Booleans are _______.
What will be the value of “num” after the following statements? int num; num = (5+4); num = num / 9; num = 12;
If you want your conditional to depend on two conditions BOTH being true, what is the proper notation to put between the two Boolean statements ?