0

programming languages Online Quiz - 227

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

$LEN(RICHARD SMITH) equals

  1. 13

  2. 12

  3. 11

  4. 14


Correct Option: A

$MOD(5,3) equals

  1. 3

  2. 2

  3. 1

  4. 4


Correct Option: B

$PAD('54345','0','6) equals

  1. '054345''

  2. '0054345''

  3. 54345'0'

  4. d'54345'00'


Correct Option: A

Which are valid user language working Areas:

  1. FSCB

  2. TTBL

  3. GTBL

  4. All the Above


Correct Option: D

The Maximum number of screens and menus combined per request is :

  1. 234

  2. 256

  3. 264

  4. 512


Correct Option: B

What is file group ?

  1. A file group is a collection of physically distinct files that appear to the end user as multiple logical entity.

  2. A file group is a collection of logically distinct files that appear to the end user as single logical entity.

  3. A file group is a collection of physically distinct files that appear to the end user as single logical entity.

  4. A file group is a collection of logically distinct files that appear to the end user as multiple logical entity.


Correct Option: C

AI Explanation

To answer this question, let's go through each option to understand why it is correct or incorrect:

Option A) A file group is a collection of physically distinct files that appear to the end user as multiple logical entities. This option is incorrect because file groups are meant to appear as a single logical entity to the end user, not multiple logical entities.

Option B) A file group is a collection of logically distinct files that appear to the end user as a single logical entity. This option is incorrect because file groups are not based on logical distinctions of files. They are based on physical distinctions.

Option C) A file group is a collection of physically distinct files that appear to the end user as a single logical entity. This option is correct because file groups are indeed collections of physically distinct files that are presented to the end user as a single logical entity. This allows the user to interact with the file group as if it were a single file.

Option D) A file group is a collection of logically distinct files that appear to the end user as multiple logical entities. This option is incorrect because file groups are not meant to appear as multiple logical entities. They are meant to appear as a single logical entity.

Therefore, the correct answer is C. A file group is a collection of physically distinct files that appear to the end user as a single logical entity.

What is APSP ?

  1. APSP is a subsystem that gives the management details of any other subsystem in Model 204 environment.

  2. APSP is a subsystem that gives the configuration details of any other subsystem in Model 204 environment.

  3. APSP is a system that gives the configuration details of any other subsystem in Model 204 environment.

  4. APSP is a system that gives the management details of any other subsystem in Model 204 environment.


Correct Option: B

What happens if a series of UPDATE statements are issued?

  1. Each one requires a separate network call.

  2. Each one is executed in the order in which they are mentioned in the code.

  3. All the update statements together require a separate network call

  4. None of the above.


Correct Option: A

Which statement is used to remove the found set of records from a list?

  1. REMOVE RECORDS IN label FROM [LIST] listname

  2. REMOVE RECORDS FROM [LIST] listname

  3. DELETE RECORDS IN label FROM [LIST] listname

  4. DELETE RECORDS FROM [LIST] listname


Correct Option: A

For the FLOAT %variables, the assigned value is rounded to how many digits ?

  1. 10

  2. 18

  3. 15

  4. 20


Correct Option: C

Which condition is used to restrict the results of a group context FIND statement to a particular node or nodes?

  1. Order by

  2. In clause

  3. Location

  4. pai into


Correct Option: C

Which function is used to display the name of the day in a week

  1. $DAY()

  2. $DAYNM()

  3. $DAYS()

  4. $DAYNAME()


Correct Option: A

What is APSI ?

  1. APSI is a subsystem that can be used to check the previous state of any other subsystem in Model 204 environment.

  2. APSI is a subsystem that can be used to check the next state of any other subsystem in Model 204 environment.

  3. APSI is a subsystem that can be used to check the current state of any other subsystem in Model 204 environment.

  4. APSI is a system that can be used to check the current state of any other subsystem in Model 204 environment.


Correct Option: C

Which operator can be used to access the first item in an array?

  1. shift

  2. start

  3. right$

  4. left$


Correct Option: A

Assume that $var has the value hello . What is the value of the following sting?qq(It’s time to say $var);

  1. It’s time to say $var

  2. It’s time to say hello

  3. None

  4. Both


Correct Option: B

Which modifier can be used when matching in Perl to match any character?

  1. S

  2. V

  3. I

  4. C


Correct Option: A

Which of the following operators work most like substitution?

  1. /f

  2. /g

  3. s///

  4. m//


Correct Option: C
- Hide questions