ARRAY C++

ARRAY C++

University

10 Qs

quiz-placeholder

Similar activities

exception

exception

University

10 Qs

Array in C

Array in C

University

10 Qs

Arrays

Arrays

11th Grade - University

10 Qs

Array

Array

11th Grade - University

10 Qs

JAVA QUIZ-1

JAVA QUIZ-1

University

10 Qs

Arrays

Arrays

KG - University

10 Qs

EC8393_FDS_MODEL EXAM_3_PART B

EC8393_FDS_MODEL EXAM_3_PART B

University

15 Qs

Algoritmo y estructura de datos S3

Algoritmo y estructura de datos S3

University

10 Qs

ARRAY C++

ARRAY C++

Assessment

Quiz

Computers

University

Medium

Created by

MUSHAHADAH (PTSS)

Used 8+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Identify what do arrays do.

hold addresses

hold values under a single name

hold one value

hold values under a multiple name

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Select the valid indexes for the array shown below.

int myArray[25];

0-25

1-25

0-24

1-24

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Identify the correct way declaring an array "Arr" which is an integer array having 20 element.

Array [] =Arr[20];

int Arr[20];

int[20] Arr;

int Arr= new [20];

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify the statement that declare an array ABC of 5 elements of type int and initialize all elements to 100.

int ABC[5]= {100,100,100,100,100};

int ABC[ ]= {5,100};

int ABC[5]= {5,100};

int[5] ABC= {100,100,100,100,100};

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify statements correctly to declare an array Arr that have 5 elements and initialize it to 0 using for loop.

int Arr[20]; for(i=0; i<20 ; ++i) { myArr[i]=0; }

int Arr[5]; for(i=0, i<5, ++i) { myArr[i]=0; }

int Arr[5]; for(i=0; i<5 ; ++i) { myArr[i]=0; }

int Arr[5]; for(i=0; i<20 ; ++i) { myArr[i]=0; }

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

An entire array be printed out at once.

True

False

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Indicate the problem with the following code fragment.

Array indexes start at 1 not 0

Arrays must be integers

Should be cin >> scores[0];

Array indexes must be less than the size of the array

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?