Sei sulla pagina 1di 23

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. 2,400 bits
c. 9,600 bits
d. 900 bits 

Question 2
Correct
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 B.C. 
b. 3,000 A.D.
c. 300 B.C.
d. 300 A.D.

Question 3
Correct
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. 900 bits
b. 2,400 bits
c. None of the choices 
d. 9,600 bits

Question 4
Correct
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. Doable in finite steps 
c. Solvable
d. Goal-oriented

Question 5
Correct
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. Do While
b. None of the choices 
c. While
d. For
Question 6
Correct
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. Parameter 
b. Return Type
c. Function Name
d. Body of the Function

Question 7
Correct
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. Implicit Data Types
d. Primitive Data Types

Question 8
Incorrect
Mark 0.00 out of 1.00
Flag question

Question text

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

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

Question 9
Incorrect
Mark 0.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. None of the choices 
b. 900 bits
c. 9,600 bits
d. 2,400 bits

Question 10
Correct
Mark 1.00 out of 1.00

Flag question
Question text

Is the given conditional statement correct?


if (1) { cout << endl; }

Select one:
a. False
b. True 

Question 11
Correct
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. APPEND ... TO ...
d. DECLARE ...

Question 12
Correct
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,806
c. 0 
d. -9,223,372,036,854,775,808

Question 13
Incorrect
Mark 0.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 14
Incorrect
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. Statements 
b. Function
c. Code Block
d. Conditional

Question 15
Incorrect
Mark 0.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. Switch
d. If ... Else If ... Else 

Question 16
Correct
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. Visual Studio Code
b. Microsoft Windows
c. Minimalist GNU for Windows
d. Git 

Question 17
Correct
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 18
Correct
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. Korn Shell 
b. K-Shell
c. KiShell
d. Kourne Shell

Question 19
Incorrect
Mark 0.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 20
Correct
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 21
Correct
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. Doable in finite steps
d. Verifiable

Question 22
Correct
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. If ... Else If ... Else
b. If ... Else
c. Switch 
d. If

Question 23
Incorrect
Mark 0.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. Bash Script
c. PowerShell
d. Shell 
Question 24
Correct
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. 50 bits
b. 500 bits
c. 1 bit
d. 100 bits 

Question 25
Correct
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 26
Correct
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. Explorer 
b. Editor
c. Extensions
d. Minimap

Question 27
Correct
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. None of the choices
b. For
c. While 
d. Do While

Question 28
Incorrect
Mark 0.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. Function Name 
b. Parameter
c. Return Type
d. Body of the Function

Question 29
Correct
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. Operating System
b. Version Control 
c. Integrated Development Environment
d. Compiler

Question 30
Correct
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. Python 
b. C#
c. Java
d. JavaScript

Question 31
Incorrect
Mark 0.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 32
Correct
Mark 1.00 out of 1.00
Flag question

Question text

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

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

Question 33
Correct
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. 4,096 bits 
c. 2,048 bits
d. 4,096 bits (integral)

Question 34
Correct
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 35
Correct
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. Return Type 
b. Parameter
c. Body of the Function
d. Function Name

Question 36
Correct
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. 32,767
d. 0

Question 37
Correct
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. 4,096 bits (integral)
c. 2,048 bits
d. 2,048 bits (integral) 

Question 38
Correct
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 39
Incorrect
Mark 0.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,808
c. -9,223,372,036,854,775,806
d. -9,223,372,036,854,775,807

Question 40
Correct
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. 255
c. 0 
d. None of the choices

Question 41
Correct
Mark 1.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. Dynamic Memory Allocation
b. Pointers 
c. None of the choices
d. References

Question 42
Correct
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. Classifiable as INPUT, PROCESS, or OUTPUT
b. Specific
c. Concise
d. Unambiguous 

Question 43
Correct
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. Decision
c. Process
d. Data

Question 44
Incorrect
Mark 0.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 45
Correct
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 46
Correct
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. Constraints
c. Variables
d. Data Types 

Question 47
Incorrect
Mark 0.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 integer overflow. 
b. The statement has an incorrect syntax.
c. The statement will run correctly.
d. The statement will induce array out of index.

Question 48
Incorrect
Mark 0.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. Booleans
c. Floating-points
d. Integers 

Question 49
Correct
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. Properties
c. Scopes
d. Constructors

Question 50
Incorrect
Mark 0.00 out of 1.00
Flag question

Question text

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

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

Potrebbero piacerti anche