Tag: programming languages
Questions Related to programming languages
which of the following modifiers can be applied to top level class(i.e., a class which is not enclosed by other class) select all that apply
Select correct answer Given: Class A{ A(){ System.out.print(“A”); } } Class B extends A{ B(){ this(4); super(); System.out.print(“B”); } B(int i){ System.out.print(“C”); } }
How does the following macros will resolve? What will be the output in log file? %let one=two; %let two=three; %let three=one; %put &one; %put &&one; %put &&&one;
Which date function advances a date, time or date/time value by a given interval?