Comm Prog - Fexam

You might also like

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

Question 1

Complete
Mark 1.00 out of 1.00

Flag question

Question text

These are functions in C++ that allows varying sizes of arrays.

Select one:
a. Dynamic Memory Allocation
b. References
c. Pointers
d. None of the choices

Question 2
Complete
Mark 1.00 out of 1.00

Flag question

Question text

It is the period or time when computers start to emerge.

Select one:
a. 300 A.D.
b. 3,000 A.D.
c. 300 B.C.
d. 3,000 B.C.

Question 3
Complete
Mark 1.00 out of 1.00
Flag question

Question text

It is a specific device running a specific operating system.

Select one:
a. Peripherals
b. Platforms
c. Utilities
d. Software

Question 4
Complete
Mark 1.00 out of 1.00

Flag question

Question text

It is the equivalent of the DECISION symbol of Flowcharts in Pseudocodes.

Select one:
a. CALL
b. IF
c. DECIDE
d. SWITCH

Question 5
Complete
Mark 1.00 out of 1.00

Flag question
Question text

What is the allocated size of a 3D int array with size 2, 4, 8?

Select one:
a. 4,096 bits (integral)
b. 4,096 bits
c. 2,048 bits (integral)
d. 2,048 bits

Question 6
Complete
Mark 1.00 out of 1.00

Flag question

Question text

These are high-level description of the processes in Computer Programming.

Select one:
a. Descriptor
b. Pseudocode
c. Flowchart
d. Enumeration

Question 7
Complete
Mark 1.00 out of 1.00

Flag question

Question text

Is the given conditional statement correct? if (cout << endl);

Select one:
a. False
b. True

Question 8
Complete
Mark 1.00 out of 1.00

Flag question

Question text

What is the allocated size of a 3D long array with size 2, 4, 8?

Select one:
a. 4,096 bits (integral)
b. 2,048 bits
c. 4,096 bits
d. 2,048 bits (integral)

Question 9
Complete
Mark 1.00 out of 1.00

Flag question

Question text

This is the minimum value for signed shortdata type.

Select one:
a. 32,767
b. -32,768
c. 65,535
d. 0

Question 10
Complete
Mark 1.00 out of 1.00

Flag question

Question text

It is the characteristic of Problem Solving that focuses on the practicality to provide a


solution that takes a finite number of resources.

Select one:
a. Goal-oriented
b. Doable in finite steps
c. Solvable
d. Verifiable

Question 11
Complete
Mark 1.00 out of 1.00

Flag question

Question text

This is the maximum value for booldata type.

Select one:
a. 0
b. 2
c. -1
d. 1

Question 12
Complete
Mark 1.00 out of 1.00
Flag question

Question text

It is the classification of Technical Work Items for "to imitate a user input".

Select one:
a. OUTPUT
b. None of the choices
c. PROCESS
d. INPUT

Question 13
Complete
Mark 1.00 out of 1.00

Flag question

Question text

This is the minimum value for unsigned short data type.

Select one:
a. 65,535
b. 0
c. 32,767
d. -32,768

Question 14
Complete
Mark 1.00 out of 1.00

Flag question
Question text

These are looping statements where the condition is evaluated right before the body is
executed.

Select one:
a. For
b. None of the choices
c. While
d. Do While

Question 15
Complete
Mark 1.00 out of 1.00

Flag question

Question text

Is the given looping statement fundamentally correct?


while(1);

Select one:
a. True
b. False

Question 16
Complete
Mark 1.00 out of 1.00

Flag question

Question text

It is the part of Visual Studio Code where the contents of the files are previewed and edited.

Select one:
a. Extensions
b. Editor
c. Explorer
d. Minimap

Question 17
Complete
Mark 1.00 out of 1.00

Flag question

Question text

What is the allocated size of a 3D double array with size 2, 4, 8?

Select one:
a. 4,096 bits (integral)
b. 2,048 bits
c. 2,048 bits (integral)
d. 4,096 bits

Question 18
Complete
Mark 1.00 out of 1.00

Flag question

Question text

These are the parts of Object-Oriented Programming that gives meaning to the classes
through the availability of accessible data.

Select one:
a. Scopes
b. Constructors
c. Properties
d. Methods
Question 19
Complete
Mark 1.00 out of 1.00

Flag question

Question text

It is the part of Visual Studio Code where additional programming support and
miscellaneous add-ons are managed.

Select one:
a. Extensions
b. Editor
c. Minimap
d. Explorer

Question 20
Complete
Mark 1.00 out of 1.00

Flag question

Question text

It is the classification of Technical Work Items for "to clear all values stored in the variables".

Select one:
a. PROCESS
b. None of the choices
c. OUTPUT
d. INPUT

Question 21
Complete
Mark 1.00 out of 1.00
Flag question

Question text

It is the keyword in Pseudocodes that indicates a value being stored to a temporary storage
from any source excluding user entry.

Select one:
a. INPUT ...
b. APPEND ... TO ...
c. DECLARE ...
d. SET ... AS ...

Question 22
Complete
Mark 1.00 out of 1.00

Flag question

Question text

What is the allocated size of a bool array with size 50?

Select one:
a. 50 bits
b. 500 bits
c. 1 bit
d. 100 bits

Question 23
Complete
Mark 1.00 out of 1.00
Flag question

Question text

It is the classification of Technical Work Items for "all user entries".

Select one:
a. INPUT
b. None of the choices
c. PROCESS
d. OUTPUT

Question 24
Complete
Mark 1.00 out of 1.00

Flag question

Question text

These are the parts of Object-Oriented Programming that deals with the different internal
variables of the class.

Select one:
a. Scopes
b. Methods
c. Properties
d. Constructors

Question 25
Complete
Mark 1.00 out of 1.00
Flag question

Question text

What is the allocated size of a 3D char array with size 12, 5 and 5 respectively?

Select one:
a. None of the choices
b. 900 bits
c. 9,600 bits
d. 2,400 bits

Question 26
Complete
Mark 1.00 out of 1.00

Flag question

Question text

It is the characteristic of Problem Solving that focuses on the testability of the identified
solution.

Select one:
a. Doable in finite steps
b. Verifiable
c. Goal-oriented
d. Solvable

Question 27
Complete
Mark 1.00 out of 1.00
Flag question

Question text

This is a part of a function that passes value into the function.

Select one:
a. Function Name
b. Parameter
c. Body of the Function
d. Return Type

Question 28
Complete
Mark 1.00 out of 1.00

Flag question

Question text

This is a part of a function that indicates the final value of the function.

Select one:
a. Parameter
b. Return Type
c. Body of the Function
d. Function Name

Question 29
Complete
Mark 1.00 out of 1.00

Flag question
Question text

What is the allocated size of a 5D bool array with size 2, 5, 10, 1?

Select one:
a. 100 bits
b. 50 bits
c. 1 bit
d. 500 bits

Question 30
Complete
Mark 1.00 out of 1.00

Flag question

Question text

It is a special lightweight software that converts our source code to computer executables.

Select one:
a. Operating System
b. Compiler
c. Version Control
d. Integrated Development Environment

Question 31
Complete
Mark 1.00 out of 1.00

Flag question

Question text

Procedures are non-essential in C++, hence there can be a source code with no procedures.

Select one:
a. True
b. False

Question 32
Complete
Mark 1.00 out of 1.00

Flag question

Question text

These are functions in C++ that changes the address of a variable to another address.

Select one:
a. Pointers
b. References
c. None of the choices
d. Dynamic Memory Allocation

Question 33
Complete
Mark 1.00 out of 1.00

Flag question

Question text

What will be the result of the following statement?


int a[2] = { 1, 2 };

Select one:
a. The statement will induce integer overflow.
b. The statement will run correctly.
c. The statement will induce array out of index.
d. The statement has an incorrect syntax.
Question 34
Complete
Mark 1.00 out of 1.00

Flag question

Question text

It is the characteristic of Technical Work Items that focuses on shortly written work items.

Select one:
a. Classifiable as INPUT, PROCESS, or OUTPUT
b. Unambiguous
c. Specific
d. Concise

Question 35
Complete
Mark 1.00 out of 1.00

Flag question

Question text

These are declared variables that are never used in the source code.

Select one:
a. Implicit Variables
b. Anonymous Variables
c. Explicit Variables
d. None of the choices

Question 36
Complete
Mark 1.00 out of 1.00
Flag question

Question text

What will be the result of the following statement?


int b[2] = { 1, 2 }; cout << b[2];

Select one:
a. The statement has an incorrect syntax.
b. The statement will run correctly.
c. The statement will induce integer overflow.
d. The statement will induce array out of index.

Question 37
Complete
Mark 1.00 out of 1.00

Flag question

Question text

It is the characteristic of Technical Work Items that focuses on the precision of the given
work item.

Select one:
a. Unambiguous
b. Concise
c. Classifiable as INPUT, PROCESS, or OUTPUT
d. Specific

Question 38
Complete
Mark 1.00 out of 1.00
Flag question

Question text

These are the parts of Object-Oriented Programming that deals with the constraint placed
in variables and functions regarding where they can be accessed.

Select one:
a. Scopes
b. Properties
c. Constructors
d. Methods

Question 39
Complete
Mark 1.00 out of 1.00

Flag question

Question text

This is the maximum value for int data type.

Select one:
a. -2,147,483,648
b. 2,147,483,648
c. -2,147,483,647
d. 2,147,483,647

Question 40
Complete
Mark 1.00 out of 1.00
Flag question

Question text

This is a part of a function that can indicate the function will not pass a value.

Select one:
a. Function Name
b. Parameter
c. Return Type
d. Body of the Function

Question 41
Complete
Mark 1.00 out of 1.00

Flag question

Question text

What will be the result of the following statement?


shortc[1] = { 32768 };

Select one:
a. The statement will induce integer overflow.
b. The statement will induce array out of index.
c. The statement has an incorrect syntax.
d. The statement will run correctly.

Question 42
Complete
Mark 1.00 out of 1.00
Flag question

Question text

What is the allocated size of a 3D int array with size 10, 5 and 6 respectively?

Select one:
a. 900 bits
b. None of the choices
c. 2,400 bits
d. 9,600 bits

Question 43
Complete
Mark 1.00 out of 1.00

Flag question

Question text

It is the characteristic of Problem Solving that states there should exist at least one probable
solution.

Select one:
a. Goal-oriented
b. Solvable
c. Verifiable
d. Doable in finite steps

Question 44
Complete
Mark 1.00 out of 1.00
Flag question

Question text

Is the given conditional statement correct?


if (1) { cout << endl; }

Select one:
a. True
b. False

Question 45
Complete
Mark 1.00 out of 1.00

Flag question

Question text

These are conditionals that provide an alternative scenario should the condition-under-
check fails.

Select one:
a. Switch
b. If ... Else
c. If
d. If ... Else If ... Else

Question 46
Complete
Mark 1.00 out of 1.00

Flag question
Question text

These are conditionals that are only executed when the condition-under-check succeeds.

Select one:
a. If
b. If ... Else
c. If ... Else If ... Else
d. Switch

Question 47
Complete
Mark 1.00 out of 1.00

Flag question

Question text

These are data types that do not have any other components like properties and internal
functions.

Select one:
a. Referenced Data Types
b. Explicit Data Types
c. Implicit Data Types
d. Primitive Data Types

Question 48
Complete
Mark 1.00 out of 1.00

Flag question

Question text

These are data types that are declared and defined.


Select one:
a. Referenced Data Types
b. Primitive Data Types
c. Explicit Data Types
d. Implicit Data Types

Question 49
Complete
Mark 1.00 out of 1.00

Flag question

Question text

These are conditionals that matches the value of the variable-under-check with their literal
counterpart.

Select one:
a. Switch
b. If ... Else If ... Else
c. If ... Else
d. If

Question 50
Complete
Mark 1.00 out of 1.00

Flag question

Question text

It is the characteristic of Technical Work Items that talks about a single entity being
manipulated or task being accomplished.

Select one:
a. Specific
b. Concise
c. Unambiguous
d. Classifiable as INPUT, PROCESS, or OUTPUT

Question 1
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are undeclared variables that are used by the computer.

Select one:

a. None of the choices

b. Explicit Variables

c. Anonymous Variables

d. Implicit Variables

Question 2
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the characteristic of Technical Work Items that focuses on shortly written work items.
Select one:

a. Concise

b. Unambiguous

c. Classifiable as INPUT, PROCESS, or OUTPUT

d. Specific

Question 3
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the complex, fully functional software where we write, organize and manages our source
codes and related files.

Select one:

a. Version Control

b. Compiler

c. Integrated Development Environment

d. Operating System

Question 4
Complete

Mark 1.00 out of 1.00

Flag question
Question text

It is the part of the computer that processes all graphical outputs.

Select one:

a. Graphics Process Unit

b. Graphics Processing Unit

c. Graphical Processing Unit

d. Graphical Process Unit

Question 5
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is the minimum value for unsigned short data type.

Select one:

a. -32,768

b. 0

c. 65,535

d. 32,767

Question 6
Complete

Mark 1.00 out of 1.00


Flag question

Question text

It is the keyword in Pseudocodes that indicates a value being stored to a temporary storage
from any source excluding user entry.

Select one:

a. DECLARE ...

b. APPEND ... TO ...

c. INPUT ...

d. SET ... AS ...

Question 7
Complete

Mark 1.00 out of 1.00

Flag question

Question text

What is the allocated size of a 3D short array with size 2, 3 and 4 respectively?

Select one:

a. None of the choices

b. 9,600 bits

c. 900 bits

d. 2,400 bits
Question 8
Complete

Mark 1.00 out of 1.00

Remove flag

Question text

It is the main software where we develop and run our software application.

Select one:

a. Integrated Development Environment

b. Version Control

c. Compiler

d. Operating System

Question 9
Complete

Mark 1.00 out of 1.00

Remove flag

Question text

What is the allocated size of a bool array with size 50?

Select one:

a. 100 bits

b. 500 bits

c. 50 bits
d. 1 bit

Question 10
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the equivalent of the OUTPUT symbol of Pseudocodes in Flowcharts.

Select one:

a. OUTPUT

b. PREVIEW

c. DISPLAY

d. OUT

Question 11
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the preferred compiler for C++ in Windows x86 architecture.

Select one:

a. Visual Studio Code

b. Microsoft Windows
c. Minimalist GNU for Windows

d. Git

Question 12
Complete

Mark 1.00 out of 1.00

Remove flag

Question text

It is the equivalent of the DECISION symbol of Flowcharts in Pseudocodes.

Select one:

a. DECIDE

b. CALL

c. IF

d. SWITCH

Question 13
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the part of Visual Studio Code where the project structure is displayed.

Select one:

a. Editor
b. Explorer

c. Minimap

d. Extensions

Question 14
Complete

Mark 1.00 out of 1.00

Flag question

Question text

Is the given looping statement syntactically correct?

while(1);
Select one:

a. True

b. False

Question 15
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the version of Shell that uses the alias ksh.

Select one:

a. Kourne Shell
b. Korn Shell

c. K-Shell

d. KiShell

Question 16
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are functions in C++ that allows varying sizes of arrays.

Select one:

a. References

b. Pointers

c. Dynamic Memory Allocation

d. None of the choices

Question 17
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are conditionals that are only executed when the condition-under-check succeeds.

Select one:
a. If ... Else If ... Else

b. If ... Else

c. Switch

d. If

Question 18
Complete

Mark 1.00 out of 1.00

Flag question

Question text

What is the allocated size of a 3D float array with size 2, 4, 8?

Select one:

a. 4,096 bits (integral)

b. 2,048 bits

c. 4,096 bits

d. 2,048 bits (integral)

Question 19
Complete

Mark 1.00 out of 1.00

Flag question

Question text
This is a part of a function that indicates the alias of the function.

Select one:

a. Return Type

b. Parameter

c. Body of the Function

d. Function Name

Question 20
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is the minimum value for intdata type.

Select one:

a. -2,147,483,647

b. -2,147,483,648

c. 2,147,483,648

d. 2,147,483,647

Question 21
Complete

Mark 1.00 out of 1.00

Flag question
Question text

What will be the result of the following statement?

shortc[1] = { 32768 };
Select one:

a. The statement will induce array out of index.

b. The statement will induce integer overflow.

c. The statement will run correctly.

d. The statement has an incorrect syntax.

Question 22
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is a subset in the internet where documents are relating to other documents using
hypertext links.

Select one:

a. Extranet

b. Intranet

c. World Wide Web

d. Internet

Question 23
Complete

Mark 1.00 out of 1.00


Flag question

Question text

These are the restriction we place to variables to handle only specified data.

Select one:

a. Data Types

b. Restrictions

c. Variables

d. Constraints

Question 24
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is the minimum value for signed shortdata type.

Select one:

a. 32,767

b. 0

c. 65,535

d. -32,768

Question 25
Complete

Mark 1.00 out of 1.00

Remove flag

Question text

What is the allocated size of a 3D char array with size 12, 5 and 5 respectively?

Select one:

a. 9,600 bits

b. 2,400 bits

c. None of the choices

d. 900 bits

Question 26
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is the value for "NUL (null)" character of char data type.

Select one:

a. 255

b. 0

c. -255
d. None of the choices

Question 27
Complete

Mark 1.00 out of 1.00

Remove flag

Question text

It is a symbol of Flowcharting used to connect two or more symbols in the same page.

Select one:

a. On-page Connector

b. Data Connector

c. Same-page Connector

d. In-page Connector

Question 28
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the classification of Technical Work Items for "to add the numbers stores in a variable".

Select one:

a. OUTPUT

b. None of the choices


c. PROCESS

d. INPUT

Question 29
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is a specific device running a specific operating system.

Select one:

a. Software

b. Peripherals

c. Utilities

d. Platforms

Question 30
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is a special lightweight software that converts our source code to computer executables.

Select one:

a. Integrated Development Environment


b. Version Control

c. Compiler

d. Operating System

Question 31
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are looping statements where the condition is evaluated right before the body is
executed.

Select one:

a. For

b. None of the choices

c. Do While

d. While

Question 32
Complete

Mark 1.00 out of 1.00

Flag question

Question text
These are data types that are numerical in nature because C++ stores them as zero (0) or
zero (1), internally.

Select one:

a. Booleans

b. Characters

c. Integers

d. Floating-points

Question 33
Complete

Mark 1.00 out of 1.00

Flag question

Question text

Is the given looping statement correct?

for(i=5; i>0; i--){ cout << endl; }


Select one:

a. False

b. True

Question 34
Complete

Mark 1.00 out of 1.00

Flag question
Question text

Is the given looping statement fundamentally correct?

while(1);
Select one:

a. True

b. False

Question 35
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are data types that are objective by nature.

Select one:

a. Referenced Data Types

b. Implicit Data Types

c. Primitive Data Types

d. Explicit Data Types

Question 36
Complete

Mark 1.00 out of 1.00

Flag question
Question text

This is the minimum value for unsigned long data type.

Select one:

a. -9,223,372,036,854,775,807

b. -9,223,372,036,854,775,808

c. 0

d. -9,223,372,036,854,775,806

Question 37
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are the parts of Object-Oriented Programming that gives meaning to the classes
through the availability of accessible data.

Select one:

a. Methods

b. Constructors

c. Scopes

d. Properties

Question 38
Complete

Mark 1.00 out of 1.00


Flag question

Question text

What is the allocated size of a 3D int array with size 2, 4, 8?

Select one:

a. 4,096 bits

b. 2,048 bits

c. 2,048 bits (integral)

d. 4,096 bits (integral)

Question 39
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the characteristic of Technical Work Items that talks about a single entity being
manipulated or task being accomplished.

Select one:

a. Classifiable as INPUT, PROCESS, or OUTPUT

b. Unambiguous

c. Specific

d. Concise
Question 40
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is the maximum value for int data type.

Select one:

a. -2,147,483,648

b. -2,147,483,647

c. 2,147,483,648

d. 2,147,483,647

Question 41
Complete

Mark 1.00 out of 1.00

Remove flag

Question text

What is the allocated size of a 3D int array with size 10, 5 and 6 respectively?

Select one:

a. 900 bits

b. None of the choices

c. 9,600 bits
d. 2,400 bits

Question 42
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is the minimum value for long data type.

Select one:

a. -9,223,372,036,854,775,806

b. 0

c. -9,223,372,036,854,775,807

d. -9,223,372,036,854,775,808

Question 43
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are the parts of Object-Oriented Programming that deals with the initialization of
various forms of the class.

Select one:

a. Properties
b. Methods

c. Constructors

d. Scopes

Question 44
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the classification of Technical Work Items for "all displayed information".

Select one:

a. None of the choices

b. INPUT

c. OUTPUT

d. PROCESS

Question 45
Complete

Mark 1.00 out of 1.00

Flag question

Question text

What is the allocated size of a 3D string array with size 12, 4, 10?

Select one:
a. 3,840 bits

b. 30,720 bits

c. Insufficient Data

d. None of the choices

Question 46
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are high-level description of the processes in Computer Programming.

Select one:

a. Flowchart

b. Descriptor

c. Enumeration

d. Pseudocode

Question 47
Complete

Mark 1.00 out of 1.00

Remove flag

Question text
This is a part of a function that passes value into the function.

Select one:

a. Function Name

b. Body of the Function

c. Parameter

d. Return Type

Question 48
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the part of Visual Studio Code where additional programming support and
miscellaneous add-ons are managed.

Select one:

a. Explorer

b. Extensions

c. Editor

d. Minimap

Question 49
Complete

Mark 1.00 out of 1.00


Flag question

Question text

These are conditionals that provide an alternative scenario should the condition-under-
check fails.

Select one:

a. Switch

b. If ... Else If ... Else

c. If ... Else

d. If

Question 50
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is a free and public web-based repository that allows distributed version control and
source control management tool.

Select one:

a. Microsoft Windows

b. Git

c. Visual Studio Code


d. Minimalist GNU for Windows

Question 1
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is the maximum value for booldata type.

Select one:

a. -1

b. 1

c. 2

d. 0

Question 2
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the classification of Technical Work Items for "to add the numbers stores in a variable".

Select one:

a. PROCESS
b. None of the choices

c. INPUT

d. OUTPUT

Question 3
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is the value for "NUL (null)" character of char data type.

Select one:

a. 0

b. 255

c. -255

d. None of the choices

Question 4
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the characteristic of Problem Solving that focuses on the solution to meet a specific
singular end.
Select one:

a. Solvable

b. Verifiable

c. Goal-oriented

d. Doable in finite steps

Question 5
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are functions in C++ that allows varying sizes of arrays.

Select one:

a. Pointers

b. References

c. Dynamic Memory Allocation

d. None of the choices

Question 6
Complete

Mark 1.00 out of 1.00

Remove flag

Question text
Is the given conditional statement correct?

if (1) { cout << endl; }


Select one:

a. True

b. False

Question 7
Complete

Mark 1.00 out of 1.00

Flag question

Question text

Procedures are non-essential in C++, hence there can be a source code with no procedures.

Select one:

a. True

b. False

Question 8
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the characteristic of Problem Solving that focuses on the practicality to provide a


solution that takes a finite number of resources.

Select one:
a. Verifiable

b. Solvable

c. Doable in finite steps

d. Goal-oriented

Question 9
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the equivalent of the DATA symbol of Flowcharts in Pseudocodes.

Select one:

a. SET

b. PROCESS

c. DATA

d. APPEND

Question 10
Complete

Mark 1.00 out of 1.00

Flag question

Question text
This is the minimum value for signed shortdata type.

Select one:

a. 65,535

b. -32,768

c. 0

d. 32,767

Question 11
Complete

Mark 1.00 out of 1.00

Flag question

Question text

What is the allocated size of a 3D string array with size 12, 4, 10?

Select one:

a. 30,720 bits

b. 3,840 bits

c. Insufficient Data

d. None of the choices

Question 12
Complete

Mark 1.00 out of 1.00

Flag question
Question text

It is a symbol of Flowcharting used to initialize something.

Select one:

a. Preparation

b. Process

c. Decision

d. Data

Question 13
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the characteristic of Technical Work Items that focuses on the precision of the given
work item.

Select one:

a. Unambiguous

b. Classifiable as INPUT, PROCESS, or OUTPUT

c. Specific

d. Concise

Question 14
Complete

Mark 1.00 out of 1.00


Flag question

Question text

These are looping statements where the condition is evaluated right before the body is
executed.

Select one:

a. For

b. While

c. None of the choices

d. Do While

Question 15
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is a special lightweight software that organizes and manages the different changes done
to our source codes and related files.

Select one:

a. Integrated Development Environment

b. Compiler

c. Version Control
d. Operating System

Question 16
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the classification of Technical Work Items for "to imitate a user input".

Select one:

a. INPUT

b. None of the choices

c. OUTPUT

d. PROCESS

Question 17
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the classification of Technical Work Items for "all displayed information".

Select one:

a. INPUT

b. OUTPUT
c. None of the choices

d. PROCESS

Question 18
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are the parts of Object-Oriented Programming that deals with the initialization of
various forms of the class.

Select one:

a. Constructors

b. Methods

c. Properties

d. Scopes

Question 20
Complete

Mark 1.00 out of 1.00

Flag question

Question text

What is the allocated size of a 3D float array with size 2, 4, 8?

Select one:
a. 2,048 bits (integral)

b. 4,096 bits

c. 4,096 bits (integral)

d. 2,048 bits

Question 21
Complete

Mark 0.00 out of 1.00

Flag question

Question text

These are variables in C++ that can manipulate the values of the address it points to
without accessing the address itself.

Select one:

a. Pointers

b. References

c. None of the choices

d. Dynamic Memory Allocation

Question 22
Complete

Mark 1.00 out of 1.00

Flag question

Question text
Functions are essentially a code block of related statements that allow varying values of its
variables.

Select one:

a. True

b. False

Question 23
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is the minimum value for unsigned short data type.

Select one:

a. 65,535

b. -32,768

c. 32,767

d. 0

Question 24
Complete

Mark 1.00 out of 1.00

Flag question

Question text
These are looping statements where only the initialization, condition and increment phases
occur within the parentheses of the statement.

Select one:

a. For

b. None of the choices

c. Do While

d. While

Question 25
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are conditionals that provide an alternative scenario should the condition-under-
check fails.

Select one:

a. If ... Else If ... Else

b. If ... Else

c. Switch

d. If

Question 26
Complete

Mark 1.00 out of 1.00


Flag question

Question text

These are the parts of Object-Oriented Programming that deals with extended functionality
of the class.

Select one:

a. Methods

b. Constructors

c. Scopes

d. Properties

Question 27
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are data types that are numerical in nature because C++ stores them as zero (0) or
zero (1), internally.

Select one:

a. Characters

b. Integers

c. Booleans
d. Floating-points

Question 28
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the programming language that ranked as the Top 3 most used language in 2016 based
from GitHub research.
Select one:

a. C#

b. Java

c. JavaScript

d. Python

Question 29
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the part of Visual Studio Code where additional programming support and
miscellaneous add-ons are managed.

Select one:

a. Explorer
b. Minimap

c. Editor

d. Extensions

Question 30
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the complex, fully functional software where we write, organize and manages our source
codes and related files.

Select one:

a. Compiler

b. Operating System

c. Version Control

d. Integrated Development Environment

Question 31
Complete

Mark 1.00 out of 1.00

Flag question

Question text
It is the characteristic of Technical Work Items that ensures the work item falls into a specific
action.

Select one:

a. Classifiable as INPUT, PROCESS, or OUTPUT

b. Concise

c. Specific

d. Unambiguous

Question 32
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the part of Visual Studio Code where the project structure is displayed.

Select one:

a. Minimap

b. Extensions

c. Explorer

d. Editor

Question 33
Complete

Mark 1.00 out of 1.00


Flag question

Question text

What is the allocated size of a 5D bool array with size 2, 5, 10, 1?

Select one:

a. 500 bits

b. 50 bits

c. 1 bit

d. 100 bits

Question 34
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are conditionals that extend the functionality of if where in several other scenarios are
accounted.

Select one:

a. If ... Else If ... Else

b. If

c. Switch

d. If ... Else
Question 35
Complete

Mark 1.00 out of 1.00

Flag question

Question text

What is the allocated size of a 3D double array with size 2, 4, 8?

Select one:

a. 2,048 bits (integral)

b. 2,048 bits

c. 4,096 bits

d. 4,096 bits (integral)

Question 36
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are data types that are declared and defined.

Select one:

a. Referenced Data Types

b. Explicit Data Types

c. Primitive Data Types


d. Implicit Data Types

Question 37
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the classification of Technical Work Items for "to display the account number in masked
text".

Select one:

a. None of the choices

b. PROCESS

c. INPUT

d. OUTPUT

Question 40
Complete

Mark 1.00 out of 1.00

Flag question

Question text

What is the allocated size of a 3D long array with size 2, 4, 8?

Select one:

a. 2,048 bits (integral)


b. 4,096 bits (integral)

c. 2,048 bits

d. 4,096 bits

Question 41
Complete

Mark 1.00 out of 1.00

Flag question

Question text

Is the given looping statement correct?

for(i=5; i>0; i--){ cout << endl; }


Select one:

a. False

b. True

Question 42
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the version of Shell that uses the alias ksh.

Select one:

a. Kourne Shell
b. KiShell

c. Korn Shell

d. K-Shell

Question 43
Complete

Mark 1.00 out of 1.00

Flag question

Question text

Is the given looping statement fundamentally correct?

while(1);
Select one:

a. True

b. False

Question 44
Complete

Mark 1.00 out of 1.00

Flag question

Question text

What is the allocated size of a 3D short array with size 2, 3 and 4 respectively?

Select one:

a. 9,600 bits
b. None of the choices

c. 2,400 bits

d. 900 bits

Question 45
Complete

Mark 1.00 out of 1.00

Flag question

Question text

Is the given looping statement syntactically correct?

while(1);
Select one:

a. False

b. True

Question 46
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are the parts of Object-Oriented Programming that gives meaning to the classes
through the availability of accessible data.

Select one:
a. Methods

b. Scopes

c. Constructors

d. Properties

Question 47
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is a part of a function that indicates the alias of the function.

Select one:

a. Return Type

b. Body of the Function

c. Function Name

d. Parameter

Question 48
Complete

Mark 1.00 out of 1.00

Flag question

Question text
It is the characteristic of Technical Work Items that talks about a single entity being
manipulated or task being accomplished.

Select one:

a. Specific

b. Concise

c. Unambiguous

d. Classifiable as INPUT, PROCESS, or OUTPUT

Question 49
Complete

Mark 1.00 out of 1.00

Flag question

Question text

Is the given conditional statement correct? if (cout << endl);

Select one:

a. False

b. True

Question 50
Complete

Mark 1.00 out of 1.00

Flag question

Question text
He is one of the creators of the open source programming language, Go, at Google, Inc in
2007.

Select one:

a. Ken Thompson

b. Roberts Griesemer

c. Rob Pikes

d. Robert Griesemere

Question 1
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are data types that are objective by nature.

Select one:

a. Primitive Data Types

b. Implicit Data Types

c. Referenced Data Types

d. Explicit Data Types

Question 2
Complete

Mark 1.00 out of 1.00


Flag question

Question text

It is the characteristic of Problem Solving that states there should exist at least one probable
solution.

Select one:

a. Solvable

b. Verifiable

c. Goal-oriented

d. Doable in finite steps

Question 3
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the characteristic of Problem Solving that focuses on the testability of the identified
solution.

Select one:

a. Doable in finite steps

b. Solvable

c. Goal-oriented
d. Verifiable

Question 5
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is a part of a function that can indicate the function will not pass a value.

Select one:

a. Function Name

b. Return Type

c. Body of the Function

d. Parameter

Question 6
Complete

Mark 0.00 out of 1.00

Flag question

Question text

These are undeclared variables used by the developer.

Select one:

a. Explicit Variables

b. None of the choices


c. Anonymous Variables

d. Implicit Variables

Question 7
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the part of Visual Studio Code where the contents of the files are previewed and edited.

Select one:

a. Explorer

b. Editor

c. Minimap

d. Extensions

Question 9
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is a special lightweight software that converts our source code to computer executables.

Select one:

a. Operating System
b. Version Control

c. Integrated Development Environment

d. Compiler

Question 10
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are data types that are taken depending on how they are stored or used.

Select one:

a. Implicit Data Types

b. Explicit Data Types

c. Primitive Data Types

d. Referenced Data Types

Question 11
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is the minimum value for intdata type.

Select one:
a. -2,147,483,648

b. 2,147,483,647

c. 2,147,483,648

d. -2,147,483,647

Question 12
Complete

Mark 0.00 out of 1.00

Flag question

Question text

It is a series of programming statements that are grouped together.

Select one:

a. Conditional

b. Statements

c. Code Block

d. Function

Question 15
Complete

Mark 1.00 out of 1.00

Flag question

Question text
It is an integrated development environment (IDE) which houses mono develop as its base
framework.

Select one:

a. Xamarin

b. Android Studio

c. Mono

d. Visual Studio Code

Question 17
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is the maximum value for signed short data type.

Select one:

a. -32,768

b. 32,767

c. 65,535

d. 0

Question 18
Complete

Mark 1.00 out of 1.00


Flag question

Question text

It is the keyword in Pseudocodes that indicates a value being stored to a temporary storage
from any source excluding user entry.

Select one:

a. INPUT ...

b. SET ... AS ...

c. DECLARE ...

d. APPEND ... TO ...

Question 19
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is the minimum value for long data type.

Select one:

a. 0

b. -9,223,372,036,854,775,807

c. -9,223,372,036,854,775,808

d. -9,223,372,036,854,775,806
Question 20
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are looping statements where the increment/decrement is evaluated right after the
condition is executed.

Select one:

a. While

b. Do While

c. For

d. None of the choices

Question 21
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the classification of Technical Work Items for "to accept a user input and add the value
to a variable".

Select one:

a. OUTPUT
b. PROCESS

c. INPUT

d. None of the choices

Question 22
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is a specific device running a specific operating system.

Select one:

a. Peripherals

b. Software

c. Utilities

d. Platforms

Question 23
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are the parts of Object-Oriented Programming that deals with the different internal
variables of the class.
Select one:

a. Scopes

b. Methods

c. Properties

d. Constructors

Question 25
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are data types that do not have any other components like properties and internal
functions.

Select one:

a. Implicit Data Types

b. Primitive Data Types

c. Referenced Data Types

d. Explicit Data Types

Question 26
Complete

Mark 1.00 out of 1.00

Flag question
Question text

What will be the result of the following statement?

shortc[1] = { 32768 };
Select one:

a. The statement will induce array out of index.

b. The statement will induce integer overflow.

c. The statement will run correctly.

d. The statement has an incorrect syntax.

Question 27
Complete

Mark 1.00 out of 1.00

Flag question

Question text

What will be the result of the following statement?

int b[2] = { 1, 2 }; cout << b[2];


Select one:

a. The statement will induce array out of index.

b. The statement will run correctly.

c. The statement has an incorrect syntax.

d. The statement will induce integer overflow.

Question 28
Complete

Mark 1.00 out of 1.00


Flag question

Question text

It is the characteristic of Technical Work Items that focuses on shortly written work items.

Select one:

a. Classifiable as INPUT, PROCESS, or OUTPUT

b. Unambiguous

c. Concise

d. Specific

Question 30
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is a free and public web-based repository that allows distributed version control and
source control management tool.

Select one:

a. Minimalist GNU for Windows

b. Git

c. Microsoft Windows

d. Visual Studio Code


Question 31
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is a small script that uses the built-in terminal commands

Select one:

a. Objective-C

b. Shell

c. PowerShell

d. Bash Script

Question 32
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the period or time when computers start to emerge.

Select one:

a. 3,000 A.D.

b. 300 A.D.

c. 300 B.C.
d. 3,000 B.C.

Question 33
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are undeclared variables that are used by the computer.

Select one:

a. Explicit Variables

b. Anonymous Variables

c. Implicit Variables

d. None of the choices

Question 34
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the preferred compiler for C++ in Windows x86 architecture.

Select one:

a. Git

b. Microsoft Windows
c. Visual Studio Code

d. Minimalist GNU for Windows

Question 35
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the classification of Technical Work Items for "to clear all values stored in the variables".

Select one:

a. INPUT

b. PROCESS

c. None of the choices

d. OUTPUT

Question 36
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are high-level description of the processes in Computer Programming.

Select one:

a. Pseudocode
b. Enumeration

c. Flowchart

d. Descriptor

Question 37
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is a part of a function that indicates the final value of the function.

Select one:

a. Parameter

b. Function Name

c. Return Type

d. Body of the Function

Question 38
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is the minimum value for booldata type.

Select one:
a. 65,535

b. -32,768

c. 0

d. 32,767

Question 39
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the equivalent of the OUTPUT symbol of Pseudocodes in Flowcharts.

Select one:

a. OUTPUT

b. PREVIEW

c. DISPLAY

d. OUT

Question 40
Complete

Mark 1.00 out of 1.00

Flag question

Question text
These are functions in C++ that changes the address of a variable to another address.

Select one:

a. None of the choices

b. References

c. Dynamic Memory Allocation

d. Pointers

Question 41
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is the minimum value for unsigned long data type.

Select one:

a. -9,223,372,036,854,775,808

b. 0

c. -9,223,372,036,854,775,807

d. -9,223,372,036,854,775,806

Question 42
Complete

Mark 1.00 out of 1.00

Flag question
Question text

What is the allocated size of a 3D int array with size 2, 4, 8?

Select one:

a. 4,096 bits (integral)

b. 2,048 bits (integral)

c. 4,096 bits

d. 2,048 bits

Question 43
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is a subset in the internet where documents are relating to other documents using
hypertext links.

Select one:

a. Intranet

b. World Wide Web

c. Internet

d. Extranet

Question 44
Complete

Mark 1.00 out of 1.00


Flag question

Question text

These are conditionals that matches the value of the variable-under-check with their literal
counterpart.

Select one:

a. Switch

b. If ... Else If ... Else

c. If ... Else

d. If

Question 45
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are conditionals that are only executed when the condition-under-check succeeds.

Select one:

a. If ... Else

b. If ... Else If ... Else

c. Switch

d. If
Question 46
Complete

Mark 1.00 out of 1.00

Flag question

Question text

This is the maximum value for int data type.

Select one:

a. 2,147,483,647

b. -2,147,483,648

c. 2,147,483,648

d. -2,147,483,647

Question 47
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the equivalent of the INPUT symbol of Pseudocodes in Flowcharts.

Select one:

a. DATA

b. SET

c. APPEND
d. PROCESS

Question 48
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are the restriction we place to variables to handle only specified data.

Select one:

a. Restrictions

b. Data Types

c. Variables

d. Constraints

Question 49
Complete

Mark 1.00 out of 1.00

Flag question

Question text

It is the part of the computer that processes all graphical outputs.

Select one:

a. Graphical Processing Unit

b. Graphical Process Unit


c. Graphics Processing Unit

d. Graphics Process Unit

Question 50
Complete

Mark 1.00 out of 1.00

Flag question

Question text

These are the parts of Object-Oriented Programming that deals with the constraint placed
in variables and functions regarding where they can be accessed.

Select one:

a. Scopes

b. Constructors

c. Properties

d. Methods

You might also like