Download as pdf or txt
Download as pdf or txt
You are on page 1of 22

True or False:

Version Control allows users to revert changes and download copies of the changes from
the client.

Select one:
True
False

Question 2
Complete
Mark 1.00 out of 1.00

Flag question

Question text

True or False:
There are three (3) components that build up the phases of looping statements.

Select one:
True
False

Question 3
Complete
Mark 1.00 out of 1.00

Flag question

Question text

The ____________ statement uses defined constants in evaluating conditions.

Select one:
a. if
b. else
c. else if
d. switch
Question 4
Complete
Mark 1.00 out of 1.00

Flag question

Question text

______________ variables are bound to only one type of values.

Select one:
a. Implicit Constant
b. Implicit
c. Reference-Type
d. Explicit

Question 5
Complete
Mark 1.00 out of 1.00

Flag question

Question text

The looping statement in C++ where the condition appears on the last part of the
statement is called ________________ loop.

Select one:
a. for
b. do-until
c. do-while
d. while

Question 6
Complete
Mark 1.00 out of 1.00
Flag question

Question text

The compiler that presents a minimalistic approach for Windows is called _________________.

Select one:
a. VC++
b. MingGW
c. WinC++
d. MinGW

Question 7
Complete
Mark 1.00 out of 1.00

Flag question

Question text

__________________ allows developer to support scenarios in the application.

Select one:
a. Data
b. Conditionals
c. Variables
d. Compilation

Question 8
Complete
Mark 1.00 out of 1.00

Flag question
Question text

__________ statement is used in undefined conditional expressions.

Select one:
a. if
b. else
c. end if
d. else if

Question 9
Complete
Mark 1.00 out of 1.00

Flag question

Question text

The ________ statement mainly uses integers as value to be evaluated.

Select one:
a. if
b. else
c. switch
d. else if

Question 10
Complete
Mark 1.00 out of 1.00

Flag question

Question text

Global variables are variables declared _____________ int main() code block.

Select one:
a. Outside
b. Inside
c. After
d. Before

Question 11
Complete
Mark 1.00 out of 1.00

Flag question

Question text

True or False:
There is only one data type that can handle textual values.

Select one:
True
False

Question 12
Complete
Mark 1.00 out of 1.00

Flag question

Question text

True or False:
Unnamed variables are accessible using the unmarked symbol.
Select one:
True
False

Question 13
Complete
Mark 1.00 out of 1.00
Flag question

Question text

True or False:
A conditional is used to perform specific actions depending on the evaluated expressions.

Select one:
True
False

Question 14
Complete
Mark 1.00 out of 1.00

Flag question

Question text

True or False:
Local variables are accessible throughout the code.

Select one:
True
False

Question 15
Complete
Mark 1.00 out of 1.00

Flag question

Question text

Converting a data type to another data type is called ___________.


Select one:
a. Casting
b. Unboxing
c. Equivalence
d. Translation

Question 16
Complete
Mark 1.00 out of 1.00

Flag question

Question text

__________________ is a looping statement where the body is executed first before the
condition is evaluated.

Select one:
a. do-while
b. do-until
c. while
d. for

Question 17
Complete
Mark 1.00 out of 1.00

Flag question

Question text

True or False:
The free and web-based repository that allows distributed version control is called GitOpen.

Select one:
True
False

Question 18
Complete
Mark 1.00 out of 1.00

Flag question

Question text

True or False:
One cycle of repetition using loops is called an iteration.

Select one:
True
False

Question 19
Complete
Mark 1.00 out of 1.00

Flag question

Question text

The phase in looping that indicates the statements under the loop is called _________.

Select one:
a. Body
b. Increment/Decrement
c. Parameter
d. Code Block

Question 20
Complete
Mark 1.00 out of 1.00
Flag question

Question text

True or False:
Conditions within a while loop are evaluated after the execution.

Select one:
True
False

Question 21
Complete
Mark 1.00 out of 1.00

Flag question

Question text

True or False:
A series of statement repeated when a specific condition is met is called looping.

Select one:
True
False

Question 22
Complete
Mark 1.00 out of 1.00

Flag question

Question text
True or False:
A way to organize configurations is called Repository.

Select one:
True
False

Question 23
Complete
Mark 1.00 out of 1.00

Flag question

Question text

The ________ rights allow users to escalate the permission granted.

Select one:
a. Default User
b. Administrator
c. Desktop User
d. Power User

Question 24
Complete
Mark 1.00 out of 1.00

Flag question

Question text

The open source community of Microsoft to share software publicly is called


________________.

Select one:
a. GitHub
b. Code
c. Git
d. CodePlex

Question 25
Complete
Mark 1.00 out of 1.00

Flag question

Question text

True or False:
The phase in loops where the counter is changed is called Variation.

Select one:
True
False

Question 26
Complete
Mark 1.00 out of 1.00

Flag question

Question text

Classes are part of ____________________ Data Types.

Select one:
a. Dereferenced
b. Primitive
c. Referenced
d. Object

Question 27
Complete
Mark 1.00 out of 1.00
Flag question

Question text

True or False:
Visual Studio Code is an IDE that supports multiple programming languages under
multitude of operating systems.

Select one:
True
False

Question 28
Complete
Mark 1.00 out of 1.00

Flag question

Question text

A ______ statement ends the execution of the entire loop.

Select one:
a. end
b. exit
c. break
d. continue

Question 29
Complete
Mark 1.00 out of 1.00

Flag question
Question text

True or False:
A group of related statements are called code blocks.
Select one:
True
False

Question 30
Complete
Mark 1.00 out of 1.00

Flag question

Question text

___________ enabled developers to repeat a sequence of statements given the right


conditions.

Select one:
a. Selections
b. Functions
c. Conditionals
d. Loops

Question 31
Complete
Mark 1.00 out of 1.00

Flag question

Question text

Variables defined within a code block is called ____________ variables.

Select one:
a. Illegal
b. Local
c. Global
d. Initialized

Question 32
Complete
Mark 1.00 out of 1.00

Flag question

Question text

Anonymous Variables are labeled by the _____________.

Select one:
a. User
b. Developer
c. Computer
d. Microcontroller

Question 33
Complete
Mark 1.00 out of 1.00

Flag question

Question text

True or False:
Explicit Data Types are also called Variants.

Select one:
True
False

Question 34
Complete
Mark 1.00 out of 1.00
Flag question

Question text

The most efficient data type to use for flags like gender is _________________.

Select one:
a. Integer
b. Boolean
c. Character
d. Floating-point

Question 35
Complete
Mark 1.00 out of 1.00

Flag question

Question text

True or False:
Unnamed variables are called Anonymous Variables.

Select one:
True
False

Question 36
Complete
Mark 1.00 out of 1.00

Flag question

Question text
A statement wherein the increment/decrement always occurs after the statements of the
body is called ________ statement.

Select one:
a. do-until
b. while
c. for
d. do-while

Question 37
Complete
Mark 1.00 out of 1.00

Flag question

Question text

The ____________ looping statement evaluates the condition before executing the body and
the increment/decrement.

Select one:
a. do-until
b. for
c. do-while
d. while

Question 38
Complete
Mark 1.00 out of 1.00

Flag question

Question text

The only data type that can store large values until 65,535 is _________________ _______.

Select one:
a. Signed Int
b. Signed Short
c. Unsigned Int
d. Unsigned Short

Question 39
Complete
Mark 1.00 out of 1.00

Flag question

Question text

_______________ is the phase in looping statements that are evaluated.

Select one:
a. Condition
b. Body
c. Increment/Decrement
d. Initialization

Question 40
Complete
Mark 1.00 out of 1.00

Flag question

Question text

________ statement is used to output a string to inform the user about the conditions need.

Select one:
a. cin
b. std::cout
c. std::cin
d. Cout
Question 41
Complete
Mark 1.00 out of 1.00

Flag question

Question text

True or False:
Values are limited by their data types.

Select one:
True
False

Question 42
Complete
Mark 1.00 out of 1.00

Flag question

Question text

The _________________ phase decreases the value of the counter.

Select one:
a. Merit
b. Demerit
c. Decrement
d. Increment

Question 43
Complete
Mark 1.00 out of 1.00
Flag question

Question text

True or False:
Iteration is the special variable that controls the flow of loops.

Select one:
True
False

Question 44
Complete
Mark 1.00 out of 1.00

Flag question

Question text

True or False:
Fundamentals of computer programming are learned easily through the use of GUI.

Select one:
True
False

Question 45
Complete
Mark 1.00 out of 1.00

Flag question

Question text

We use ___________________ to test the system path if defined.


Select one:
a. WinVer
b. Command Prompt
c. Shell
d. Environment

Question 46
Complete
Mark 1.00 out of 1.00

Flag question

Question text

These variables that may not declare their data types are called ____________ Data Types.

Select one:
a. Random
b. Optional
c. Implicit
d. Explicit

Question 47
Complete
Mark 1.00 out of 1.00

Flag question

Question text

The ________________________ tool enables better code management through backups and
source control.

Select one:
a. Version Control
b. Integrated Development Environment
c. Access Control
d. File management

Question 48
Complete
Mark 1.00 out of 1.00

Flag question

Question text

The newly developed IDE from Microsoft that supports various programming languages and
acts as a subset of Visual Studio is called ________________.

Select one:
a. Visual Studio Enterprise
b. Visual Studio Code
c. Visual Studio 2017
d. Visual Studio Professional

Question 49
Complete
Mark 1.00 out of 1.00

Flag question

Question text

Implicit Data Types can store _____ type of values.

Select one:
a. Any
b. Selected
c. Implicit
d. Explicit

Question 50
Complete
Mark 1.00 out of 1.00

Flag question

Question text

True or False:
Compilers build the application from source codes.

Select one:
True
False

You might also like