Answer:
13,33 MIN.
Explanation:
1. Time with Older Computer (OC) = 2 time with New Computer (NC)
2. OC+ NC = 10 MIN.
replacing 1. in 2. OC + OC/2 = 10 min.
1.5 OC =10min
OC=6.66 MIN
NC = 3,33 MIN.
If we replace NC with OC , 3,33 min will take 2 times (6,66 min)
Total Time = 6,66 + 6,66= 13,33 min
command prompt shutdown/s or alt f4
Answer:
Laser printer
Explanation:
This is a guess based on experience, but laser printers have rollers, drums, and other various parts that need periodic replacement.
See page 87 of https://www.laserpros.com/img/manuals/hp-manuals/hp-lj-4100-manual.pdf for an example.
Answer:
The output is "<class 'str'> ".
Explanation:
In the given python code a print() function is defined. Inside this function, a type() function will use, in which a numeric value is passed in the double quotes (" ") as a function parameter. Double quotes are normally used for print value as a message but in this code, value is not printed because we use the type() function.
- The type() function Returns the parameter class type of the argument(object).
- This function is used for debugging. In this function, we pass a single parameter that will return the type of given object.