

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
UPDATED 2024/2025 INTRODUCTION TO CODING.pdf
Typology: Exams
1 / 3
This page cannot be seen from the preview
Don't miss anything!
debugging - Correct answer~ removing errors in the code that cause it to behave unexpectedly or not run at all. logic error - Correct answer~ occurs when there is a design flaw in your program. syntax error - Correct answer~ represent errors in the grammar of the programming language. runtime error - Correct answer~ occur when a program with no syntax errors asks the computer to do something the computer is unable to do program - Correct answer~ a set of instructions given to a computer code - Correct answer~ program written in a specific language binary code - Correct answer~ the language that computers use to communicate; it is how they send, receive, and store information. algorithm - Correct answer~ a list of steps to complete a task. sequence - Correct answer~ a set of steps that follow one another in order. decomposition - Correct answer~ breaking a problem into smaller parts. high-level code - Correct answer~ is more beneficial for the user, it does take more time for the computer to understand it, which slows down the return of output, allows for more creativity and its language makes it easier to detect problems within the code.
low-level code - Correct answer~ written in language that is extremely close to machine language. It is as close to binary code as you can get, without using ones and zeros. compiling - Correct answer~ taking the entire program and converting it into binary code, which it then stored in a file. interpreting - Correct answer~ using the code itself to perform actions, it does not need to be converted into binary code. command - Correct answer~ The first element of code usually one word statement - Correct answer~ includes all other parts of a command control structure - Correct answer~ helps you to make sure your code is clear and easier for others to follow sequential - Correct answer~ this is the structure the compiler or interpreter will automatically follow. repetition - Correct answer~ repeats a piece of code multiple times in a row define - Correct answer~ step 1 programming process design - Correct answer~ taking the time to create a plan of action test - Correct answer~ where you make sure your code delivers the expected outcome and that there are no syntax or run-time errors loop - Correct answer~ a control structure for specifying repetition