"Scott Cawthon" did that.........
        
                    
             
        
        
        
Answer:
The answer to this question can be given as:
code:
class CollegeCourse  
{
String Dept;
int CourseNumber;
double Credits;
double fee;
}
Explanation:
We all know that class is a collection of data members and member functions. In the above code we use the following syntax for class declaration that can be given as:
Syntax of class declaration :
class class_name
{
data member & member function
}
In the above code firstly we declare a class that is CollegeCourse. In this class, we define a variable that name and datatype is already given in the question that is String Dept, int CourseNumber, double Credits, double fee. In the variables first variable data type is string. It is used for store string value like ('us','xxx','aaa').The second variable datatype is an integer. It is used for store integer value like (1,23,5,56). The third and fourth variable datatype is the same that is double. This data type is used to store the floating-point value.
 
        
             
        
        
        
Answer:
Option B is not correct
Explanation:
Dialogues become problematic when they appear automatically because of high level incompatibility
 
        
             
        
        
        
Answer:
//Code is created using java
import java.util.*; 
// returns the sum
public int sum(int N)
{
if(N==1)
return (1);
else
return N+sum(N-1);
}
// code to return the Bipower ouput
public int BiPower(int N)
{
if(N==1)
return (2);
else
return 2*BiPower(N-1);
}
// Code to return TimesFive output
public int TimesFive(int N)
{
if(N==1)
return 5;
else
return 5 + timesFive(N-1);
}
 public static void main(String args[]) 
    { 
//Prompts the user to enter a nonnegative integer
        int N  = Integer.parseInt.(console.readLine("Enter a nonnegative integer:  "));
//Outputs the sum, Bipower and TimesFive
        System.out.println(sum(n)); 
        System.out.println(BiPower(n));  
        System.out.println(TimesFive(n)); 
    } 
} 
 
        
             
        
        
        
HTTP or HTTPS is most likely the answer you are looking for.