What is Evaluation in programming?
Determining the value of an expression as True or False
Evaluation is a fundamental concept in programming that helps in decision-making.
What does Selection enable computers to do?
Perform different actions based on if conditions are true or false
Selection is crucial for controlling the flow of a program.
What are the different comparison operators used in Python?
These operators are used to compare values in conditional statements.
What are the logical operators and and or used for?
Applying logic operations to conditions
These operators help in combining multiple conditions in decision-making.
What is Indentation in Python?
Adding spaces to the start of lines of code to define scope
Indentation is critical for Python to understand the structure of the code.
What is a Condition in programming?
An expression that can be evaluated as either true or false
Conditions are essential for making decisions in code.
What do the terms if, then, and else refer to?
Tools for making code run depending on whether a statement is true or false
These are fundamental constructs in control flow.
What does Scope define in programming?
Which code belongs to which part of the program
Scope is important for variable accessibility and management.
What is meant by Sequence in programming?
Code running one line at a time in order
Sequence is the default mode of execution in programming.
What is Code?
The instructions within a program
Code is the foundation of any software application.
What is a Variable?
A stored value in your program that is referenced by a name
Variables are used to hold data that can change during program execution.
What is a Data type?
Defines the type of data stored in a variable (string, integer)
Data types determine how data is handled in programming.
What is a String?
A text-based value
Strings are commonly used to represent textual data.
What is an Integer?
A whole number
Integers are used for counting and indexing in programming.
What is a Bug?
A problem with a program not behaving as intended
Bugs can lead to unexpected behavior and errors in software.
What is Debugging?
The process of finding and correcting bugs
Debugging is essential for ensuring software reliability.
What does IDE stand for?
Integrated Development Environment
IDEs provide tools for writing, testing, and debugging code.
What is Syntax in programming?
The correct structure or layout of code
Syntax errors can prevent code from running properly.