Your browser does not support JavaScript!

Computer Programming 1

Showing 1-75 of 752 answers

________ is defined as part of an entire code.
  • Function
  • Exception
  • Code Block
  • Snippet Correct
________ statement is used to output a string to inform the user about the conditions need.
  • cin
  • std::cout Correct
  • std::cin
  • Cout
_________ values are the values that changed from original to the current value.
  • Processed Correct
  • Singular
  • Transformed
  • Converted
__________ is a component of the function which itemizes the input values of the function.
  • Return Statement
  • Parameter Correct
  • Function Declaration
  • Body
__________ keyword accepts user values.
  • INPUT Correct
__________ statement is used in undefined conditional expressions.
  • end if
  • else Correct
  • if
  • else if
___________ enabled developers to repeat a sequence of statements given the right conditions.
  • Functions
  • Selections
  • Loops Correct
  • Conditionals
___________ is the result of incorrect action committed unexpectedly.
  • Runtime Error
  • Exception Correct
  • Interruption
  • Compile Error
___________ scope limits the access to the properties and methods under it to the class itself and to all classes that inherit them.
  • Virtual
  • Protected Correct
  • Public
  • Private
____________ are also known as procedures.
  • Fields
  • Functions Correct
  • Properties
  • Anonymous Variables
______________ are used to point to multiple addresses in the memory.
  • Pointers Correct
______________ is used to hide the internal working of an application.
  • Polymorphism
  • Abstraction
  • Encapsulation Correct
  • Inheritance
______________ variables are bound to only one type of values.
  • Explicit Correct
_______________ are created using word-processing applications.
  • Flowcharts Correct
_______________ is the phase in looping statements that are evaluated.
  • Increment/Decrement
  • Body
  • Initialization
  • Condition Correct
_______________ programming languages are easiest to work with.
  • High-level Correct
________________ principle ensures that only the necessary methods are presented outside of the current class.
  • Inheritance
  • Encapsulation Correct
  • Abstraction
  • Polymorphism
________________ programming languages exhibit both strong abstraction and access to memory.
  • Low-level
  • Mid-level Correct
  • High-level
  • Machine-code
_________________ is a graphical representation that shows a series of actions in computer programming.
  • Flowchart Correct
__________________ allows developer to support scenarios in the application.
  • Compilation
  • Data
  • Variables
  • Conditionals Correct
__________________ is a looping statement where the body is executed first before the condition is evaluated.
  • do-while Correct
  • while
  • for
  • do-until
__________________ is defined as a systematic approach to solve the main problem.
  • Problem Solving Correct
____________________ are assigned to variables.
  • Actual Value Correct
-9 is treated as TRUE
  • FALSE Correct
"Direction : Choose the best answer. Compared to the rest of the setup, this installation process will take several steps to complete."
  • MinGW Correct
"Direction : Choose the best answer. Considering the low number of files that are processed for small projects this is optional."
  • Version Control Correct
"Direction : Choose the best answer. It is a user-friendly interface and easy navigation operating system."
  • Microsoft Windows Correct
"Direction : Choose the best answer. It is here where we develop and run our software."
  • Operating System Correct
"Direction : Choose the best answer. It is made using Native Windows Application."
  • GUI Correct
"Direction : Choose the best answer. It is needed to be enabled to compile our selected compiled programming language to executables."
  • IDE Correct
"Direction : Choose the best answer. It presents minimalistic approach in presenting tools and libraries necessary to develop application for Microsoft Windows."
  • MinGW Correct
"Direction : Choose the best answer. It was made to allow developers in the Open Source Community to publicly share software by Microsoft."
  • CodePlex Correct
"Direction : Choose the best answer. What domain deals with analytics?"
  • Data Science Correct
"Direction : Choose the best answer. What domain deals with microcontrollers?"
  • Embedded Systems Development Correct
"Direction : Choose the best answer. What domain deals with server configurations?"
  • Back-end Development Correct
"Direction : Choose the best answer. What domain deals with web applications?"
  • Cloud Development Correct
"Direction : Choose the best answer. What is needed to be set up before adding a license?"
  • Gitlgnore Correct
"Direction : Choose the best answer. Which is not a version of Shell?"
  • PSH Correct
"Direction : Choose the best answer. Which of the following is not used in API Development?"
  • HTML Correct
"Direction : Choose the best answer. Which platform do C# not yet support as of 2016?"
  • Automation Correct
"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 Correct
"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 display section" Correct
"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 age" Correct
"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"""
  • FALSE Correct
"Given the problem, ""Write a program to categorize bills by denomination"", is the following work item(s) appropriate? ""To ask the user for nickname"""
  • FALSE Correct
"Given the work item below, what is its most probable problem that it answers? ""To display appendFirstLastname"""
  • "Write a program to display the complete name of the user" Correct
"What is the minimum number of flowchart symbols for this problem? ""Write a program that displays 'Hello World'."""
  • 3 Correct
"What is the minimum number of flowchart symbols is needed for the following problem (excluding the terminator symbols)? ""Write a program to display the quotient of two numbers."""
  • 1 Correct
"What is the minimum number of pseudocode for this problem? ""Write a program that displays 'Hello World'."""
  • 1 Correct
#include is the act of a function saying everything inside is belongs to it.
  • FALSE Correct
A ______ statement ends the execution of the entire loop.
  • break Correct
A _________ storage in the computer that is randomly accessed is called RAM.
  • Temporary Correct
  • Read-only
  • Permanent
  • Mutable
A __________ can call several other functions.
  • Reference
  • Pointer
  • Procedure Correct
  • Variable
A ___________ are assigned to enable the assignment of values to our properties hidden by scopes.
  • Overloading
  • Accessor
  • Mutators Correct
  • Overriding
A _______________ is created to initialize several properties or perform operations for the class upon declaration.
  • Constructor Correct
  • Mutators
  • Destructor
  • Accessors
A characteristic of Problem Solving that focuses on the quantity of test data is called Verifiable.
  • FALSE Correct
A class can contain at least ______ constructor(s).
  • Two
  • One Correct
  • Four
  • Zero
A class cannot contain more than one constructor.
  • FALSE Correct
A computer component that deals with miscellaneous instructions of software is called ____________.
  • Random Access Memory
  • Graphics Processing Unit/GPU
  • Monitor
  • Central Processing Unit/CPU Correct
A condition where it evaluated right before the body executes is called While Loop.
  • TRUE Correct
A conditional is used to perform specific actions depending on the evaluated expressions.
  • TRUE Correct
A constructor is created to initialize several properties or perform operations for the class upon declaration.
  • TRUE Correct
A copy of the value is the result of retrieving a value from a variable?
  • True Correct
  • False
A Decision Symbol is the flowchart equivalent of switch keyword in pseudocode
  • FALSE Correct
A form of polymorphism that generally occurs during compile time is called _______________.
  • Mutators
  • Overloading
  • Overriding Correct
  • Accessor
A form of polymorphism that generally occurs during compile time is called overloading.
  • FALSE Correct
A function can call several other functions.
  • TRUE Correct
A function shall return as its final execution is called reoccurrence data type.
  • TRUE Correct
A group of related statements are called code blocks.
  • TRUE Correct
A mutators are assigned to enable the assignment of values to our properties hidden by scopes.
  • TRUE Correct
A problem wherein the values of given array is being arranged.
  • Descending
  • Counting
  • Ascending
  • Sorting Correct
A programming centered in the use of _____________ is called Object-Oriented Programming.
  • Interfaces
  • Objects Correct
  • Classes
  • Instantiation
A programming centered in the use of objects is called Object-Oriented Program.
  • TRUE Correct
A programming language specialized in simulations is called Simula.
  • TRUE Correct
A programming language that defines an error in a specific action is called exception.
  • TRUE Correct
All courses