Basic C Knowledge Exercise

Basic C Knowledge Exercise

University

10 Qs

quiz-placeholder

Similar activities

Basics Of C Programming

Basics Of C Programming

University

10 Qs

Variables and Constants

Variables and Constants

11th Grade - University

10 Qs

Quiz - Control Structure in C programming

Quiz - Control Structure in C programming

University

15 Qs

CIS1101-programming practice2

CIS1101-programming practice2

University

10 Qs

java

java

University - Professional Development

8 Qs

Coding club Summit Online Quiz

Coding club Summit Online Quiz

University

15 Qs

Sintaxis en C

Sintaxis en C

University

15 Qs

C - Pointers

C - Pointers

University

10 Qs

Basic C Knowledge Exercise

Basic C Knowledge Exercise

Assessment

Quiz

Computers

University

Easy

Created by

Akym Morgen

Used 2+ times

FREE Resource

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)

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.

?? ??? = ??;

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);

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)

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?