Reharshal For Coding

Reharshal For Coding

University

5 Qs

quiz-placeholder

Similar activities

C++ Array

C++ Array

University

10 Qs

Alpro_Array

Alpro_Array

University

10 Qs

unit3 pointers

unit3 pointers

University

10 Qs

JAVA Array (1)

JAVA Array (1)

University

10 Qs

QUIZ 7 PBO

QUIZ 7 PBO

University

10 Qs

Initiation à la programmation 5 : les tableaux

Initiation à la programmation 5 : les tableaux

University

10 Qs

Alabi, Kolade, CSCI-2380-01P, POST

Alabi, Kolade, CSCI-2380-01P, POST

University

10 Qs

Analysis of Algorithms

Analysis of Algorithms

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)