Looks like no one added any tags here yet for you.
What is the correct order of the following data sizes from smallest to largest? Megabytes, Terabytes, Bytes, Petabytes, Bits, Exabytes, Gigabytes
Bits, Bytes, Megabytes, Terabytes, Petabytes, Exabytes
How many megabytes are in a gigabyte?
1000
How many bits would you need if you wanted to have the ability to count up to 1000?
10
An interpreter or compiler converts data into which numerical value?
Binary
Which decimal is equivalent to the binary value 1100100?
100
What is the core number system that most computers use to calculate & process logic?
Binary Code
What can a hexadecimal be utilized for?
HTML color codes
How many unique IP addresses could be made using a 6 bit fixed-length adress sysem?
64
Which operator returns the remainder value in a calculation?
Modulus
Operators of equal precedence are evaluated in which order?
Left to Right
What is the purpose of order of operation in software programming?
It tells the computer which mathematical operation to perform first.
How does the ++ symbol in programming change a variable?
It adds 1 to the value of itself.
How does the -- symbol in programming change a varibale?
It subtracts 1 from the value of itself.
What data type is used for fractional numbers?
Float
Which data representation system utilizes both letters and numbers?
Hexadecimal
When utilizing an if/else statement in your code, how many possible choices can be available to the user?
2
When writing an if/else statement, what should be utilized to contain the sequence of statements?
{ }
What comes first in the if / else statement?
if
What is the best statement to use if checking to evaluate a single variable value across many conditions?
Switch
What does the == symbol in programming mean?
equal
What does the = symbol in programming mean?
assignment
What does the && symbol in programming mean?
and
What does the || symbol in programming mean?
or
What does the ! symbol in programming mean?
not
What does the > symbol in programming mean?
greater than
What does the < symbol in programming mean?
less than
What does the >= symbol in programming mean?
greater than or equal
What does the <= symbol in programming mean?
less than or equal
What does the === symbol in programming mean?
equal value and equal type
What does the != symbol in programming mean?
not equal
What does the !== symbol in programming mean?
not equal value and not equal type
What is another name for indenting?
Nesting
What are nesting statements?
They are statements inside another statement.
Which statement allows more than one condition in an if statement?
elif
What does a computer program use as a means to evaluate a condition as True or False?
A Boolean expression.
"A program contains the following statements:
x= grade
If x >90:
print ("You are an A student!")
What action will the program take when x=89?"
Nothing will print.
Computer Program
Any software that runs on top of the operating system.
Programming Language
A system of conventions and symbols used to create instructions for computers, which read through and follow the instructions in the code.
Machine Code
A binary system that is made of a series of 1s and 0s. It is considered the lowest level of programming and is the set of instructions with which the computer's CPU works directly.
Low-level Language
A programming language whose code is more similar to what the computer works with and is less human-readable; it is very specific and directly manipulates hardware. They are more efficient but harder to use.
High-level Language
A programming language whose code has multiple layers of abstraction (i.e. the code has to be translated into a form that the computer can understand) and is thus more human-readable.
Source Code
The code that is written by the programmer and is in a form that can be understood and edited by humans.
Object Code
Source code that has been transformed by the computer into a low-level form that the CPU can understand and work with.
Statements
Individual, specific instructions used in programming to accomplish specific tasks.
Algorithm
A predefined procedure that aims to solve a problem or complete a task. It takes into account specific circumstances and has varying courses of action for each.
Pseudocode
Human-written code that describes what a program is supposed to do, or, more specifically, what the programmer wants the code to do.
Flowchart
A diagram used to describe algorithms and the structure of programs and programming languages. It consists of boxes that represent specific objects or steps and arrows and lines to represent the relationship between them.
Documentation
Text written in normal language that describes software; it consists of comments found directly in the code as well as separate documents that describe the overall program.
Debug
A process that aims to locate the exact source of bugs (i.e. errors or flaws) in the code.
Syntax Error
A mistake with the conventions and symbols of the programming language that leads to an error in the program.
Run-time Error
An error that occurs when the program is running, after the code has already been compiled, or checked.
Interpret
To convert the code into instructions as the program is running.
Compile
To convert the code into instructions before the program runs.
Assembler
A program that converts basic, low-level instructions into machine code.
Execute
To run a program or a set of instructions given to a computer.
ASCII Code
System in which each English character is assigned a numerical code ranging from 0 to 127.
Solve by Analogy
Consists of comparing the problem to something that is both similar and familiar to you. It requires you to draw knowledge from something that you know well and apply it to the task at hand.
Means-End Analysis
A strategy where the solution to the problem is treated as an overall goal and is broken down into more specific tasks or parts.
Looking at the Big Picture
To look at the problem in its entirety.
Lateral Thinking
A strategy where you use creativity to solve a problem in a unique, indirect way. Requires creativity and does not always involve what is immediately apparent with the problem; solutions and insights devised using this strategy are not immediately clear and require some deeper thinking to figure out.
Inductive Reasoning
Involves testing the validity of an idea by making observations of circumstances in which the idea is relevant. It's useful for solving problems because it can be used to acquire the knowledge needed to do so.
Sequence
A set of commands is executed one after the other in the order in which they were provided.
Conditional
Evaluates the validity of one or more conditions and then executes one or more commands, whose nature depends now which condition is valid.
Iterative
Repeatedly executes a set of one or more commands until one or more given conditions has been satisfied.
Subroutine
A separate block of code containing a set of instructions.
Variable
A value in code that is able to be stored and changed.
String
A sequence of characters often used to display text (e.g. "Hello World!").
Boolean
One of two values: TRUE or FALSE. It is often used to control an object's visibility in object-oriented programming (OOP).
Integer
A WHOLE number (not a fraction or decimal!) that can be positive or negative.
Decimal
A data type that has a "." in it (e.g. 2.27).
Date/time Variable
Variables that are used to store the date and time. It is often used as a way of time-stamping when something was done or achieved.
Global Variable
A variable defined outside all functions and is accessible to all functions in its scope.
Local Variable
A variable that is declared within a function and cannot be accessed by statements that are outside of the function. In addition, a local variable cannot be accessed by code that appears inside the function at a point before the variable has been created.
Array
A data structure with one, or more, elements of the same type.
OOP
Object Oriented Programming - a style of programming that represents a program as a system of objects and enables code-reuse.
GUI
An icon based interface that the user can interact with.
IDE
Integrated Development Environment. For example, Pycharm for Python or Visual studio for Visual Basic.
Event Handler
A function that is called when a certain event occurs. Examples of these include button.onclick and window.onload.
Linear Program Flow Control
A flow diagram of a program that only has one direct path.
Branch Program Flow Control
A flow diagram that has multiple paths that the user can take.
While Loop
The code is repeated until the condition becomes false.
For Loop
Loops that repeat a select number of times.
Reserved Word
A special word that cannot be used as a user-defined named. These words are already part of the programming language's syntax.
Prototype
A test model of a program.
Input
Whatever is typed, submitted, or transmitted to a computer.
Output
The product created by transforming the inputs
Syntax
The sentence structure in a programming language.
If Statement
The common programming structure that implements "conditional statements". It will only complete if the condition is met.
Case
An if statement with multiple outputs.
Software Development Cycle
Requirements Analysis, Design, Coding, Unit Testing, Integration Testing, Formal/Acceptance Testing, Maintenance
Structured Programming
Software that was designed to be easy to understand and modify.
RAM
A form of memory that temporarily stores data and programs currently in use.
ROM
A type of non-volatile memory used in computers and other electronic devices.
CPU
The "brain" of the computer that carries out all of the tasks and operations of a computer.
Software
A set of instructions that tells the hardware what to do. It is what guides the hardware and tells it how to accomplish each task.
Operating System (OS)
Software used to control the computer and its peripheral equipment.