Answer:
theSentence = input('Enter sentence: ')
theSentence = theSentence.split()
sentence_split_list =[]
for word in theSentence:
sentence_split_list.append(word[1:]+word[0]+'ay')
sentence_split_list = ' '.join(sentence_split_list)
print(sentence_split_list)
Explanation:
Using the input function in python Programming language, the user is prompted to enter a sentence. The sentence is splited and and a new list is created with this statements;
theSentence = theSentence.split()
sentence_split_list =[ ]
In this way every word in the sentence becomes an element in this list and individual operations can be carried out on them
Using the append method and list slicing in the for loop, every word in the sentence is converted to a PIG LATIN
The attached screenshot shows the code and output.
Answer: a)Disruptive innovation
Explanation: Disruptive innovation is the innovation technique indulges in market through new market strategy and value network. This techniques damages the existing market market and its values .The displacement of the current product extincts from the market through this technique.
Other options are incorrect because paradigm shift is influence losing in the market and sustaining innovation is used for the improving the product's marketing and value .Thus, the correct option is option(a).
Answer: D. Turing conceived the structure of a programmable computer.
Explanation: The passage describes how Alan M. Turing described the theoretical aspect of a programmable computer. There is no reference to a physical machine or Turing working on an actual (physical) computer.
The Turing machine, although it does sound like a physical computer was an abstract idea, conceived in mathematical form of what a programmable machine would be like. Alan Turing is considered one of the founding fathers of theoretical computer science.
A. the ability to perform a task in a short period of time using little to no energy
Answer:
D. operating system.
Explanation:
In this question, we have to find the software that interprets commands from the keyboard and mouse. For that, we have to evaluate each option.
A. hard drive.
Hard drive is the item that used to store the data. Additionally, it is a hardware. Therefore, this option is false.
B. operating disk.
This is a software but it is mainly used to facilitate the read/ write commands from/to the disk in the system. Therefore, this option is also false.
C. desktop.
This is just the main screen or home screen that used to display different icons, files etc.
Desktop is also be used as an alternative of personal computer. That is a hardware item. Nevertheless, in both the cases, this option is false.
D. operating system.
Operating system is also defined as a low-level software that aims to provide basic controlling and scheduling services. Interpretation of commands from keyboard or mouse is also and module of controlling services. Therefore, this option is true.
Hence, software that interprets commands from the keyboard and mouse is also known as the operating system.