Array - Recap

Array - Recap

University

10 Qs

quiz-placeholder

Similar activities

TIKKK

TIKKK

11th Grade - University

10 Qs

SWIFT

SWIFT

University

15 Qs

Uji Pemahaman Berpikir Komputasioal

Uji Pemahaman Berpikir Komputasioal

8th Grade - University

10 Qs

Lista de Exercícios – Vetores em Java - Parte I

Lista de Exercícios – Vetores em Java - Parte I

University

15 Qs

Java Array

Java Array

University

10 Qs

Структурированный тип данных массив

Структурированный тип данных массив

10th Grade - University

11 Qs

Data Struct - S1_Array & Pointer

Data Struct - S1_Array & Pointer

University

12 Qs

CHAPTER 7a

CHAPTER 7a

University

10 Qs

Array - Recap

Array - Recap

Assessment

Quiz

Information Technology (IT)

University

Hard

Created by

Divina 2908

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

How do you initialize an array in C?

a) int arr[3] = (1,2,3);

b) int arr(3) = {1,2,3};

c) int arr[3] = {1,2,3};

d) int arr(3) = (1,2,3);

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What are the different ways to initialize an array with all elements as zero?

a) int array[5] = {};

b) int array[5] = {0};

c)int a = 0, b = 0, c = 0;

  int array[5] = {a, b, c};

d) All of the mentioned

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

. What are the elements present in the array of the following C code?

int array[5] = {5};

a)5, 5, 5, 5, 5

b) 5, 0, 0, 0, 0

c) 5, (garbage), (garbage), (garbage), (garbage)

d) (garbage), (garbage), (garbage), (garbage), 5

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following C statements will calculate the correct size of an array of 10 integers?

(Assuming the declaration as int a[10];)

a) sizeof(a[10]);

b) sizeof(*a);

c) sizeof(a);

d) sizeof(&a);

5.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What is the index of the last element in an array of size n in C?

 n

n+1

n-1

0

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

#include <stdio.h>

int main() {

int arr[] = {10, 20, 30, 40, 50};

printf("%d", *(arr + 2));

return 0;

}

10

30

50

20

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not valid for accessing an array element?

arr[i]

*(arr + i)

i[arr]

arr * i

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?