What is a CPU?
It is the brain of the computer.
What are Bugs?
Code Errors
What is a Flowchart?
Is graphical representation showing the steps in a process, workflow, or system.
What are Softwares?
Programs that enable hardware to perform tasks.
What is the work of Compilation in a code?
First the entire code is evaluated. If there is an error the code does not run.
What is the Computers Architecture?
It is the coordination between hardware, software, and algorithms to execute processes.
Example of an input and output device
Input:Keyboard
Output:Monitor
What is an Algorithm?
Is a finite and well-defined sequence of instructions used to solve a problem or perform a specific task.
What are Harware?
are the physical components of a computer or electronic system that can be seen and touched.
What is the work of Performed
It runs line by line but stopping if there is an error.
What is the technique of Problem decomposition?
break down a complex problem into smaller, more manageable parts (subproblems) which facilitates the creation of step by step solutions using algorithms
What is the work of a monitor?
displays the processed information to the user.
What is a Pseudocode?
It is an informal and structured description of the logical steps of an algorithm or program written in natural language with elements of programming language.
What is a Binary Code?
it is the language of computers
What is the main contribution of a high-level language in programming?
that they allow programming with keywords and structures understandable to humans
What is a context in programming?
The information is placed in a context that gives it relevance and allows for its interpretation.
What is the RAM memory?
It is the memory that temporarily stores data and is erased when the computer is turned off.
What is a Program?
A set of instructions that a computer executes to perform a specific task.
What are some of the Sintaxis errors?
It could be a misspelled word, or something that prevents the code from running.
What is a Low-Level Language?
is one in which its instructions exercise direct control over the hardware and are therefore conditioned by the physical structure of the computers that support it.
What is a Variable?
It is a space in the computer's memory, with a unique name or identifier, that stores a value of a specific data type such as numbers or text and whose value can change during the execution of a program.
What is a Sintaxis?
Python and any programming language has writing rules, punctuation marks, and capitalization rules that must be used.
What is a Programming Paradigm?
Is a method for solving a problem or performing a task.
What is Interpreted Language?
An interpreted language executes the code line by line without a prior compilation step, through an interpreter that translates and executes the instructions in real time.
What makes the conditional IF in programming?
This basic conditional executes an action if a condition is true.