Assignment No. 12 - Array and Function in C

Assignment No. 12 - Array and Function in C

10th Grade

41 Qs

quiz-placeholder

Similar activities

ICT

ICT

10th Grade

42 Qs

Java Basics Self-Check

Java Basics Self-Check

9th - 12th Grade

46 Qs

Python.Comp Quiz (Python Coding)

Python.Comp Quiz (Python Coding)

9th Grade - University

40 Qs

Beginner Course 1 Final Quiz

Beginner Course 1 Final Quiz

6th - 12th Grade

38 Qs

arrays loops functions temp

arrays loops functions temp

9th - 12th Grade

43 Qs

PYTHON Quiz 2 LPU SUMMER SCHOOL

PYTHON Quiz 2 LPU SUMMER SCHOOL

9th - 12th Grade

41 Qs

Ujian Tengah Semester Informatika

Ujian Tengah Semester Informatika

10th Grade - University

40 Qs

PENILAIAN SUMATIF AKHIR SEMESTER  MAPEL PROGDAS TAHUN  2022/2023

PENILAIAN SUMATIF AKHIR SEMESTER MAPEL PROGDAS TAHUN 2022/2023

10th Grade

40 Qs

Assignment No. 12 - Array and Function in C

Assignment No. 12 - Array and Function in C

Assessment

Quiz

Computers

10th Grade

Hard

Created by

Nina Perena

Used 4+ times

FREE Resource

41 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

■An array is a group of memory locations that have ______________________________.

the same name and different type

the same name

the same name and the same type.

the different name and type

2.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Two types of Array are:

1 Dimensional Array and 2 Dimensional Array

2 Dimensional Array and 3 Dimensional Array

Linear Array and Dynamic Array

Sequence Array and Non-Sequence Array

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Declaration statement for an array named arr with size 4 is

int arr[0];

int arr[5];

int arr(4);

int arr[4];

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Declaration and initialize statement for an array named number with 1.1, 2.2 and 3.3 is written as

float number[2] = {1.1, 2.2, 3.3};

int number[3] = {1.1, 2.2, 3.3};

float number[3] = {1.1, 2.2, 3.3};

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the output of C Program.?

int main()

{

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

int b[4] = {5,6,7,8};

printf("%d,%d", a[0], b[0]);

}

1

2

4

Error

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the output of C Program.?

int main() {

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

int b[4] = {5,6,7,8};

printf("%d,%d", a[0], b[0]);

}

1,5

2,6

0,0

Error

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the output of C program.?

int main()

{

float marks[3] = {90.5, 92.5, 96.5};

int a=0;

while(a<3)

{

printf("%.2f,", marks[a]); a++;

}

}

90.5 92.5 96.5

90.50 92.50 96.50

0.00 0.00 0.00

Compiler error

Create a free account and access millions of resources

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?