Topic 8 Flashcards
What is a program?
A set of instructions that a computer follows to perform a task.
What is programming?
The process of writing instructions for a computer to execute.
What are the elements of programming?
- Variables
- Constants
- Data types
- Operators
- Control structures
Why is programming important?
It enables the creation of software applications that drive technology.
What would the world look like without programming?
Limited technology and automation; reliance on manual processes.
What is the first program typically written in Python?
print(“Hello world”)
What is a variable in programming?
A storage location identified by a name that holds a value.
What are the basic data types in Python?
- INTEGER
- FLOAT
- STRING
- BOOLEAN
- DATE
- CHARACTER
What does the command ‘print(“hello”, “how”, “are”, “you”)’ do?
Prints the words with spaces in between.
How do you take string input in Python?
name=input(“What is your name?”)
What is a conditional statement?
A statement that executes different actions based on whether a condition is true or false.
What is the structure of an IF statement?
IF <condition> THEN <action> ELSE <alternative></alternative></action></condition>
What is the purpose of the ‘else’ clause in conditional statements?
To define an alternative action when the condition is false.
What does the ‘==’ operator do?
Checks if two values are equal.
Fill in the blank: In Python, __________ is used to check if a value is not equal to another value.
!=
What is the difference between a while loop and a repeat until loop?
While loop checks the condition before executing; repeat until checks after.
What is the syntax for a for loop in Python?
for i in range(start, end):
What is the purpose of the ‘break’ statement in loops?
To exit the loop prematurely.
What is iteration?
The process of executing a set of statements repeatedly.
What is a pre-condition loop?
A loop where the condition is tested before executing the loop body.
What is a post-condition loop?
A loop where the condition is tested after executing the loop body.
What does the modulus operator (%) do?
Returns the remainder of a division operation.
Fill in the blank: In Python, __________ is used to create a loop that iterates a specific number of times.
for
What is selection in programming?
The process of choosing which action to perform based on conditions.
What is an example of a sequence in programming?
The order of operations in a program that must be followed.
True or False: A while loop can run zero times.
True
True or False: A repeat until loop will always execute at least once.
True
What is the purpose of the ‘elif’ statement?
To check multiple conditions in a conditional structure.
What does the following code do? ‘if(a > b and a > c):’
Checks if ‘a’ is greater than both ‘b’ and ‘c’.
What is the output of ‘10 % 2’?
0
What does the ‘case’ structure allow in programming?
To execute one out of several branches based on the value of a variable.
What is a count-controlled loop?
A loop where you know beforehand how many times it should run.
What is the pseudocode structure for a count-controlled loop?
FOR a← 0 to 4
OUTPUT “Hello”
ENDFOR
What is the maximum limit inclusion difference between pseudocode and Python?
In pseudocode, the maximum limit is included, while in Python it is excluded.
Fill in the blank: A _______ is executed at least 0 or more times.
Pre-Condition
What is string handling?
The process of manipulating strings, including finding length and extracting characters.
How do you find the length of a string in Python?
Use the len() function.
What does the expression city[0] return if city = ‘Kathmandu’?
K
What does the expression city[0:3] return if city = ‘Kathmandu’?
Kat
True or False: A procedure is the same as a function.
False
What are local and global variables?
Local variables are defined within a function, while global variables are defined outside and accessible throughout the program.
What is an array?
A collection of variables of the same datatype.
Why was there a need for an array?
To maintain large sets of data under a single variable name to avoid confusion.
How does Python implement arrays?
Using lists, which allow multiple data types.
What is a one-dimensional array?
An array with a single row of elements.
Give an example of a two-dimensional array.
studentsInfo=[[12,15,14],[14,12,17]]
Fill in the blank: To declare an empty list in Python for storing salaries of 100 players, use _______.
salaries = [None]*100
What does the index value represent in a list?
The position of elements in a list.
How can you add elements to an empty list in Python?
By using a loop to append marks or values.
What is the structure for a two-dimensional array declaration?
Creates Columns and Rows.
What operation can be performed on a 2D array to print data one by one?
Iterate through the array using nested loops.
What is the output of print(city[3:]) if city = ‘Kathmandu’?
mandu
What are the two types of arrays mentioned?
- One dimensional array
- Two dimensional array
What is the purpose of using meaningful identifiers in programming?
To enhance code readability and maintainability.