The act of changing and writing code from one language to another
What is Coding
The act of inputting information through a keyboard
What is Typing
An example of "hardware"
What is:
Keyboard, Monitor, Mouse, Screen, Printer or HardDrive
The number of bits in a byte
What is 8
The studying of computing devices and systems
What is Computer Science
An example of coding language
What is Python, Java, JavaScript, C#,C ,C++
A computer program designed to carry out a specific task other than one relating to the operation of the computer itself.
What is an Application
Output device displays information in pictorial or text form
What is a Monitor
A computer resource for recording data in a computer storage device
What is a File
Considered to be the ancestor of every modern computer
What is a Loom
A programming structure that repeats a sequence of instructions until a specific condition is met.
What is a Loop
A programmable electronic device designed to accept data, perform prescribed mathematical and logical operations at high speed, and display the results of these operations.
What is a computer
Hardware device stores all the data on your computer, from files to software.
What is a Hard Drive
The size of a kilobyte in bytes.
What is 1,024 bytes
Word processors, software development tools, image editors and communication platforms
What are Examples of software
To do something only if a condition is true
What is a "if" statement or "if" condition
The number of lines of code are currently used in Google Translate
What is 500
Name the difference between an input and output device
What is :
An input device is something you connect to a computer that sends information into the computer. An output device is something you connect to a computer that has information sent to it.
RAM, which is on each of your computers, stands for what acronym?
What is Random Access Memory
By using this, we can bridge the gap between machines and human language
What is Binary code
Statements that are created by the programmer which evaluates actions in the program and evaluates if it's true or false.
What is a Condition
True or False: With GUIs, people can code without typing at all.
True
A Hardware device accepts text files or images from a computer and transfers them to a medium such as paper?
What is a Printer
A step-by-step procedure for solving the problem while programming is a set of instructions for a computer to follow to perform a task.
What is an Algorithm
True or False: this statement is written in the correct format
if(condition) {
    //code
False! It is missing the last bracket
if(condition) {
    //code
}