[20232] CSC126: Quick Exercise 2-2

[20232] CSC126: Quick Exercise 2-2

University

7 Qs

quiz-placeholder

Similar activities

CMP128 Java Ch. 02 Sequence & Fundamentals

CMP128 Java Ch. 02 Sequence & Fundamentals

University

10 Qs

Quiz 2: C++ Basics

Quiz 2: C++ Basics

University

11 Qs

One Dimensional Array

One Dimensional Array

University

10 Qs

P1.3 - Solution planning

P1.3 - Solution planning

10th Grade - University

11 Qs

Python-Expressions#1

Python-Expressions#1

12th Grade - University

10 Qs

Java Basic Day-2

Java Basic Day-2

University

10 Qs

Introduction to Computing

Introduction to Computing

University

10 Qs

MySQL kursori

MySQL kursori

University

7 Qs

[20232] CSC126: Quick Exercise 2-2

[20232] CSC126: Quick Exercise 2-2

Assessment

Quiz

Computers

University

Easy

Created by

ZALIKHA ZULKIFLI

Used 39+ times

FREE Resource

7 questions

Show all answers

1.

OPEN ENDED QUESTION

5 mins • 2 pts

Write a C++ declaration statement for each of the following questions:

Declare three variables as integer. Assign the first variable to 10.

Evaluate responses using AI:

OFF

Answer explanation

int num1 = 10, num2, num3;

OR

int num1 = 10;

int num2;

int num3;

2.

OPEN ENDED QUESTION

5 mins • 1 pt

Write a C++ declaration statement for each of the following questions:

Declare a constant variable named RATE as float and assign it to 0.125.

Evaluate responses using AI:

OFF

Answer explanation

const float RATE = 0.125;

3.

OPEN ENDED QUESTION

5 mins • 1 pt

Write a C++ declaration statement for each of the following questions:

Declare a floating-point variable named initial with value 100.

Evaluate responses using AI:

OFF

Answer explanation

float initial = 100;

4.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Given the following declaration:

int w = 5, x = 7, y = 3, z = 12;

What is the result of the following expression?

w * x % y + z

14

17

21

22

5.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

What is the result of the following expression if data type of y is int?

y = 4 + (3 * (8 + 6) – 3) / 2

17.5

23.5

23

29

6.

OPEN ENDED QUESTION

5 mins • 1 pt

Evaluate the following expression:

x = 42 % 5 + 7 – (2 + 8) / 3;

Evaluate responses using AI:

OFF

Answer explanation

6

7.

OPEN ENDED QUESTION

5 mins • 1 pt

Evaluate the following expression:

y = 13.0 + 9 / 2.0

Evaluate responses using AI:

OFF

Answer explanation

17.5