Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

UPDATED 2024/2025 INTRODUCTION TO CODING.pdf, Exams of Nursing

UPDATED 2024/2025 INTRODUCTION TO CODING.pdf

Typology: Exams

2024/2025

Available from 07/09/2025

bloomstudys
bloomstudys 🇺🇸

129 documents

1 / 3

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
UPDATED 2024/2025 INTRODUCTION
TO CODING
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.
pf3

Partial preview of the text

Download UPDATED 2024/2025 INTRODUCTION TO CODING.pdf and more Exams Nursing in PDF only on Docsity!

UPDATED 2024/2025 INTRODUCTION

TO CODING

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