Answer:
The answer is "Command-based".
Explanation:
CLI stands for the command-line interface, it is also known as the command-based user interface. CLI is a text interface that allows the user to react to visual prompts by typing individual commands in the interface and receiving the same response.
- It is available on Microsoft windows.
- CLI is the way that is used by users to interact with computer programs.
Answer:
Explanation:
a = input("what kind of pet the user has")
if a == 'cat':
print("Too bad")
elif a == 'dog':
print("Lucky you!")
Answer:
In cell A3 we type
=Right(A2,5)
Explanation:
The Right function in the Microsoft excel is placing the character or the string into the right position .Following are the syntax to using the right function in the excel sheet
=Right(cell name,num _of_character )
- cell name-In this we have to specify the cell name
- num_of_character -In this we have to specify the number of character we want the right of the cell name .
From the given question We have putting the string in the cell A2 and we have used the function in the cell A3 i.e
=Right(A2,5)
Answer:
Pascal is a high-level programming language, and anyone can decide to write a machine language compiler with it, If Pascal language specifications get to change or somewhere in the code a bug is discovered, it will be easier to build the machine language compiler again from the Pascal code version than deciding to modify the machine language.
Explanation:
Answer:
The program to this question can be described as follows:
Program:
def ilovepython(): #defining a method
for i in range(3): #defining a loop that print messasge three times
print('I love Python')#print messasge
ilovepython() #calling the method
Output:
I love Python
I love Python
I love Python
Explanation:
Description of the python program can be described as follows:
- In the above Python program, a method "ilovepython" is defined, inside the method a for loop is used, inside the loop print method is used, that print the message "I love Python".
- In python for loop is used to iterate over series and we can execute a set of statements with the loop, tuple, series, once for each element in the list.