0

programming languages Online Quiz - 57

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

Which is not a collection type in VB.Net

  1. Hashtable

  2. ArrayList

  3. Heap

  4. Stack


Correct Option: C

AI Explanation

To answer this question, you need to understand the collection types in VB.Net.

Option A) Hashtable - This option is a collection type in VB.Net. A Hashtable is a collection of key-value pairs.

Option B) ArrayList - This option is a collection type in VB.Net. An ArrayList is a dynamic array that can store any type of data.

Option C) Heap - This option is not a collection type in VB.Net. The heap is a memory structure used for dynamic memory allocation, but it is not a built-in collection type.

Option D) Stack - This option is a collection type in VB.Net. A Stack is a data structure that follows the Last-In-First-Out (LIFO) principle.

The correct answer is C) Heap. This option is not a collection type in VB.Net.

Which of the following are the valid method of command object

  1. ExecuteNonQuery & ExecuteScalar

  2. ExecuteQuery & ExecuteScalar

  3. ExecuteParameter

  4. None of the above


Correct Option: A

How do you achieve interface implementation in VB.NET?

  1. Implements

  2. Uses

  3. Imports

  4. Overrides


Correct Option: A

Spring does not support which of the ORM framework?

  1. True

  2. False


Correct Option: A

Which of the following is the commonly used command for debugging?

  1. ENDDBG

  2. STRDBG

  3. WRKMBRPDM

  4. WRKSPLF


Correct Option: B

How do you set the keywords SFLSIZ and SFLPAG if you want the subfile to dynamically expand?

  1. SFLSIZ > SFLPAG.

  2. SFLSIZ < SFLPAG.

  3. SFLSIZ = SFLPAG.

  4. SFLSIZ <> SFLPAG.


Correct Option: A

What is the CLP command to access a Query/400?

  1. WRKOUTQ

  2. WRKSPLF

  3. WRKQRY

  4. WRKMBRPDM


Correct Option: C
  1. ENDPGM

  2. STRPGM

  3. With the help of MONMSG MSGID(CPF0864) we can identify end of file in clp program.

  4. STRDBG


Correct Option: C
  1. It will select only the field on which the keyword is specified.

  2. It will select only one record.

  3. It will avoid to enter duplicate key values.

  4. None of the above.


Correct Option: C

UDATE supports two-digit year i.e in the form MMDDYYYY and system date supports four digit year i.e in the form MMDDYY.

  1. True

  2. False


Correct Option: B

To extract the information from the specified string the command used is %SST.

  1. True

  2. False


Correct Option: A

JVM is vendor dependent

  1. Not vendor dependent

  2. Completely vendor dependent

  3. Partial vendor dependent

  4. None of these


Correct Option: B

Variables declared inside interface can be..?

  1. public

  2. default

  3. static

  4. final


Correct Option: A,C,D
  1. enum A{A} 2. class E2{ 3. enum B{B} 4. void C(){ 5. enum D{D} 6. } 7. } which statements are true?(Choose all that apply.)
  1. Code compiles

  2. If line 1 is removed the code compiles

  3. If line 3 is removed the code compiles

  4. If line 5 is removed the code compiles

  5. If line 1,3 are removed the code compiles

  6. If line 1,3,5 are removed the code compiles


Correct Option: D,F
- Hide questions