quiz1

quiz1

University

5 Qs

quiz-placeholder

Similar activities

ESS553 Midterm Review

ESS553 Midterm Review

University - Professional Development

10 Qs

Binary and Linear Searching Algorithms

Binary and Linear Searching Algorithms

KG - Professional Development

8 Qs

Robot Design Test

Robot Design Test

KG - Professional Development

10 Qs

Bertelsmann AI Track Quiz Initiative #2

Bertelsmann AI Track Quiz Initiative #2

University - Professional Development

10 Qs

Logika dan Algoritma P1

Logika dan Algoritma P1

University

10 Qs

Quizz_Python_Basic_If_Elif_Else

Quizz_Python_Basic_If_Elif_Else

9th Grade - University

10 Qs

Wireless Lecture 7

Wireless Lecture 7

University

10 Qs

Weather & Climate

Weather & Climate

6th Grade - University

10 Qs

quiz1

quiz1

Assessment

Quiz

Science

University

Hard

Created by

Soha Bahanshal

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

1) Which of the following statements is false?

a) Pseudocode is useful for developing algorithms that will be converted to C programs.

b) Pseudocode is an actual computer programming language.

c) Pseudocode is an artificial and informal language that helps you develop algorithms.

d) Pseudocode describes the actions and decisions.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

2)  A........ error is an error that is detected by the compiler.

a) Syntax

b) Logic

c) Runtime

d) None of the above to active

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

 3) The........ selection statements perform an action if a condition is true and perform a different action if the condition is false.

a. if

b. switch

c. if... else

d. when

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

4)  True or false

C has only seven control statements: sequence, three types of selection, and three types of iteration.

a. True

b False

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

5) Identify and correct the errors in each of the following:

 if (age >= 65);

{

    puts("Age is greater than or equal to 65");

}

else

{

   puts("Age is less than 65");

}

a. semicolon after the condition

b. It is correct

c. If should be captalize

d. there is missing bracket