programming languages Online Quiz - 311
Description: programming languages Online Quiz - 311 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
What is the maximum number of DD stmt a step can have?
STEP1 EXEC PGM=P1 STEP2 EXEC PGM=P2,COND=EVEN STEP3 EXEC PGM=P3,COND=((8,LE,STEP1),ONLY) If the condition code of the step1 is 4 and the step2 was abended then which statement is correct.
If DISP=(,CATLG) which is the correct one?
What gets printed when the following program is compiled and run. Select the one correct answer. class test { public static void main(String args[]) { int i,j,k,l=0; k = l++; j = ++k; i = j++; System.out.println(i); } }
Which of the following are Java modifiers?
Which one does not have a ValueOf(String) method?
Why might you define a method as native?
Which option most fully describes will happen when you attempt to compile and run the following code public class MyAr{ public static void main(String argv[]) { MyAr m = new MyAr(); m.amethod(); } public void amethod(){ static int i; System.out.println(i); } }
Which one does not extend java.lang.Number?
Which of the following will compile correctly
Which of the following are Java key words
TreeMap class is used to implement which collection interface. Select the one correct answer
True or False: You don’t need to specify a default value for an optional parameter
What is the significance of the option explicit statement when it is set to ON
Which of the following is used to check whether the Caps lock in keyboard is turned on or Not By using VB.Net 2005?