Follow and like us on our Facebook page where we post on the new release subject and answering tips and tricks to help save your time so that you can never feel stuck again.
Shortcut

Ctrl + F is the shortcut in your browser or operating system that allows you to find words or questions quickly.

Ctrl + Tab to move to the next tab to the right and Ctrl + Shift + Tab to move to the next tab to the left.

On a phone or tablet, tap the menu icon in the upper-right corner of the window; Select "Find in Page" to search a question.

Share Us

Sharing is Caring

It's the biggest motivation to help us to make the site better by sharing this to your friends or classmates.

Computer Programming

The process of designing and building an executable computer program to accomplish a specific computing result or to perform a specific task.

information technology

coding

software

development

application

computers

computer science

programmer

program

computer processing

function

True or False: Function name is a separate code block that performs a specific task.

  • True
  • False

It is one of the characteristics of problem solving where the problem is non-quality oriented.

  • Verifiable
  • Doable in finite steps
  • Solvable
  • Quantifiable

It is a symbol in flowcharting used to display value to the user.

  • Terminator
  • Preparation
  • Process
  • Data

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

  • True
  • False

__________ keyword accepts user values.

  • INPUT
  • VALUE
  • VARIABLE
  • ACCEPT

Values are limited by their data types.

  • True
  • False

Statements found inside of the ___________ are called code block.

  • a. Function Declarations
  • b. Parenthesis
  • c. Curly Braces
  • d. Square Braces

Are accessors and mutators similar in terms of limiting an action done.

  • True
  • False

__________ is a component of the function which itemizes the input values of the function.

  • a. Return Statement
  • b. Parameter
  • c. Function Declaration
  • d. Body

There is only one data type that can handle textual values.

  • True
  • False

The syntax for the ______________ is dataType variableName.

  • a. Parameter
  • b. Increment/Decrement
  • c. for Loop Declaration
  • d. Function Declaration

The symbol used for Data is shaped like a ______________.

  • Rhombus
  • Oval
  • Rounded Rectangle
  • Rectangle

It is created to initialize operations for the class upon declaration.

  • Destructor
  • Constructor
  • Initializer
  • Instantiation

In the discussion, the allocated size for a bool data type is 32 bits.

  • True
  • False

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

  • Specific
  • Classifiable as INPUT, PROCESS, or OUTPUT
  • Concise
  • Unambiguous

Pointers are used to point to addresses in the memory.

  • True
  • False

Parameter is a component of the function which _______ the input values of the function.

  • a. Increases
  • b. Destroys
  • c. Multiplies
  • d. Itemizes

True or False: The allocated size for a double data type is 64 bits (integer).

  • True
  • False

The ________ rights allow users to escalate the permission granted.

  • Default User
  • Desktop User
  • Administrator
  • Power User

This is the maximum value for signed short data type.

  • 32,767
  • 65,535
  • -32,768
  • 0

This looping statement in C++ where the condition is evaluated right before the execution.

  • Do-While Loop
  • While Loop
  • None of the choices
  • For Loop

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

  • 100 bits
  • 1 bit
  • 50 bits
  • 500 bits

It limits the access to the properties and methods under it to only the class where they are defined is called protected scope.

  • True
  • False

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

  • Primitive Data Types
  • Referenced Data Types
  • Explicit Data Types
  • Implicit Data Types

Else statement is used in undefined conditional expressions.

  • True
  • False

Does counting problem means that the values of given array is being arranged.

  • True
  • False

The ____________ statement uses defined constants in evaluating conditions.

  • if
  • switch
  • else if
  • else

These are data types that are declared and defined.

  • Implicit Data Types
  • Explicit Data Types
  • Primitive Data Types
  • Referenced Data Types

Direction : Choose the best answer. Which is not a version of Shell?

  • SSH
  • RSH
  • BASH
  • PSH
  • CSH

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

  • PROCESS
  • INPUT
  • None of the choices
  • OUTPUT

The increment/decrement happen at the start of the body.

  • True
  • False

The ___________ statement is used for the system function.

  • a. #include <cstring>
  • b. #include <iostream>
  • c. #include <cstdlib>
  • d. #include <stdio>

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

  • Specific
  • Classifiable as INPUT, PROCESS, or OUTPUT
  • Unambiguous
  • Concise

Code Block is a series of programming statement that is located outside of curly brackets/braces; opened by "{", and closed by "}".

  • True
  • False

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

  • Explorer
  • Editor
  • Minimap
  • Extensions

A function supports only one parameter.

  • True
  • False

A sector of array which contains a value is called element.

  • True
  • False

Snippet is defined as part of an entire code.

  • True
  • False

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

  • Doable in finite steps
  • Solvable
  • Goal-oriented
  • Verifiable

The index _________ which element of the array is on being process.

  • a. Declares
  • b. Sets
  • c. Initializes
  • d. Destroys

In the discussion, what is the allocated size for an int data type?

  • 8 bits
  • 64 bits
  • 1 bit
  • 32 bits

What flowchart symbol is the equivalent for the pseudocode CALL keyword?

  • Preparation
  • Process
  • Data
  • Conditional

A class cannot contain more than one constructor.

  • True
  • False

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

  • False
  • True

The programming language designed by Bjarne Stroustrup in ____ was initially proposed as a high-level programming language

  • 1967
  • 1982
  • 1980
  • 1979

References as variables stores ____________ as their value.

  • Parameters
  • Constant
  • Actual Value
  • Address

Encapsulation extends the features and functionalities of existing classes and interfaces.

  • True
  • False

DECLARE keyword is the equivalent for the Preparation symbol of flowcharts in pseudocode?

  • True
  • False

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

  • True
  • False

Accessors is a method that enables the retrieval of values hidden by scopes.

  • True
  • False

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

  • INPUT
  • None of the choices
  • OUTPUT
  • PROCESS

A group of statements within a code block is called body of the function.

  • True
  • False

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

  • References
  • Pointers
  • None of the choices
  • Dynamic Memory Allocation

Which of the following is not a fundamental type is not present in C but present in C++?

  • int
  • bool
  • void
  • float

We used __________to get user input.

  • a. std::cin
  • b. Cout
  • c. Cin
  • d. std::cout

It is one of the main thing we consider when undergoing Software Development.

  • Integrated Development Environment
  • Operating System
  • Version Control
  • Compilers

A group of related statements are called code blocks.

  • True
  • False

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

  • None of the choices
  • 2,400 bits
  • 9,600 bits
  • 900 bits

It is a keyword that specifies a condition to repeat a block of statements.

  • WHILE ... DO ... LOOP
  • OUTPUT
  • CALL
  • INPUT

Variables store any type of values.

  • True
  • False

This is the minimum value for booldata type.

  • 32,767
  • -32,768
  • 0
  • 65,535
  • 0 (zero)

It is used to itemize the input values of the function.

  • Function
  • Parameter
  • None of the choices
  • Body/Body of the Function

This is a way to organize the development files and configurations in a centralized repository.

  • Operating System
  • Version Control
  • Compilers
  • Integrated Development Environment

All word processing applications can create flowcharts.

  • True
  • False

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

  • Integers
  • Characters
  • Floating-points
  • Booleans

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

  • Compiler
  • Version Control
  • Integrated Development Environment
  • Operating System

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

  • OUTPUT
  • INPUT
  • PROCESS
  • None of the choices

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

  • Constructors
  • Methods
  • Properties
  • Scopes

C++ does not allow array of ________ sizes.

  • a. Singular
  • b. Dynamic
  • c. Implicit Size
  • d. Fixed

Explicit Data Types are also called Variants.

  • True
  • False

What is the equivalence of the pseudocode IF ... THEN ... END in flowcharts?

  • INPUT
  • PROCESS
  • CONDITION
  • OUTPUT

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

  • 2,048 bits
  • 4,096 bits (integral)
  • 4,096 bits
  • 2,048 bits (integral)

True or False: Sorting problems are problems where the values of given array is being arranged in a decremental order.

  • True
  • False

The OUTPUT keyword in pseudocodes ____________________.

  • Displays variables
  • Returns variables
  • Displays a value
  • Returns a value

It is one of the characteristics of technical work items to be distinctive in purpose or aim.

  • Unambiguous
  • Classifiable
  • Concise
  • Specific

It is a keyword used to call user-defined functions

  • IF ... THEN ... ELSE ... END
  • IF ... THEN ... ELSE IF ... THEN ... ELSE ... END
  • CALL
  • IF ... THEN ... END

A form of polymorphism that generally occurs during compile time is called overloading.

  • True
  • False

These are fully-integrated software that contains various features dedicated to software development.

  • Operating System
  • Integrated Development Environment
  • Version Control
  • Compilers

The index declares which element of the array is on being process.

  • True
  • False

C++ Programming Language was designed by _______________.

  • Bjarne Stroustrupe
  • Barne Stroustrup
  • Barne Stroustrupe
  • Bjarne Stroustrup

This is the minimum value for unsigned short data type.

  • 0
  • 65,535
  • -32,768
  • 32,767
  • 0 (zero)

The Default Statement is used when the execution of the case statement fails.

  • True
  • False

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

  • Methods
  • Scopes
  • Constructors
  • Properties

What punctuation is used to signal the beginning and end of code blocks?

  • END
  • { }
  • BEGIN
  • ->

Local variables are accessible throughout the code.

  • True
  • False

As of 2016, Cloud Computing is not yet supported by C#.

  • True
  • False

These are the set of statements found inside the curly braces.

  • Function Name
  • Return Type
  • Body/Body of Code Blocks
  • Void/Void Return Type

The practice of Object-Oriented Programming came as early as the year 1976.

  • True
  • False

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

  • WinC++
  • MinGW
  • MingGW
  • VC++

Server configurations are dealt using Data Science.

  • True
  • False

This act means to create a different set of statement based on conditions.

  • Conditionals
  • Global variables
  • None of the choices
  • Local Variables

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

  • Solvable
  • Verifiable
  • Goal-oriented
  • Doable in finite steps

Which of the following is the correct identifier?

  • VAR_123
  • None of the above
  • $var_name
  • varname@

This principle extends the features and functionalities of existing classes and interfaces.

  • Overloading
  • Inheritance
  • Polymorphism
  • Overriding

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

  • Access Control
  • Version Control
  • File management
  • Integrated Development Environment

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

  • OUT
  • PREVIEW
  • OUTPUT
  • DISPLAY

The #include is not used for system functions.

  • True
  • False

Given the problem, "Write a program to categorize bills by denomination", is the following work item(s) appropriate?

  • True
  • False

In this discussion, how many principles does OOP have?

  • Two (2)
  • Three (3)
  • One (1)
  • Four (4)

A programming language specialized in simulations is called Simula.

  • True
  • False

A storage of _________________ is called variables.

  • References
  • Values
  • Addresses
  • Pointers

Functions are declared with parameters.

  • True
  • False

True or False: The allocated size for an int data type is 64 bits

  • True
  • False

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

  • Integrated Development Environment
  • Operating System
  • Version Control
  • Compiler

Direction : Choose the best answer. It was made to allow developers in the Open Source Community to publicly share software by Microsoft.

  • GUI
  • CodePlex
  • MinGW
  • Github

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

  • JavaScript
  • Python
  • Java
  • C#

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

  • 1 bit
  • 100 bits
  • 50 bits
  • 500 bits

It is used as an alias as reference to the function.

  • Body/Body of Code Blocks
  • Return Type
  • Void/Void Return Type
  • Function Name

In 3,000 B.C., the Greek Abacus was invented.

  • True
  • False

A conditional is used to perform specific actions depending on the evaluated expressions.

  • True
  • False

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

  • Minimalist GNU for Windows
  • Git
  • Microsoft Windows
  • Visual Studio Code

Function calls can be pointers.

  • True
  • False

It is the phase in looping statements where a variable called counter.

  • Initialization
  • Iteration
  • Looping
  • Condition

It serves as an entry point of any C++ application.

  • int mainegg
  • int entryegg
  • int sumegg
  • int initegg

Parameter is a component of the function which itemizes the input values of the function.

  • True
  • False

It is one of the characteristics of problem solving in computer programming that aims to meet one specific path.

  • Doable in a finite step
  • Verifiable
  • Goal-oriented
  • Solvable

What is the only function all C++ programs must contain?

  • system()
  • start()
  • main()
  • program()

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

  • Pointers
  • None of the choices
  • References
  • Dynamic Memory Allocation

A property that states if a value cannot be changed is called. _____________.

  • a. Immutability
  • b. Definiteness
  • c. Constant
  • d. Persistent

What flowchart symbol is the equivalent for the pseudocode IF ... THEN ... END keyword?

  • Data
  • Preparation
  • Process
  • Conditional

This phase in looping statements that dictates whether the loop should stop or continue.

  • Iteration
  • Condition
  • Looping
  • Initialization

A ______ statement ends the execution of the entire loop.

  • exit
  • end
  • break
  • continue

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

  • None of the choices
  • 9,600 bits
  • 2,400 bits
  • 900 bits

Given the problem, "Write a program to organize paper bills by their corresponding denomination", a possible work item would be "to ask the user for nickname and address".

  • True
  • False

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

  • Solvable
  • Verifiable
  • Doable in finite steps
  • Goal-oriented

A way to organize configurations is called Repository.

  • True
  • False

Pointers retrieve the values assigned to it and stores it to the reference it points to.

  • True
  • False

All _______________ are convertible to ________________.

  • Diagrams, Sumbols
  • Flowcharts, Pseudocodes
  • Symbols, Diagrams
  • Pseudocodes, Flowcharts

It is the programming languages that exhibit the strongest abstraction of its programming schema.

  • Low-level Programming Languages
  • Mid-level Programming Languages
  • High-level Programming Languages
  • None of the choices

It is impossible to create five-dimensional arrays because its resource expensive.

  • True
  • False

A statement wherein the increment/decrement can occur before the other statements of the body is called While statement.

  • True
  • False

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

  • Data Types
  • Variables
  • Constraints
  • Restrictions

The #include statement is used for string input and output of C++.

  • True
  • False

Flowcharts do not support multi-paged configuration.

  • True
  • False

In a series of statements, looping in C++ is not allowed to repeat.

  • True
  • False

Boolean use only one bit.

  • True
  • False

What is the minimum number of flowchart symbols is needed for the following problem (excluding the terminator symbols)?

  • 5
  • 3
  • 1
  • 7

Direction : Choose the best answer. What do you call the distribution of information when stored on a physical disk?

  • None of the choices
  • Component
  • Sectoring
  • All of the choices
  • Fragmentation

This is the act of saying we will be using a variable of a specific data type.

  • Retrieving
  • Declaring
  • None of the choices
  • Assigning

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

  • Selections
  • Loops
  • Functions
  • Conditionals

Is the given looping statement syntactically correct? while(1);

  • True
  • False

This special variable manages the flow of the loop.

  • Counter
  • Increment/Decrement
  • Condition
  • Body

The abstraction principle ensures that only the necessary methods are presented outside of the current class.

  • True
  • False

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

  • Concise
  • Classifiable as INPUT, PROCESS, or OUTPUT
  • Unambiguous
  • Specific

Given the following work item(s): "To ask user for basic salary" "To ask user for total deductions" The most probable problem being addressed is "write a program to determine interest rate."

  • True
  • False

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

  • None of the choices
  • While
  • For
  • Do While

For Loops is a statement in C++ where the body phases occur within the parenthesis of the statement.

  • True
  • False

Implicit Data Types can contain either integer or character.

  • True
  • False

How many components build up the phases that a looping statement need to undergo internally?

  • Three (3)
  • Five (5)
  • Four (4)
  • One (1)

This is the minimum value for signed shortdata type.

  • 32,767
  • 0
  • -32,768
  • 65,535

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

  • After
  • Before
  • Outside
  • Inside

In the discussion, what is the allocated size for a char data type?

  • 8 bits
  • 32 bits
  • 1 bit
  • 64 bits

There are _______ scenarios per decision symbol in flowcharts.

  • One/1
  • Zero/0
  • Two/2
  • Three/3

Data Types limit the naming convention in variables.

  • True
  • False

Low-level programming languages are the easiest to manage of all the categories of programming languages.

  • True
  • False

It is a specific device running a specific operating system.

  • Platforms
  • Utilities
  • Software
  • Peripherals

Body is the phase in looping where it dictates whether the loop will start or continue.

  • True
  • False

This code block can adopt input from another code block.

  • Parameter
  • Function
  • Body/Body of the Function
  • None of the choices

It is a data type where the function shall return as its execution.

  • Body/Body of Code Blocks
  • Function Name
  • Void/Void Return Type
  • Return Type

_______________ are created using word-processing applications.

  • Flowcharts
  • Source Codes
  • Development Projects
  • Pseudocodes

Direction : Choose the best answer. It is made using Native Windows Application.

  • Github
  • GUI
  • IDE
  • MinGW

It repeats a series of statement that aim to reach a certain condition.

  • Initialization
  • Iteration
  • Looping
  • Condition

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

  • Scopes
  • Methods
  • Properties
  • Constructors

Which operators have lower precedence to relational and arithmetic operators in c++ ?

  • Relational
  • Conditional
  • Logical
  • Boolean

It is a phase in looping where the statements inside the loop are executed.

  • Condition
  • Counter
  • Increment/Decrement
  • Body

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

  • True
  • False

Structures are part of Referenced Data Types.

  • True
  • False

One possible application of Embedded Systems Development is in Home Automation.

  • True
  • False

The practical result involving more than one programming language is called __________________.

  • Programming
  • Development
  • Multi-tasking
  • Coding

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

  • OUTPUT
  • PROCESS
  • None of the choices
  • INPUT

What will be the result of the following statement? int b[2] = { 1, 2 }; cout << b[2];

  • The statement will induce integer overflow.
  • The statement will induce array out of index.
  • The statement has an incorrect syntax.
  • The statement will run correctly.

Process is an instance that indicates a specific action done in the ________________ activity.

  • Current
  • Future
  • Previous
  • Succeeding

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

  • DATA
  • PROCESS
  • APPEND
  • SET

References are used in function's parameters that store addresses in the memory?

  • True
  • False

Anonymous Variables are labeled by the Computer.

  • True
  • False

It is a method which enables the retrieval of values hidden by scopes.

  • Accessors
  • Encapsulation
  • Abstraction
  • Mutators

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

  • For
  • While
  • Do While
  • None of the choices

Does C++ allow array of dynamic sizes?

  • True
  • False

These are the only data type to handle textual values.

  • Floats
  • Doubles
  • Integers
  • Characters

The main purpose of mutators is to store values to our hidden properties.

  • True
  • False

What is the correct value to return to the operating system upon the successful completion of a program?

  • Programs do not return a value
  • -1
  • 0
  • 1
  • 0 (zero)

Statement wherein it terminates the execution of the current iteration is called Break Statement.

  • True
  • False

Every variable should be separated by ___ separator.

  • Dot
  • Comma
  • Colon
  • Semicolon

Function parameters are pointer.

  • True
  • False

True or False: Function is used as an alias as reference to the function.

  • True
  • False

It is a symbol used to connect parts of the flowcharts from different pages.

  • Off-page Connector
  • Decision
  • Process
  • Data

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

  • 0
  • None of the choices
  • 255
  • -255
  • 0 (zero)

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

  • Extensions
  • Explorer
  • Editor
  • Minimap

It is one of the characteristics of technical work item that deals with the simplicity of the statement.

  • Classifiable
  • None of the choices
  • Concise
  • Unambiguous

Which of the following is the correct syntax to print the message in C++ language?

  • cout <<"Hello world!";
  • Cout <<"Hello world!;
  • Cout << Hello world! ;
  • None of the above

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

  • Increment/Decrement
  • Code Block
  • Body
  • Parameter

References are ____________ variables.

  • Constant
  • Address
  • Actual Value
  • Parameters

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

  • True
  • False

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

  • Roberts Griesemer
  • Robert Griesemere
  • Ken Thompson
  • Rob Pikes

Which of the following is called insertion/put to operator?

  • <<
  • >
  • <
  • >>

Some word processing applications can create _______________ and pseudocodes.

  • Flowcharts
  • Source Codes
  • Databases
  • Development Projects

This is the minimum value for unsigned long data type.

  • -9,223,372,036,854,775,808
  • 0
  • -9,223,372,036,854,775,806
  • -9,223,372,036,854,775,807
  • 0 (zero)

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

  • 4,096 bits (integral)
  • 2,048 bits
  • 2,048 bits (integral)
  • 4,096 bits

Aside from machine languages, these are programming languages that exhibit the weakest abstraction of all the programming languages.

  • None of the choices
  • Mid-level Programming Languages
  • High-level Programming Languages
  • Low-level Programming Languages

One cycle of repetition using loops is called an iteration.

  • True
  • False

Direction : Choose the best answer. Which language ranked Top 5 of the most used languages in GitHub as of 2016?

  • Ruby
  • C++
  • C
  • C#
  • PHP

______________ variables are bound to only one type of values.

  • Implicit Constant
  • Implicit
  • Reference-Type
  • Explicit

An application is made to run for platforms.

  • True
  • False

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

  • Descriptor
  • Pseudocode
  • Flowchart
  • Enumeration

Float can store up to -9.10 x 1030.

  • True
  • False

A statement wherein the used is to terminates the execution of the entire loop is called Continue statement.

  • True
  • False

There exists a multi-paged pseudocode.

  • True
  • False

Given the following work item(s): "To ask user for age" "To ask user for item price" The most probable problem being addressed is "write a program to determine the discounted price of an item given the item price and age as entered by the user."

  • True
  • False

The ____________ serves as an entry point of any C++ application.

  • a. EXIT_SUCESS
  • b. int main()
  • c. using namespace std;
  • d. #include<iostream>

This allow you to revert and secure copies of changes that you will commit to the repository.

  • Version Control
  • Operating System
  • Integrated Development Environment
  • Compilers

Variables are container objects in C++ that can be applied with references.

  • True
  • False

This is the act of storing values to variables.

  • Declaring
  • Assigning
  • None of the choices
  • Retrieving

It is a representation of tangible and intangible materials in Object-Oriented Programming.

  • Objects
  • Header Files
  • Object-Oriented Programming
  • Class

_________________ is a graphical representation that shows a series of actions in computer programming.

  • UML
  • Diagrams
  • Flowchart
  • Pseudocode

A symbol used to identify which of the possible approaches will be taken based on the conditions called _____________.

  • Data
  • If
  • Initialization
  • Decision

These are undeclared variables used by the developer.

  • Explicit Variables
  • Implicit Variables
  • Anonymous Variables
  • None of the choices

References are non-constant containers that may only be assigned a value once.

  • True
  • False

It is a conditional that compares one specific variable with a set of constants.

  • Switch
  • Else
  • If-Else
  • If-Switch

A series of statement repeated when a specific condition is met is called looping.

  • True
  • False

A mutators are assigned to enable the assignment of values to our properties hidden by scopes.

  • True
  • False

It is an open source cross-platform IDE that supports a series of programming language.

  • Minimalist GN for Windows
  • Visual Studio Code
  • Code Blocks
  • Microsoft Windows

In Low-level programming languages, developers are given indirect access to the memory of the computer, particularly the random-access memory.

  • True
  • False

The _________ programming language is mainly used by OSX and iOS.

  • Shell
  • Objective-C
  • C++
  • Java

___________ variable remain in memory unit the program ends :

  • Local
  • Area
  • Reference
  • Global

This statement is used to perform different actions per its condition.

  • Else
  • Switch
  • If-Switch
  • If-Else

All pseudocodes are convertible to flowcharts.

  • True
  • False

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

  • Code Block
  • Function
  • Conditional
  • Statements

__________________ allows developer to support scenarios in the application.

  • Conditionals
  • Compilation
  • Data
  • Variables

There are seven programming languages that are categorized in terms of complexity.

  • True
  • False

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

  • for
  • do-while
  • while
  • do-until

The top most terminator uses ___________ arrow.

  • In-going
  • Out-going
  • Right-going
  • Left-going

True or False: Parameter code block can adopt input from another code block.

  • True
  • False

A form of polymorphism where it occurs during a runtime is called overriding.

  • True
  • False

Suppose the following code were executed. What would be the value of z?

  • 7
  • 4
  • 20
  • 10

It is one of the characteristics of problem solving in computer programming that deals with assessing the validity of the solutions.

  • Verifiable
  • Goal-oriented
  • Doable in a finite step
  • Solvable

The two (2) pseudocode keywords that are the equivalent for the Data symbol in flowcharts are INPUT and OUTPUT.

  • True
  • False

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

  • Anonymous Variables
  • Explicit Variables
  • None of the choices
  • Implicit Variables

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

  • If ... Else If ... Else
  • If
  • If ... Else
  • Switch

The main function serves as an entry point of any C++ application.

  • True
  • False

________ is defined as part of an entire code.

  • a. Function
  • b. Exception
  • c. Code Block
  • d. Snippet
  • Marks for this submission: 1.00/1.00. Accounting for previous tries, this gives 0.67/1.00.

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

  • True
  • False

These are data types that are objective by nature.

  • Explicit Data Types
  • Referenced Data Types
  • Implicit Data Types
  • Primitive Data Types

It is a separate C++ file which contains supplementary codes for applications.

  • Objects
  • Class
  • Header Files
  • Object-Oriented Programming

Flowcharts can start with other symbol aside from a START terminator.

  • True
  • False

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

  • Minimap
  • Editor
  • Extensions
  • Explorer

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

  • Function Name
  • Parameter
  • Body of the Function
  • Return Type

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

  • K-Shell
  • Korn Shell
  • Kourne Shell
  • KiShell

It is a variant of the IF-THEN-END keywords wherein there can be more than one condition, and a separate block if none of the conditions specified matched.

  • IF ... THEN ... ELSE IF ... THEN ... ELSE ... END
  • IF ... THEN ... END
  • CALL
  • IF ... THEN ... ELSE ... END

It is a symbol in flowcharting used to retrieve value from the user.

  • Preparation
  • Data
  • Terminator
  • Process

Iteration is the special variable that controls the flow of loops.

  • True
  • False

What will be the result of the following statement? shortc[1] = { 32768 };

  • The statement has an incorrect syntax.
  • The statement will run correctly.
  • The statement will induce integer overflow.
  • The statement will induce array out of index.

An array can contain only one value of data type.

  • True
  • False

It is a special variable wherein set of initial value are place.

  • Condition
  • Counter
  • Increment/Decrement
  • Body

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

  • DECLARE ...
  • INPUT ...
  • APPEND ... TO ...
  • SET ... AS ...

This is the maximum value for int data type.

  • -2,147,483,648
  • -2,147,483,647
  • 2,147,483,648
  • 2,147,483,647

It is a keyword or group of keywords in writing a pseudocode which only executes contained statements if all the conditions are met.

  • IF ... THEN ... ELSE IF ... THEN ... ELSE ... END
  • CALL
  • IF ... THEN ... END
  • IF ... THEN ... ELSE ... END

A condition where it evaluated right before the body executes is called While Loop.

  • True
  • False

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

  • Version Control
  • Integrated Development Environment
  • Operating System
  • Compiler

The act where it is declared outside of the function.

  • Global variables
  • Conditionals
  • None of the choices
  • Local Variables

One characteristic of Technical Work Items is Classifiable - being able to distinctively classify the purpose or aim.

  • True
  • False

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

  • Equivalence
  • Casting
  • Unboxing
  • Translation

References are used to point to multiple addresses in the memory.

  • True
  • False

What is the equivalence of the flowchart DISPLAY in pseudocodes?

  • CONDITION
  • INPUT
  • PROCESS
  • OUTPUT

It is a keyword that accepts values from the user.

  • OUTPUT
  • CALL
  • WHILE ... DO ... LOOP
  • INPUT

__________________ is defined as a systematic approach to solve the main problem.

  • Development
  • Work Items
  • Problem Solving
  • Sequential Analysis

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

  • If
  • If ... Else If ... Else
  • If ... Else
  • Switch

A typical initialization of a counter is set to 0.

  • True
  • False

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

  • IF
  • SWITCH
  • CALL
  • DECIDE

The act where it is declared inside of a specific code block and can only be access inside of the said code block.

  • Conditionals
  • None of the choices
  • Local Variables
  • Global variables

Flowcharts are created using spreadsheet applications.

  • True
  • False

The pseudocode for accepting user values is called INPUT.

  • True
  • False

In C++, the abstract representation of objects is called class.

  • True
  • False

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

  • Body of the Function
  • Return Type
  • Function Name
  • Parameter

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

  • Git
  • Microsoft Windows
  • Minimalist GNU for Windows
  • Visual Studio Code

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

  • Function Name
  • Body of the Function
  • Return Type
  • Parameter

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

  • Boolean
  • Character
  • Integer
  • Floating-point

The _____________ header file is used for string input with no space on it in C++.

  • a. #include <cstring>
  • b. #include <stdio>
  • c. #include <cstdlib>
  • d. #include <iostream>

This is the minimum value for intdata type.

  • 2,147,483,647
  • -2,147,483,648
  • -2,147,483,647
  • 2,147,483,648

Switch statement is a conditional that compares one specific variable with a set of constants.

  • True
  • False

The fragmentation of information when stored on a logical disk is called Sectoring.

  • True
  • False

Direction : True or False Majority of the features available to mid-level programming languages are hidden in the background and are usually taken for granted

  • True
  • False

Which function is used to read a single character from the console in C++?

  • read(ch)
  • getline(ch)
  • cin.get(ch)
  • scanf(ch)

These are declared variables.

  • Implicit Data Types
  • Anonymous Variables
  • Explicit Variables
  • Explicit Data Types

What is needed to be downloaded for the convenience of users working different Microsoft Windows Architecture?

  • GitHub
  • Minimalist GNU for Windows
  • Visual Studio Code
  • Microsoft Windows

Which function is used to write a single character to console in C++?

  • cout.put(ch)
  • printf(ch)
  • cout.putline(ch)
  • write(ch)

It is a programming language specialized in simulations.

  • Sims
  • Perl
  • DynaBook
  • Simula

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

  • INPUT
  • None of the choices
  • PROCESS
  • OUTPUT

The characteristic of Technical Work Items that deals with clarity is called Clear.

  • True
  • False

It informs the application that the function shall not return any data.

  • Body/Body of Code Blocks
  • Return Type
  • Function Name
  • Void/Void Return Type

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

  • True
  • False

What is a constant that contains a single character enclosed within single quotes in c++?

  • Floating point
  • Fixed
  • Numeric
  • Character

This code block is the entry point of C++ applications.

  • return EXIT_SUCCESS;
  • int mainegg
  • using namespace std;
  • #include<iostream>

Given the problem, "Write a program to calculate the BMI of the user", is the following work item(s) appropriate? "To ask the user for blood type"

  • True
  • False

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

  • CodePlex
  • Code
  • Git
  • GitHub

Mid-level Programming Languages exhibit _______ abstraction.

  • Transmutable
  • Direct
  • Mutable
  • Strong

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

  • Parameter
  • Function Name
  • Return Type
  • Body of the Function

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

  • Shell
  • PowerShell
  • Objective-C
  • Bash Script

Data is a symbol used to compare two discrete values.

  • True
  • False

All flowcharts are convertible to pseudocodes.

  • True
  • False

Database applications can create pseudocodes.

  • True
  • False

Pointers are containers that are assigned a non-address value.

  • True
  • False

DynaBuk is the first computer created using Object-Oriented Programming?

  • True
  • False

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

  • True
  • False

It is one of the characteristics of problem solving in computer programming that deals with the feasibility of the problem in terms of time.

  • Doable in a finite step
  • Verifiable
  • Goal-oriented
  • Solvable

Given the work item below, what is its most probable problem that it answers? "To display appendFirstLastname"

  • "Write a program that displays the firstname"
  • "Write a program to display the complete name of the user"
  • "Write a program to estimate the lifespan of the user"
  • "Write a program to display the age of the user"

The programming languages that showcase user-friendly implementations and structures are the mid-level programming languages.

  • True
  • False

The original C is a low-level programming language.

  • True
  • False

It is one of the characteristics of technical work item that deals with process statements.

  • Concise
  • Unambiguous
  • None of the choices
  • Classifiable

Given the following work items: (a) "To ask user for age" and (b) "To ask user for item price", the problem being addressed is about prices and interests.

  • True
  • False

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

  • True
  • False

Local Variables are variables declared outside of "int main egg" function and can only be accessed outside.

  • True
  • False

Machine Languages are Low-level Programming Languages.

  • True
  • False

We used FOR loop to get user output.

  • True
  • False

It is located within a curly brackets/braces; opened by “{“, and closed by “}”.

  • Visual Studio Code
  • Minimalist GN for Windows
  • Code Blocks
  • Microsoft Windows

The Case Statement is part of IF Statement.

  • True
  • False

These are temporary storage of data.

  • Data Types
  • Variables
  • None of the choices
  • Both Variables and Data Types

_______________ programming languages allows developer to focus on the logic of the application they are developing.

  • Machine-code
  • Low-level
  • Mid-level
  • High-level

Conditions within a while loop are evaluated after the execution.

  • True
  • False

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

  • None of the choices
  • 2,400 bits
  • 900 bits
  • 9,600 bits

It limits the access to the properties and methods under it to the class itself and to all classes that inherit it is called private scope.

  • True
  • False

These are limits placed to handle specific data.

  • Data Types
  • Both Variables and Data Types
  • None of the choices
  • Variables

Bjourne Stroustrup designed the programming language.

  • True
  • False

Given the problem below, that is the most probable last work item of the solution? "Write a program that displays the section of the user"

  • "To calculate the birth year"
  • "To display the age"
  • "To display section"
  • "To enter the username"

True or False: The allocated size if a chartype is 8 bits.

  • True
  • False

Condition is the phase in looping statement where the statements inside the loop are executed.

  • True
  • False

In sorting problems, it is not allowed to arrange numerical values in ascending forms.

  • True
  • False

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

  • std::cin
  • std::cout
  • cin
  • Cout

Initialization used a special variable called count.

  • True
  • False

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

  • for
  • do-until
  • do-while
  • while

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

  • PROCESS
  • OUTPUT
  • INPUT
  • None of the choices

Implicit Variables are declared within the context of the application.

  • True
  • False

The _________ responsible for sending data to computers are called Input Devices.

  • Software
  • Development
  • Hardware
  • Configuration

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

  • Signed Int
  • Signed Short
  • Unsigned Short
  • Unsigned Int

This tool varies mainly on how they support internal libraries, up-to-date third-party libraries and code optimization.

  • Integrated Development Environment
  • Compilers
  • Operating System
  • Version Control

Given the problem below, what is the most probable last work item of the solution? "Write a program to calculate the age of the user based on his birth year"

  • "To display the firstname"
  • "To display the lastname"
  • "To display the birth month"
  • "To display age"

A sector of array which contains a _________ is called element.

  • a. Variable name
  • b. Array Size
  • c. Data Type
  • d. Value

What is needed to be verified correct and accurate before creating a repository?

  • Disk Space
  • Permissions
  • Fields
  • Administrative Rights

It is one of the characteristics of technical work item that deals with being clear in nature.

  • Unambiguous
  • Classifiable
  • Concise
  • None of the choices

It is equivalent to one cycle of repetition.

  • Initialization
  • Iteration
  • Condition
  • Looping

It is a symbol of Flowcharting used to initialize something.

  • Process
  • Decision
  • Data
  • Preparation

Is for statement a range-based?

  • True
  • False

The counters are separated by open and close parenthesis.

  • True
  • False

Smalltalk was the Object-Oriented Programming Language built for Dynabook.

  • True
  • False

It is a group of statements contained by a code block.

  • Body/Body of Code Blocks
  • Return Type
  • Void/Void Return Type
  • Function Name

True or False: The int main()function serves as an entry point of any C++ application.

  • True
  • False

Which one of the following represents the tab?

  • r
  • n
  • None of the above
  • \t

A copy of the value is the result of retrieving a value from a variable?

  • True
  • False

An array can contain ___________ values of the same data type.

  • a. Zero or One
  • b. Zero
  • c. One or Two
  • d. One or more

Long can store up to 65,535 in value.

  • True
  • False

__________ statement is used in undefined conditional expressions.

  • end if
  • else
  • if
  • else if

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

  • Extranet
  • Intranet
  • World Wide Web
  • Internet

The one that dictates the maximum value stored by an array is called proportions.

  • True
  • False

What is the minimum number of pseudocode for this problem?

  • 3
  • 1
  • 2
  • 0

The use of the statement "using namespace std;" is to ask permission in C++ that we will use std.

  • True
  • False

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

  • Methods
  • Scopes
  • Constructors
  • Properties

This property states that the value cannot be changed.

  • Configurability
  • Immutability
  • Permutability
  • Maintainability

Low-level Programming Languages exhibit the strongest abstraction of its programming schema.

  • True
  • False

___________ is the result of incorrect action committed unexpectedly.

  • a. Runtime Error
  • b. Exception
  • c. Interruption
  • d. Compile Error

These are unnamed variables.

  • Implicit Data Types
  • Anonymous Variables
  • Explicit Variables
  • Explicit Data Types

Converting long to int introduces naming problems.

  • True
  • False

Client computers that sends requests to a ________ is processed in transmissions.

  • Server
  • Domain
  • Protocol
  • Client

A __________ can call several other functions.

  • a. Reference
  • b. Pointer
  • c. Procedure
  • d. Variable

Classes are part of ____________________ Data Types.

  • Object
  • Primitive
  • Dereferenced
  • Referenced

Header files are separate C++ files which contain supplementary codes for the application.

  • True
  • False

These are the two types of conditionals in C++.

  • If-Else
  • Else
  • Switch
  • If-Switch

Accessor is a method which enables the retrieval of values hidden by scopes.

  • True
  • False

It is phase in looping where the counter in increasing or decreasing.

  • Condition
  • Body
  • Counter
  • Increment/Decrement

It is a keyword that calls user-defined functions.

  • OUTPUT
  • CALL
  • WHILE ... DO ... LOOP
  • INPUT

Variables can go away without declaring the data types.

  • True
  • False

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

  • for
  • do-while
  • do-until
  • while

-9 is treated as true.

  • True
  • False

The use of breaks is to prevent next conditions to be executed causing the switch statement to be executes.

  • True
  • False

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

  • 2,048 bits (integral)
  • 4,096 bits (integral)
  • 2,048 bits
  • 4,096 bits

This method's main purpose is to store values in hidden properties.

  • Encapsulation
  • Abstraction
  • Mutators
  • Accessors

True or False: The body of the function is a group of statements contained by a code block.

  • True
  • False

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

  • Same-page Connector
  • In-page Connector
  • Data Connector
  • On-page Connector

This command prompt-like window that will help build fundamentals in computer programming.

  • Visual Studio
  • Graphical User Interface
  • Console
  • Git

What is the first computer created using Object-Oriented Programming?

  • DynaBook
  • Sims
  • Perl
  • Simula

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

  • Graphics Process Unit
  • Graphical Processing Unit
  • Graphical Process Unit
  • Graphics Processing Unit

It is assigned with the pointers which are done by appending an ampersand, the address of operator, before the variable name.

  • Address of the variable
  • Address of the pointer
  • Address of the reference
  • None of the choices

Explicit Variables are declared outside the context of the application.

  • True
  • False

Technical Work Items is an ___________ step prior creating flowcharts.

  • Required
  • Optional
  • Pre-requisite
  • Post-requisite

In what year does the practice of Object-Oriented Programming started?

  • 1967
  • 1968
  • None of the choices
  • 1969

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

  • True
  • False

_______________ is the phase in looping statements that are evaluated.

  • Initialization
  • Increment/Decrement
  • Condition
  • Body

Direction : Choose the best answer. What is needed to be set up before adding a license?

  • Gitlgnore
  • Console
  • CodePlex
  • Github

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

  • for
  • while
  • do-while
  • do-until

The phase in loops where the counter is changed is called Variation.

  • True
  • False

These are also called Variants.

  • Explicit Data Types
  • Anonymous Variables
  • Explicit Variables
  • Implicit Data Types

It is a symbol with two and only two out-going paths possible.

  • Decision
  • Process
  • Data
  • Off-page Connector

It is one of the characteristics of technical work items to be written direct to the point.

  • Concise
  • Unambiguous
  • Specific
  • Classifiable

These are undeclared variables that are used by the computer.

  • Implicit Variables
  • None of the choices
  • Explicit Variables
  • Anonymous Variables

Unnamed variables are accessible using the unmarked symbol.

  • True
  • False

Constructor is created to initialize operations for the class upon declaration.

  • True
  • False

What is a constant that contains a single character enclosed within single quotes?

  • Fixed
  • Numeric
  • Character
  • Floating Point

True or False: string is an array of text.

  • True
  • False

Implicit Data Types can store _____ type of values.

  • Implicit
  • Any
  • Explicit
  • Selected

Conditionals do not let us to expand the capabilities of our applications through scenarios.

  • True
  • False

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

  • Android Studio
  • Xamarin
  • Visual Studio Code
  • Mono

Signed, unsigned, long and short are some of the ___

  • Data
  • Void
  • Modifiers
  • Derived Data

In the discussion, the allocated size for a double data type is 8 bits.

  • True
  • False

It is a symbol in flowcharting used to initialize values and routines.

  • Process
  • Data
  • Preparation
  • Terminator

Variable names must begin with ___

  • Number
  • Letter
  • #
  • $

A variable is used to store permanent value in a program.

  • True
  • False

It is a separate code block that performs a specific task.

  • Body/Body of the Function
  • None of the choices
  • Parameter
  • Function

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

  • PROCESS
  • DATA
  • SET
  • APPEND

Suppose that the code segment in the box below were executed. What would be the value of z?

  • 4
  • 2
  • 5
  • 3

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

  • 3,840 bits
  • Insufficient Data
  • None of the choices
  • 30,720 bits

A function shall return as its final execution is called reoccurrence data type.

  • True
  • False

The syntax for the parameter is dataType variableName.

  • True
  • False

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

  • Optional
  • Explicit
  • Implicit
  • Random

Anonymous Variables are labeled by the _____________.

  • User
  • Computer
  • Microcontroller
  • Developer

There are ______ terminator symbols per flowchart.

  • Zero/0
  • Three/3
  • Two/2
  • One/1

Unnamed variables are called Anonymous Variables.

  • True
  • False

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

  • Microsoft Windows
  • Visual Studio Code
  • GitHub
  • Minimalist GNU for Windows

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

  • else
  • if
  • else if
  • switch

What is the output from each code segment below?

  • 23,23
  • 1,0
  • 23,1
  • 23,0

In the discussion, the allocated size for a double data type is___________.

  • a. 64 bits (floating point)
  • b. 32 bits (floating point)
  • c. 32 bits (integer)
  • d. 64 bits (integer)

It is one of the characteristics of technical work item that deals with pseudocodes.

  • Classifiable
  • Unambiguous
  • Concise
  • None of the choices

An application can process, _______ and be developed within an operating system.

  • Write
  • Console
  • View
  • Run

A statement where the body is executed first before the condition is evaluated is called do while statement.

  • True
  • False

#include is the act of a function saying everything inside is belongs to it.

  • True
  • False

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

  • Primitive Data Types
  • Implicit Data Types
  • Referenced Data Types
  • Explicit Data Types

What is the size of a Boolean variable in C++?

  • 4 bytes
  • 2 bytes
  • 1 byte
  • 1 bit

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

  • If ... Else
  • If
  • Switch
  • If ... Else If ... Else

It is a symbol used to indicate a specific action to be done.

  • Process
  • Off-page Connector
  • Decision
  • Data

A constructor is created to initialize several properties or perform operations for the class upon declaration.

  • True
  • False

What will be the result of the following statement? int a[2] = { 1, 2 };

  • The statement will induce array out of index.
  • The statement will run correctly.
  • The statement will induce integer overflow.
  • The statement has an incorrect syntax.

It is the characteristic of Problem Solving that focuses on the practicality to provide a solution that takes a finite number of resources.

  • Solvable
  • Doable in finite steps
  • Verifiable
  • Goal-oriented

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

  • Visual Studio Professional
  • Visual Studio Code
  • Visual Studio Enterprise
  • Visual Studio 2017

The characteristic of Technical Work Items that deal with consistency is called Nonce.

  • True
  • False

There are at least ______________ arrows in Decision Symbols of flowcharts.

  • Four/4
  • Two/2
  • Three/3
  • One/1

Is it possible to create a nested conditional depending on the need?

  • True
  • False

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

  • Integrated Development Environment
  • Version Control
  • Compiler
  • Operating System

The first personal computer created using Object-Oriented Programming is PC DOS by IBM.

  • True
  • False

This is the act of getting stored values from variables.

  • Assigning
  • Retrieving
  • None of the choices
  • Declaring

Global variables are variables declared inside of "int main egg" functions.

  • True
  • False

We use ___________________ to test the system path if defined.

  • Command Prompt
  • WinVer
  • Environment
  • Shell

It is a symbol used to set values.

  • Process
  • Decision
  • Off-page Connector
  • Data

The symbol used to set or retrieve values is called ___________.

  • Accept
  • Input
  • Data
  • Output

Compilers build the application from source codes.

  • True
  • False

Fundamentals of computer programming are learned easily through the use of GUI.

  • True
  • False

Which of the following is the correct difference between cin and scanf()?

  • cin is a stream object whereas scanf() is a function
  • scanf() is a stream object whereas cin is a function
  • both are the same
  • cin is used for printing whereas scanf() is used for reading input

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

  • 3,000 A.D.
  • 300 A.D.
  • 3,000 B.C.
  • 300 B.C.

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

  • Properties
  • Scopes
  • Methods
  • Constructors

It focuses on Native libraries hence even its Graphical User Interface (GUI) is made using Native Windows Application.

  • Minimalist GNU for Windows
  • GitHub
  • Visual Studio Code
  • Microsoft Windows

It is one of the characteristics of problem solving where the practicality of the solution is counterchecked against a range of test data.

  • Verifiable
  • Quantifiable
  • Doable in finite steps
  • Solvable

When determining the gender of a person, the most practical data type to use is Boolean or Integer Values; even when displaying the value directly,without helping texts, to the user.

  • True
  • False

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

  • 4,096 bits
  • 4,096 bits (integral)
  • 2,048 bits
  • 2,048 bits (integral)

What is the minimum number of pseudocode keywords is needed for the following problem (excluding the terminator symbols)??

  • 1
  • 7
  • 3
  • 5

It is one of the characteristics of problem solving where the problem can be processed by the computer given a specific conversion scale.

  • Verifiable
  • Solvable
  • Doable in finite steps
  • Quantifiable

This integer dictates what element of array is being process.

  • Array
  • Index
  • None of the choices
  • Size

A variation in the conditions keyword is IF ... THEN ... ELSE ... WEND.

  • True
  • False

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

  • If ... Else
  • Switch
  • If ... Else If ... Else
  • If

What flowchart symbol is the equivalent for the pseudocode SET ... TO keyword?

  • Data
  • Conditional
  • Preparation
  • Process

This statement is used in undefined conditional expressions.

  • Else
  • If-Else
  • If-Switch
  • Switch

It is one of the characteristics of technical work items to be written shortly.

  • Specific
  • Concise
  • Classifiable
  • Unambiguous

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

  • Unambiguous
  • Classifiable as INPUT, PROCESS, or OUTPUT
  • Concise
  • Specific

True or False: Descending is the usual arrangement for numerical values.

  • True
  • False

Is the given looping statement correct? for(i=5; i>0; i--){ cout << endl; }

  • True
  • False

Terminator is always the _________ symbol that can be found at the top-most of all flowcharts.

  • First
  • Second to the first
  • Last
  • Second to the last

It dictates the maximum number of values stored by an array.

  • Array
  • Index
  • Size
  • None of the choices

This is the minimum value for long data type.

  • 0
  • -9,223,372,036,854,775,808
  • -9,223,372,036,854,775,806
  • -9,223,372,036,854,775,807

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

  • Do While
  • For
  • While
  • None of the choices

C++ is a ________ program that runs in a DOS window :

  • Cast Application
  • Source Application
  • Console Application
  • ALgorithm

Variables defined within a code block is called ____________ variables.

  • Local
  • Illegal
  • Global
  • Initialized

This is the maximum value for booldata type.

  • 0
  • 1
  • -1
  • 2

Conditional means to set a different set of statements based on conditions.

  • True
  • False

True or False: Parameter is used to itemize the input values of the function.

  • True
  • False

The _________________ phase decreases the value of the counter.

  • Increment
  • Demerit
  • Decrement
  • Merit

____________ are also known as procedures.

  • a. Fields
  • b. Functions
  • c. Properties
  • d. Anonymous Variables

The original C is a ____________ programming language.

  • Machine-code
  • Low-level
  • Mid-level
  • High-level

It is a programming centered in the use of objects.

  • Objects
  • Class
  • Header Files
  • Object-Oriented Programming

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

  • PROCESS
  • OUTPUT
  • INPUT
  • None of the choices

These are the strong-typed data types.

  • Explicit Variables
  • Implicit Data Types
  • Anonymous Variables
  • Explicit Data Types

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

  • References
  • Dynamic Memory Allocation
  • Pointers
  • None of the choices
Comments
Buy Me Coffee

To keep up this site, we need your assistance. A little gift will help us alot.

Donate

- The more you give the more you receive.

Related Subject

Object Oriented Programming Laboratory

Mobile Programming

Network Security

Mobile Application Design and Development 2

Mobile Application Design and Development

Management Information Systems

Managing Information and Technology

Mail and Web Services

Living in the Information Technology Era

Information Technology Capstone Project

Information Technology Practicum

Intro to Hardware Description Language

Introduction to Multimedia

Introduction to Information Systems

Introduction to Human Computer

Introduction to Computing

Internet Marketing and Entrepreneurship

Internet Technology in Real Estate

Integrative Programming and Technology 2

Information Assurance and Security 2

Information Systems Operations and Maintenance

Information Security and Management

Information Assurance and Security 3

Fundamentals of Investigation and Intelligence

Fundamentals of Database System

Digital Imaging

Database Management System

Data Structures and Algorithms

Data Communications and Networking 2

Data Communications and Networking

Cyber Security: Theories and Practice

Chemistry for Engineers

Computer Fundamentals

Auditing and Assurance Concepts and Applications

Animation Project

3D Game Art Development

Load Testing

Software Engineering

System Administration and Maintenance

Integrative Programming and Technology

Data Communications and Networking 4

Current Trends and Issues

Linux Administration

Applied Business Tools and Technologies

Systems Integration and Architecture

Application Lifecycle Management

Data Communications and Networking 3

Information Assurance and Security

Principles of Operating System and its Application

Programming vs Coding

Software Development

Medical Office Administration

Medical Assistant

Quantum Computers

Origin of Women in Computing

Next Generation Kindle

Apple M4 Macs

Apple Intelligence: Transforming Our Digital Experience

Quality Assurance Testing

Driver Device

Computer System

Computer Support Technician

Computer Science

Computer Information Systems

Desktop Publishing

Programmable Logic Controller

Modeling and Simulation

Mike Brown: Basketball Coaching

The Importance of STEM Education

The Freedom Factory: Innovation


Show All Subject
Affiliate Links

Shopee Cashback Voucher

Temu $0 Shipping Fee

Amazon 75% Off Discounts