Search Header Logo

Basic C Knowledge Exercise

Authored by Akym Morgen

Computers

University

Used 2+ times

Basic C Knowledge Exercise
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

10 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 2 pts

Insert the missing parts of the code:

int ??? ( ) {
??? ("Hello World");
return 0;
}

PS. Put commas if answers are two or more (e.g. alpha, beta)

(a)  

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Insert missing special characters in writing comments in C:

??? This is a single-line comment
??? This is a multi-line comment ???

// Single-line
// Multi-line //

// Single-line
** Multi-line **

// Single-line
/* Multi-line */

/* Single-line
/* Multi-line */

3.

FILL IN THE BLANK QUESTION

1 min • 2 pts

Create a variable named myNum and assign the value 47 to it.

?? ??? = ??;

(a)  

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which is the correct specifier to output the value of myNum?

int myNum = 15; printf("???", myNum);

%c

d%

%ld

%d

5.

FILL IN THE BLANK QUESTION

1 min • 2 pts

Display the sum of 17 + 33, using two variables: a and b.


??? ?? = ???;
int b = 33;
printf("%d", a + b);

(a)  

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which code parts is needed to create three variables of the same type?

??? myNum1 = 10 ? myNum2 = 15 ? myNum3 = 25;
printf("%d", myNum1 + myNum2 + myNum3);

int and comma (,)

int and semi-colon (;)

int and colon (;)

int and ampersand (&)

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Add the correct data type for the following variables:

??? myNum = 6;
??? myFloatNum = 3.1419;
??? myLetter = 'D';

PS. Put commas for multiple answers (e.g. alpha, beta)

(a)  

Access all questions and much more by creating a free account

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

Already have an account?