The answer to this question is:
"Both work with computers, but only Bluetooth can be used in a headset"
The answer to this is true because Both computers can use/work with computer but Bluetooth can only connect to head set headset don't need wifi it needs Bluetooth and charging/plug
Your Welcome :)
Answer:
The answer is "Option B".
Explanation:
The system environment includes all software external areas, which may vary from user to user. The System may be different, but it is part of the System environment, depending on the level of available memory. This environment is a part of the System development life cycle. and other options that are not correct which can be described as follows:
- In option a, Time and cost estimates are part of the SDLC. It is a part where we calculate the overall cost and time for making any new software.
- In option c, It is not a use in system environment it is reported.
- In option d, System Components are a hardware device that by system environment for making a system environment but it does not include systems security that's why it is not correct.
They wouldn't include Employee Salaries
Answer:
The solution code is written in Python:
- sec = int(input("Enter number of seconds: "))
-
- if(sec >=60):
- min = sec // 60
- sec = sec % 60
- else:
- min = 0
-
- print(str(min) + " minutes " + str(sec) + " seconds")
Explanation:
Firstly, use input function to prompt user to enter number of seconds and assign the input value to variable sec (Line 1).
Next, create an if statement to check if the sec is bigger or equal to 60 (Line 3). If so, we user // operator to get minutes and use % operator to get the seconds (Line 4 - 5).
Then we use print function to print the minutes and seconds (Line 9).