programming languages Online Quiz - 206
Description: programming languages Online Quiz - 206 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Given: class Feline { public static void main(String[] args) { Long x = 42L; Long y = 44L; System.out.print(" " + 7 + 2 + " "); System.out.print(foo() + x + 5 + " "); System.out.println(x + y + foo()); } static String foo() { return "foo"; } } What is the result?
STRIP(string) returns the same result as :
What will the following PROC CATALOG step do? proc catalog cat=mylib.sasmacr; contents; quit;
The SYMPUT routine cannot
According to the global symbol table shown here, what value will a reference to &&teach&crs resolve to? TEACH1 Hallis, Dr. George TEACH2 Wickam,Dr. Alice TEACH3 Forest,Mr. Peter CRS 3
What should be the order of the @param tag when there are multiple parameters in the declaration ?
Which of the following tag is mandatory while using the Javadoc tool ?
What is the output of the following,
...
StringBuffer sb1 = new StringBuffer("Debopam");
StringBuffer sb2= new StringBuffer("Debopam ");
String ss1 = " Debopam ";
System.out.println(sb1==sb2);
System.out.println(sb1.equals(sb2));
System.out.println(sb1.equals(ss1));
System.out.println("Poddar".substring(3));
...
What is main objective of Component Based Development (CBD) approach?