0

programming languages Online Quiz - 232

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

Which of the option is correct regarding two statements mentioned below :(a) ARITH(EXTEND) is slower than ARITH(COMPAT)(b) AWO is slower than NOAWO

  1. (1) only a is correct

  2. (2) only b is correct

  3. (3) Both a and b are correct

  4. (4) None of them are correct


Correct Option: A
Explanation:

To understand the given question, the user needs to know the meaning of ARITH(EXTEND), ARITH(COMPAT), AWO, and NOAWO.

ARITH(EXTEND) and ARITH(COMPAT) are compiler options that control the generation of instructions for arithmetic operations. ARITH(EXTEND) generates extended-precision arithmetic instructions, whereas ARITH(COMPAT) generates instructions for compatibility with earlier IBM processors.

AWO and NOAWO are compiler options that control the use of automatic binary optimization. AWO enables automatic optimization, whereas NOAWO disables it.

Now let's evaluate each statement:

(a) ARITH(EXTEND) is slower than ARITH(COMPAT) This statement is generally true. ARITH(EXTEND) generates extended-precision arithmetic instructions, which are more complex and require more processing time than ARITH(COMPAT) instructions. Therefore, the statement is correct.

(b) AWO is slower than NOAWO This statement is generally false. AWO enables automatic optimization, which can improve program performance. NOAWO disables optimization, which can result in slower program execution. Therefore, the statement is incorrect.

Therefore, the correct answer is:

The Answer is: A. (1) only a is correct

What does ELPA stands for

  1. (1) Extensive Line Processing Area

  2. (2) Extensive Link Pack Area

  3. (3) Extended Link Pack Area

  4. (4) Elusive Line Processing Area


Correct Option: C
Explanation:

To answer this question, the user needs to be familiar with computer programming terminology, specifically related to mainframe computing.

ELPA stands for "Extended Link Pack Area".

A) Extensive Line Processing Area is incorrect because it is not a commonly used term in computer programming and does not relate to the concept of ELPA.

B) Extensive Link Pack Area is incorrect because it is very similar to the correct answer, but is missing the "Extended" modifier.

C) Extended Link Pack Area is the correct answer because it accurately describes the purpose and function of ELPA.

D) Elusive Line Processing Area is incorrect because it does not accurately describe the purpose or function of ELPA and is not a commonly used term in computer programming.

The answer is: C) Extended Link Pack Area.

  1. (1) Smaller CISZ results in faster retrieval for random processing

  2. (2) Larger CISZ results in faster retrieval for sequential processing

  3. (3) CISZ stands for Control interval size

  4. (4) CISZ should be constant for sequential files


Correct Option: D
  1. (1) Sequential Access

  2. (2) Random Access

  3. (3) Dynamic Access

  4. (4) Depends on the datat in the file


Correct Option: B
  1. (1) The binary data items will be properly aligned only on halfword boundaries.

  2. (2) The binary data items will be properly aligned only on fullword boundaries.

  3. (3) The binary data items will be properly aligned only on doubleword boundaries.

  4. (4) The binary data items will be properly aligned on halfword, fullword, or doubleword boundaries.


Correct Option: D
Explanation:

To solve this question, the user needs to know about the SYNCHRONIZED clause in COBOL and how it affects binary data items.

The SYNCHRONIZED clause in COBOL is used to specify the alignment of data items in memory. When used with binary data items, it ensures that the data is stored in a way that is compatible with the hardware on which the program is running.

Now, let's go through each option and explain why it is right or wrong:

A. (1) The binary data items will be properly aligned only on halfword boundaries. This option is incorrect because the SYNCHRONIZED clause does not restrict the alignment to halfword boundaries only.

B. (2) The binary data items will be properly aligned only on fullword boundaries. This option is incorrect because the SYNCHRONIZED clause does not restrict the alignment to fullword boundaries only.

C. (3) The binary data items will be properly aligned only on doubleword boundaries. This option is incorrect because the SYNCHRONIZED clause does not restrict the alignment to doubleword boundaries only.

D. (4) The binary data items will be properly aligned on halfword, fullword, or doubleword boundaries. This option is correct. When the SYNCHRONIZED clause is used with binary data items, it can specify that the data should be aligned on halfword, fullword, or doubleword boundaries, depending on the value specified.

Therefore, the answer is: D.

On the average, ARITH(EXTEND) was ---------ARITH(COMPAT), with a range of equivalent to ------.

  1. (1) 1% slower than,38% slower

  2. (2) 10% slower than,4% slower

  3. (3) 1% faster than,38% faster

  4. (4) 10% faster than,4% faster


Correct Option: A
  1. (1) Using an odd number of digits is 10% to 30% slower than using an even number of digits

  2. (2) Using an even number of digits is 10% to 30% faster than using an odd number of digits

  3. (3) Using an odd number of digits is 5% to 20% slower than using an even number of digits

  4. (4) Using an odd number of digits is 5% to 20% faster than using an even number of digits


Correct Option: D
Explanation:

To answer this question, the user needs to have some basic understanding of Packed-Decimal and its performance considerations.

Packed-Decimal is a data format used in computer systems to store decimal numbers efficiently. It stores two digits in a single byte, allowing for more efficient storage of decimal values. In terms of performance, the number of digits used in Packed-Decimal can affect the speed of operations involving these values.

Now, let's go through each option and determine which statement is true:

A. (1) Using an odd number of digits is 10% to 30% slower than using an even number of digits - This statement is false. According to performance benchmarks, using an odd number of digits in Packed-Decimal is actually faster than using an even number of digits.

B. (2) Using an even number of digits is 10% to 30% faster than using an odd number of digits - This statement is false. As mentioned, using an odd number of digits is actually faster than using an even number of digits.

C. (3) Using an odd number of digits is 5% to 20% slower than using an even number of digits - This statement is also false. Using an odd number of digits is faster, not slower, than using an even number of digits.

D. (4) Using an odd number of digits is 5% to 20% faster than using an even number of digits - This statement is true. According to performance benchmarks, using an odd number of digits in Packed-Decimal is 5% to 20% faster than using an even number of digits.

Therefore, the correct answer to this question is:

The Answer is: D. (4) Using an odd number of digits is 5% to 20% faster than using an even number of digits.

The ARITH(EXTEND) compiler option allows you to control the maximum number of digits is ----?

  1. (1) 40

  2. (2) 45

  3. (3) 31

  4. (4) 18


Correct Option: C

AI Explanation

To answer this question, we need to understand the purpose of the ARITH(EXTEND) compiler option and how it affects the maximum number of digits.

The ARITH(EXTEND) compiler option is used to enable extended arithmetic in programs. When this option is specified, the compiler allows calculations with larger numbers and a greater number of digits.

Now, let's go through each option to understand which one is correct:

Option A) (1) 40 - This option is incorrect because it specifies that the maximum number of digits is 40, which is not correct according to the given information.

Option B) (2) 45 - This option is incorrect because it specifies that the maximum number of digits is 45, which is not correct according to the given information.

Option C) (3) 31 - This option is correct because it specifies that the maximum number of digits is 31, which aligns with the given correct answer.

Option D) (4) 18 - This option is incorrect because it specifies that the maximum number of digits is 18, which is not correct according to the given information.

Therefore, the correct answer is Option C) (3) 31. This option is correct because it correctly specifies the maximum number of digits allowed when the ARITH(EXTEND) compiler option is used.

An exception can be caught by a catch block with an argument type that is a superclass of the thrown exception.

  1. True

  2. False


Correct Option: A

a method cannot be declared as throwing more than one exception.

  1. True

  2. False


Correct Option: B

can you have a final abstract class?

  1. True

  2. False


Correct Option: B

EJB stands for ....

  1. Enterprise Java Bean

  2. Enter Java Bean

  3. Exceptional Java Bean

  4. Event Java Bean


Correct Option: A

It is not possible to have an instance of a non-static inner class before any instances of the outer class have been created.

  1. True

  2. False


Correct Option: A

If method A declares that it throws an exception and method B calls method A,then method B must ALWAYS declare the same exception.

  1. True

  2. False


Correct Option: B

This is legal. float f = 2;

  1. Yes

  2. No

  3. Compile error

  4. Don't know


Correct Option: A

Static variables are implicitly final.

  1. True

  2. False


Correct Option: B
- Hide questions