Tutorial 6 - Fundamental of C Programming

Tutorial 6 - Fundamental of C Programming

9th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

Computer programming for 2nd chap.

Computer programming for 2nd chap.

10th Grade - Professional Development

12 Qs

operators(part-2_26/07)

operators(part-2_26/07)

9th Grade

10 Qs

PC1.8 Evaluate computer program

PC1.8 Evaluate computer program

9th Grade

10 Qs

T_4.2 Identifier, Data Types, Operators & Expressions

T_4.2 Identifier, Data Types, Operators & Expressions

12th Grade - University

10 Qs

Databases

Databases

3rd - 10th Grade

10 Qs

Python

Python

11th - 12th Grade

12 Qs

Python Variables

Python Variables

9th Grade

11 Qs

Quiz - 6 on Relational & Logical Operators

Quiz - 6 on Relational & Logical Operators

12th Grade

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