Which operation is faster?
Array
Vector
List
Pointers
GC is a high priority thread.
True
False
Which one is faster in java ? a. for(int i = 100000; i > 0; i--) {} b. for(int i = 1; i < 100001; i++) {}
a
b
same
can't say
Which one is not correct a. Float.isNan(x); b. x == Float.NaN; c. Myobject .equals(float.NaN);
c
Don't know
What will be output from the following statements: System.out.println(1+2+"3"); System.out.println("1"+2+3);
33, 33
123, 33
33, 123
123, 123
Is the following statement correct: char ch = 'd'; if(ch < 32.00){ }
.NET Framework provide platform for running .NET managed code in a virtual machine
Code that targets the CLR is referred to as managed code
CIL is high-level (machine) language, like Assembler, but is Object-oriented
CTS is a set of specifications that all languages and libraries need to follow and will ensure interoperability between languages