programming languages Online Quiz - 77
Description: programming languages Online Quiz - 77 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Who is the loose character in java??
JAVA 1.4 introduced the concept of Generics?
PHP is a client- side scripting language?
PHP stands for?
PHP is a loosely typed language?
Which are two statements for outputing the text in PHP?
Following code will result in: int a = 3.5;
Following code will result in: int a1 = 5; double a2 = (float)a1;
Following code will result in: int a = 9/0;
Following code will result in: float a = 9/0;
Following code will result in: class A { int b = 1; public static void main(String [] args) { System.out.println("b is " + b); }}
Following code will result in: class A { public static void main(String [] args) {B b = new A(); }} class B extends A {}
Following code will result in: class A { public static void main(String [] args) {A a = new B(); }} class B extends A {}
If class A implements an interface does it need to implement all methods of that interface?
The methods wait(), notify() and notifyAll() in Object need to be called from synchronized pieces of code.
A class cannot be declared
mainn() { main(); } This loop runs upto???
Complexity of Quick Sort????(avg)
Complexity Of Bubble Sort..???
What is the difference between the types double and Double?