Reharshal For Coding

Reharshal For Coding

University

5 Qs

quiz-placeholder

Similar activities

Rapid Round 1

Rapid Round 1

University

10 Qs

C++ Quiz

C++ Quiz

University

10 Qs

C++ Puntatori

C++ Puntatori

University

9 Qs

Topic 7-2: 2D Array

Topic 7-2: 2D Array

University

6 Qs

Introduction to Arrays

Introduction to Arrays

KG - University

10 Qs

BCSC0006 - Quiz 1 - Arrays

BCSC0006 - Quiz 1 - Arrays

University

10 Qs

FGCT4023 Topic 4 - Array

FGCT4023 Topic 4 - Array

University

10 Qs

Kuis Struktur Data

Kuis Struktur Data

University

10 Qs

Reharshal For Coding

Reharshal For Coding

Assessment

Quiz

Computers

University

Hard

Created by

BENDI MANIDEEP

Used 1+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

1) What is the range of values that can be stored by int datatype in C?

-(2^31) to (2^31) - 1

-256 to 255

-(2^63) to (2^63)-1

O to (2^31) - 1

2.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

2) How is an array initialized in C language?

int a[3] = {1, 2, 3};

int a = {1, 2, 3};

int a[] = new int[3]

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

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

3) What is the output of the following code snippet?

#include <stdio.h>

int main()

{ int a[] = {1, 2, 3, 4};

int sum = 0;

for(int i = 0; i < 4; i++)

{

sum += a[i];

}

printf("%d", sum);

return 0;

}

1

4

20

10

4.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

4) How are String represented in memory in C?

An array of characters.

The object of some class.

Same as other primitive data types.

LinkedList of characters.

5.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

5) How is the 3rd element in an array accessed based on pointer notation?

*a +3

*(a + 3)

**(a + 3)

&(a + 3)