Answer:B
Explanation:
it professionals build and repair computers, create and aunts in networks, and help people with their technology needs.
Answer:
The solution code is written in Python:
- a = int(input("Input first dish time: "))
- b = int(input("Input extra minutes: "))
- t = int(input("Input time available: "))
-
- dishesCount = 1
- currentTotal = a + b
-
- while(currentTotal <= t):
- dishesCount += 1
- currentTotal += currentTotal + b
-
- print("Number of dishes can be prepared: " + str(dishesCount))
Explanation:
Firstly, prompt user to input the first dish time, extra minutes and time available and assign the values to variable a, b and t, respectively (Line 1-3).
Next, create variable dishesCount to hold the number of dishes can be prepared (Line 5).
Get the current total time by adding a and b and assign it to variable currentTotal (Line 6).
While the currentTotal is less than or equal to t, increment the dishesCount by one and then add the hour of current dish to the currentTotal (Line 9-10).
At last, display the number of dishes that can be prepared in t minutes (Line 12).
The answer is D
Explanation: none
With functions we can separate different parts of our code. each functions implements a single logical part of the program.
for example sqrt() function does square root. so we can use it in different programs, because it's a stand-alone component.
Answer:
The answer to this question can be given as "The show desktop icon".
Explanation:
To minimize all open windows we use to click on the Show Desktop icon. When we click on this desktop icon it automatically minimize all the open windows that are open on the computer screen. And all the option are not correct that can be described as:
The Start menu is part of the Microsoft windows. Start menu offers a central launching point for system programs and executing other tasks.
The system tray is part of the Window. It is on the Taskbar. It contains miniature icons for easy access to system functions.
That's why the correct answer is "The show desktop icon".