0

programming languages Online Quiz - 311

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

STEP1 EXEC PGM=P1 STEP2 EXEC PGM=P2,COND=EVEN STEP3 EXEC PGM=P3,COND=((8,LE,STEP1),ONLY) If the condition code of the step1 is 4 and the step2 was abended then which statement is correct.

  1. step1, step2 and step3 will execute

  2. only step1 and step3 will execute

  3. only step1 and step2 will execute

  4. only step1 will execute


Correct Option: A
  1. DISP=NEW,CATLG,CATLG

  2. DISP=OLD,DELETE,CATLG

  3. DISP=NEW,CATLG,DELETE

  4. DISP=OLD,CATLG,CATLG


Correct Option: A
  1. public

  2. private

  3. friendly

  4. transient


Correct Option: A,B,D
  1. to get to access hardware that Java does not know about

  2. to define a new data type such as an unsigned integer

  3. to write optimised code for performance in a language such as C/C++

  4. to overcome the limitation of the private scope of the method


Correct Option: A,C

Which option most fully describes will happen when you attempt to compile and run the following code public class MyAr{ public static void main(String argv[]) { MyAr m = new MyAr(); m.amethod(); } public void amethod(){ static int i; System.out.println(i); } }

  1. Compilation and output of the value 0

  2. Compile time error because i has not been initialized

  3. Compilation and output of null

  4. Compile time error


Correct Option: D
  1. short myshort = 99S;

  2. String name = 'Excellent tutorial Mr Green';

  3. char c = 17c;

  4. int z = 015;


Correct Option: D
  1. System.free()

  2. System.setGarbageCollection()

  3. System.setGarbageCollector()

  4. System.gc()


Correct Option: D

How many fields are maintained by the runtime by each instance of a reference type?

  1. One Field

  2. Two Fields

  3. Three Fields

  4. Four fields


Correct Option: B

The concept in VB.NET by which one can provide a new implementation for the base class member without overriding the member is called as

  1. Shadowing

  2. Late Binding

  3. .NET Reflection

  4. All of the above


Correct Option: A

Which of the following namespace provides classes that can be used to create and manipulate custom performance counters?

  1. System.NET.DNS

  2. System.Data.Common

  3. System.Diagnostics namespace

  4. none of the above


Correct Option: C

Which of the following happens when the FormBorderStyle property is set to None in VB.NET?

  1. borderless form is made

  2. The form cannot be moved

  3. Both A and B

  4. None of the Above


Correct Option: C

What is the significance of the option explicit statement when it is set to ON

  1. Specifies that any variable name is declared (with type) before use

  2. Specifies whether String should be compared as binary

  3. Specifies that variables should be intialized before use

  4. All of the above


Correct Option: A
  1. If My.Computer.Keyboard.CapsLock = True Then

  2. If System.Computer.Keyboard.CapsLock = True Then

  3. Both A and B

  4. None of the Above


Correct Option: A
- Hide questions