c set 3

c set 3

University

10 Qs

quiz-placeholder

Similar activities

Java Variables and Control Structures lec2

Java Variables and Control Structures lec2

University

10 Qs

Day5_Arrays

Day5_Arrays

University - Professional Development

12 Qs

QUIZ 2 - WEB PROGRAMMING CSC443

QUIZ 2 - WEB PROGRAMMING CSC443

University

10 Qs

Tipe Data

Tipe Data

University

10 Qs

CodeQuest Round 2

CodeQuest Round 2

University

15 Qs

Quiz 2025

Quiz 2025

University

10 Qs

Modul 1_Windry Dwi Juliani

Modul 1_Windry Dwi Juliani

University

10 Qs

C Quiz

C Quiz

University

10 Qs

c set 3

c set 3

Assessment

Quiz

Other

University

Hard

Created by

ESPARK 2023

Used 6+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the correct syntax for initializing a string in C?

char str[10] = {'H', 'e', 'l', 'l', 'o', '\0'};

char str[10] = "Hello";

char str[] = {'H', 'e', 'l', 'l', 'o', '\0'};

char str[] = "Hello";

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Comment on the following pointer declaration?

int *p, x;

p is a pointer to integer, x is not

p and x, both are pointers to integer

p is pointer to integer, x may or may not be

p and x both are not pointers to integer

3.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Which function is used to compare two strings in C?

strcmp()

strcmpi()

compare()

cmpi()

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

If we pass an array as an argument to a function, what actually gets passed?

Value of elements in array

First element of the array

Base address of the array i.e., the address of the first element

Address of the last element of array

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

what is the output of following?

3, 2, 515

515, 2, 3

3, 2, 5

515, 515, 4

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What will be the output of the following C code?

30

-10

20

100

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

what is the output of the following program?

5

15

20

0

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?