8 smaller units, called bits :)
        
             
        
        
        
Answer:
The method definition to this question can be given as:
Method definition:
double max(double x, double y)  //define method with double parameter  
{
if (x>=y)    //check condition.
return x;  //return value
else
return y;     //return value
}
double max(int x, int y)    //define method with integer parameter
{
if (x>=y)    //check condition
return x;    //return value
else
return y;  //return value
}
double max(char x, char y)   //define method with char parameter
{
if (x>=y)    //check condition
return x;    //return value
else
return y;    //return value
}
Explanation:
The above method definition can be described as below:
- In the first method definition first, we define a method that is "max()". In this method we pass two variables as a parameter that is "x and y" and the datatype of this is double. Then we use a conditional statement. In the if block we check if variable x is greater then equal to y then it will return x else it will return y.  
- In the second method definition, we define a method that is same as the first method name but in this method, we pass two integer variable that is "x and y". Then we use a conditional statement. In the if block we check if variable x is greater then equal to y then it will return x else it will return y.
- In the third method definition, we define a method that is same as the first and second method name but in this method, we pass two char variable that is "x and y". Then we use a conditional statement. In the if block we check if variable x is greater then equal to y then it will return x else it will return y.
 
        
             
        
        
        
Answer:3363 seconds
Explanation:3363 is equivalent to 0days 1 hour, 1 min, and 7 sec
 
        
             
        
        
        
Answer:
There are two ways to find the average of a list of numbers in Python. You can divide the sum() by the len() of a list of numbers to find the average. Or, you can find the average of a list using the Python mean() function
Explanation:
 
        
             
        
        
        
Answer:
"Quotes"
Slashes \//
How '"confounding' "\" it is!
Explanation:
The question above is testing your knowledge of  the "\" escape sequence, This escape sequence is used to introduce special formatting to the output of the System.out.print function in Java. 
It can be used to introduce a new line \n
It can also be used to introduce a tab indentation \t
As in the question above it is used to introduce double quotes "" in this case \"
Also as we see the question above it can still be used to place backlashes to an output in this case we use two backlashes \\. The first is the escape sequence, the second \ gets printed out.