Mod 11 Tech + Flashcards
What is the main advantage of using bytecode?
It can run on any computer with a runtime engine
What should be done before starting to code a program?
Decide what the program should do.
What is the result of the expression !True?
False
How is an array and vector different
An array has a fixed size, while a vector can change size dynamically
What does the term “syntax” refer to in computer programming?
The rules for how to write the language.
Which of the following is NOT a programming language?
HTML
What is the main purpose of query languages?
To get information from databases
What is the main purpose of pseudocode?
To describe what the code will do using plain language
What does a diamond shape in a flowchart indicate?
A decision point
What keyword is used in pseudocode to represent a loop with a condition at its beginning?
While
What is a binary executable file?
A file that can be directly executed by the computer’s processor
Why is code written in assembly language more efficient?
It allows direct access to hardware.
What is sequential flow in a program?
Code that runs in the order it is written
Which number type is similar to a float but can store larger and more precise numbers?
Double
What do you put inside the parentheses when using a function?
The arguments or values the function needs to process
What is a container in programming?
A set of values held by an identifier
Which number type would you use for precise financial calculations?
Fixed-point
If condition A is True and condition B is False, what does the OR operation return?
True
Which of the following is an example of a character variable?
‘7’
What happens when the condition in a While loop is no longer met?
The loop stops running.
What is the purpose of adding comments to your code?
To explain what each part of the code does
What is object-oriented programming (OOP)?
A way to model real-world objects in computer code.
LAB
What is debugging?
Fixing mistakes in code
Which Boolean operation returns True only if both conditions are True?
AND
What is the role of a query in a database search?
To search the database and find matching records
Why are interpreted languages slower than compiled languages?
They translate the code into machine language as it runs
What is a runtime engine?
What is branching in computer programming?
A method to execute a different sequence of instructions based on a condition
What is an escape character used for in a string?
To include special characters in the output
Why is understanding the code important for debugging?
To know what each part is supposed to do
Which programming languages support object-oriented programming (OOP)?
C++ and Python
Which type of loop runs a specific number of times?
For loop
LAB
Why is the planning process important in programming?
It ensures a well-though-out program
What is an array?
A special type of variable that holds many values at once
Which of the following is an example of a floating-point number?
8.02
Which of the following is a loop with a condition at its ending?
Repeat-until
What is encapsulation in object-oriented programming (OOP)?
The technique of keeping variables secure inside a class.
What does the relational operator != mean?
Is not equal to
Why do programmers need to spend a lot of time debugging?
They make misakes
What is a function in programming?
A piece of code that does one specific job
What is a class in object-oriented programming (OOP)?
A blueprint or template for creating objects.
A blueprint or template for creating objects.
To convert the code into machine language
To convert the code into machine language
Because they are not part of the executable code
Which symbol is used to show the logical flow of the program in a flowchart?
Arrow
Which type of loop keeps running as long as a certain condition is met?
While loop
What is the main purpose of a flowchart in programming?
To show the flow (sequence) of logic in a program
In what areas is assembly language still used today?
Specialized areas
What is a disadvantage of compiled programs?
They need to be rewritten and recompiled for different platforms
What is a programming language?
A set of instructions programmers use to write code.
What does it mean for an array to be multidimensional?
It can hold arrays within arrays.
What is another term for interpreted languages?
Scripting languages
What does the computer do after finding the records that match your search?
It organizes them into a nice-looking report
LAB
LAB
What are properties in a class?
Attributes that objects can have.
Which of the following is an example of a string?
Hello World
What is assembly language?
A low-level programming language
What is a variable in a computer program?
A container that holds data for use later
What is a loop in programming?
A sequence of instructions that is executed repeatedly.
What happens when you enter a number as a character?
You cannot perform math operations with it.
What helps programmers interact with and analyze how the program behaves?
Debugging Tools
What does a conditional flow use to make decisions in a program?
If-then-else statements
What is the first step in fixing errors in code?
Finding and repeating the problem
What does SQL stand for?
Structured Query Language
In a flowchart, what does a parallelogram represent?
Input or output
What is an object in object-oriented programming (OOP)?
A specific model built from a class.
What is a character in programming?
A single letter, symbol, or number
What type of value can a Boolean variable store?
True or False
What type of language adds tags to text?
Markup language
What is a constant in a computer program?
A value that never changes
What is the purpose of using functions in programming?
To avoid repeating the same code
What is a function call in programming?
What is a function call in programming?
Who created the first computer program?
Ada Lovelace
Which symbol represents the Logical AND operation in pseudocode?
&&
What is the main purpose of adding comments to a program?
To explain different parts of the program
Which of the following is a string?
Hello World
What is bytecode?
A low-level language that is interpreted by a runtime engine
What does an array store?
A collection of variables of the same type
What is the process of making a compiled program work on different platforms called?
Porting
What is one advantage of interpreted languages?
They are platform-independent.
LAB
In pseudocode, what does the symbol || represent?
Logical OR
What does the XOR operation return if both conditions are True?
False
Which of the following lists two interpreted languages?
JavaScript and Ruby
Which of the following is an example of an integer?
23
What is an interpreted language?
A language that runs instructions in the source code whenever you run the application
What is an integer in programming?
A whole number, either positive or negative, without a decimal or fraction.
What does a function return after it runs?
A vaule
What type of variable is used to store the value True or False?
Boolean
Why are compiled languages often used for resource-intensive programs like high-end video games?
Because they run quickly and efficiently
What makes it easier for humans to read and write instructions for computers?
Programming languages
Why are arrays useful?
They can be used in loops to go through values one by one
What is a floating-point number?
A number that can have decimal fractions
Why do modern developers not work directly with machine language?
It is very hard to understand.
What does the NOT operation do to a condition?
Inverts it
What is a loop in programming?
A statement that runs code repeatedly