programming languages Online Quiz - 3
Description: programming languages Online Quiz - 3 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Attempted
0/20
Correct 0
Score 0
‹
›
Macro character functions
SAS is not portable ...
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?
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??