Search Header Logo

1D Array

Authored by Abhishek Pandey

Computers

University

Used 23+ times

1D Array
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is Array?

A. Collection of different type of elements

B. Collectionof similar type of elements

C. None of the above

D. Both A and C

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is right way to Initialize array?

A. int num[6] = { 2, 4, 12, 5, 45, 5 };

B. int n{} = { 2, 4, 12, 5, 45, 5 };

C. int n{6} = { 2, 4, 12 };

D. int n(6) = { 2, 4, 12, 5, 45, 5 };

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

 What is the maximum number of dimensions an array in C may have?

A. Two

B. eight

C. sixteen

D. Theoratically no limit. The only practical limits are memory size and compilers

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the starting index of an array in C?

0

1

5

4

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare an array named "scores" that can store 5 integers in C

array scores = 5;

int scores[5];

scores = int[5];

int[] scores ;

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In C, what function is used to input values into an array from the user

scan()

input()

scanf()

read()

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

in array int a[5]; what will be index of last element

4

5

8

2

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?

Discover more resources for Computers