0

programming languages Online Quiz - 77

Description: programming languages Online Quiz - 77
Number of Questions: 20
Created by:
Tags: programming languages
Attempted 0/20 Correct 0 Score 0

Who is the loose character in java??

  1. class

  2. interface

  3. package

  4. data type


Correct Option: B

JAVA 1.4 introduced the concept of Generics?

  1. True

  2. False


Correct Option: B

PHP is a client- side scripting language?

  1. True

  2. False


Correct Option: B

PHP stands for?

  1. Pre Hypertext Processor

  2. Preprocessor Hypertext

  3. Hypertext Preprocessor

  4. Processor Hypertext Pre


Correct Option: C

PHP is a loosely typed language?

  1. True

  2. False


Correct Option: A

Which are two statements for outputing the text in PHP?

  1. print and display

  2. display and echo

  3. println and display

  4. echo and print


Correct Option: D

Following code will result in: int a = 3.5;

  1. Compilation error

  2. Runtime error

  3. a being 3.5

  4. a being 3


Correct Option: A
  1. Compilation error

  2. Runtime error

  3. Runtime exception

  4. No error


Correct Option: D
  1. Compilation error: Divisions must be in a try block.

  2. Compilation error: DivideByZeroException

  3. Runtime Exception - correct answer

  4. No Error: a is NaN


Correct Option: C

Following code will result in: float a = 9/0;

  1. Compilation error: Divisions must be in a try block

  2. Compilation error: DivideByZeroException

  3. Runtime Exception

  4. No Error: a is NaN


Correct Option: D
  1. Yes, always it should implement

  2. No, Never

  3. No, Not when A is abstract

  4. None of the above


Correct Option: C

The methods wait(), notify() and notifyAll() in Object need to be called from synchronized pieces of code.

  1. true

  2. false

  3. Depends on situation

  4. none of the above


Correct Option: B

A class cannot be declared

  1. volatile

  2. private

  3. default

  4. static


Correct Option: B
  1. Infinite loop

  2. Until Stack Underflow

  3. Until Machine Hangs

  4. Stack Overflow


Correct Option: D
  1. O(n2)

  2. O(log n)

  3. O(nlogn)

  4. O(n2 logn)


Correct Option: C
  1. O(n)

  2. O(log n)

  3. O(n^2)

  4. O(n log n)


Correct Option: C
  1. double is primitive datatypes. Double is a class

  2. Both are primitive dataType

  3. Both are class type

  4. double is class and Double is primitive Type


Correct Option: A
- Hide questions