programming languages Online Quiz - 3
Description: programming languages Online Quiz - 3 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Which Interface has no methods.
Which DO statement would not process all the elements in the tmp array shown below? array tmp{*} x y z a;
Which keyword, when added to the PROC FORMAT statement, will display all the formats in your catalog?
Using ODS statements, how many types of output can you generate at once?
Macro character functions
Assuming that you began your SAS session today, which of the following statements correctly sets the macro variable currdate to today's date?
What happens if you use a GROUP BY clause in a PROC SQL step without a summary function?
SAS is not portable ...
SAS is a free format language
SAS Statements are not case sensitive
We all know that constructors are nothing but methods in java. But, as all the methods are either static or non-static , Then, what is the type-access modifier for the constructor?
The constructors do not have a return-type.
Which of the following methods will be invoked when the call is-- show(10L);
class A {
int x=10;
public static void show() {
int x=20;
System.out.println(x);
}
}
The Output we always get is-- 20,, But Why... What is the name of this concept??