Answer:
The answer to this question is given below in the explanation section. 
Explanation:
CPU benchmarks are used to picking the best CPU. If you want to pick the best CPU for the kind of work you do is easier if you research some performance benchmarks. 
As you know, CPU benchmarks are measurements used to compare performance between processors. These benchmarks are the measure to know the performance of CPU. 
These CPU Benchmarks are generated by running software programs specifically designed to push the limits of CPU performance.
 
        
             
        
        
        
Answer:
B
Explanation:
This question demonstrates the concept of method overloading 
Method overloading means having different versions of the same method. In this case the method mystery() has three versions. The compiler is able to determine which method to call by their different parameters
The first implementation of mystery requires an array of integers as parameter
The second implementation requires an int variable
The third implementation requires a String
The Method call mystery(6 * 8) will output B because 6*8 evaluates to an integer which is the expected argument.
 
        
             
        
        
        
nums = []
while True:
    num = float(input("Enter a number: "))
    if num <= 0:
        break
    nums.append(num)
print("The largest number entered was",max(nums))
I wrote my code in python 3.8. I hope this helps. 
 
        
             
        
        
        
Answer:
you could send a email to your teacher to fix the problem
Explanation: