Tutorial 6 - Fundamental of C Programming

Tutorial 6 - Fundamental of C Programming

9th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

BASIC OF C

BASIC OF C

12th Grade

10 Qs

Java- Session: 5-10

Java- Session: 5-10

8th - 10th Grade

10 Qs

Computer Quiz(Java)(16-10-2020)

Computer Quiz(Java)(16-10-2020)

9th Grade

10 Qs

Relational Database Quiz (XII)

Relational Database Quiz (XII)

12th Grade

10 Qs

Q3 G9 St Garnet Pre-Assessment

Q3 G9 St Garnet Pre-Assessment

9th Grade

10 Qs

Loops

Loops

9th - 12th Grade

10 Qs

Python- Operators

Python- Operators

12th Grade

10 Qs

C Language Basic Quiz

C Language Basic Quiz

7th Grade - Professional Development

10 Qs

Tutorial 6 - Fundamental of C Programming

Tutorial 6 - Fundamental of C Programming

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

WAN (POLIKU)

Used 5+ times

FREE Resource

7 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

Write the correct escape sequence for the function stated below:

Position the cursor at the beginning of a new line

2.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

Write the correct escape sequence for the function stated below:

Move the cursor to the next tab

3.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

Write the correct escape sequence for the function stated below:

Produce a beep sound or visible alert

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Given the following values,

int a = 2;

int b = 4;

int c = 6;

Evaluate (a + b) / c

1

2

3

4

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Given the following values,

int a = 2;

int b = 4;

int c = 6;

Evaluate (a<=b) 

0 (false)

1 (true)

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Given the following values,

int a = 2;

int b = 4;

int c = 6;

Evaluate (b == c) || (a <= b)

0 (false)

1 (true)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Types of operators in C:

Mathematical, Relational and Logical only

Mathematical and Relational only

Mathematical, Relational, Logical. Assignment and Unary

Mathematical, Relational, Logical and Unary