Answer: False
Explanation:
The given statement is false as, a stored program computer is one of the type of computer system which storing the program instruction in the form of electronic memory.
- It perform different types of tasks in the sequence and it also enables the digital computer system more effective and flexible.
- In this stored program computer the program instructions are get stored on the plugboards.
Therefore, the given statement is false.
Answer:
def recursive_func():
x = input("Are we there yet?")
if x.casefold() == 'Yes'.casefold():
return
else:
recursive_func()
recursive_func()
Explanation:
We define the required function as recursive_func().
The first line takes user input. The user input is stored in variable x.
The next line compares the user input to a string yes. The function executes the else block if the condition isn't met, that is a recursive call is executed.
IF condition returns the function. The string in variable X is compared to a string 'Yes'. the casefold() is a string function that ignores the upper/lower cases when comparing two strings. (This is important because a string 'yes' is not the same yes a string 'Yes' or 'YES'. Two equal strings means their cases and length should match).
Answer:Table
Explanation:A relational database has structures and thus have more than one table. The tables consist of row (for entry) and column (for data). As a result, data are organized in a simple manner and are normally consistent.
Answer:
By having very good luck and winning it in a giveaway!!!