Answer:
d. Mouse
Explanation:
A <em>mouse</em> is used to move a the cursor around the screen. You use the mouse to open applications or drag and drop files. It gives the computer instructions <em>(input)</em> . Therefore it is an input device.
<h2>Output devices :</h2>
- A <em>speaker</em> is an output device because it outputs sounds.
- A <em>printer</em> is an output device which is used to output information(print) on paper.
- A <em>monitor</em> is used to display.
Answer:a)Stand-alone
Explanation: Stand-alone application is the application that is found on the system of every client.In accordance with the IT section, Business intelligence can be transferred into stand-alone application .This helps in the development of the essence of the system at an independent level.
Other options are incorrect because supporting a certain factor will not make it independent, cannot act as the group of ISs technology or web system for gaining profit.Thus,the correct option is option(a).
Data mining is an information analysis tool that involves the automated discovery of patterns and relationship in the data warehouse.
<span />
The python code which can be used to read dates from input, one date per line and each date's format must be as follows: March 1, 1990, is:
<h3>Python code</h3>
import datetime
inputs = []
result = []
#read the inputs
date = input()
inputs.append(date)
while not date == "-1":
date = input()
inputs.append(date)
#check if the input is in the correct format and convert it.
for date_text in inputs:
try:
date_text = datetime.datetime.strptime(date_text,"%d %B, %Y")
result.append(date_text.strftime("%d/%m/%Y"))
except ValueError:
pass
print(*result, sep = "\n")
The above code would parse the string and extract the date. The split() method was used to break the input into tokens.
Read more about python programming here:
brainly.com/question/27666303
#SPJ1