programming languages Online Quiz - 3
Description: programming languages Online Quiz - 3 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
When was James Gosling born.
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?
Which of the following would you use to compare the result of investing $X a year for 6 years in three different banks that compound interest monthly? Assume a fixed rate for the 6-year period.
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
SAS Key words can't be used as variable names
SAS Statements can span more than one line
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 functions will be invoked on the function call- show(10);
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??