Answer:
Check Yt
Explanation:
More often than not there are many video tutorials about every game imaginable.
ISP stands for internet service provider so that's the one
C. Facing downhill
That way, if your brakes broke, you would not roll into traffic.
Answer:
The program in Java is as follows:
import java.util.Scanner;
public class Main{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
float a, b, c, x, y;
a = input.nextFloat();
b = input.nextFloat();
c = input.nextFloat();
x = input.nextFloat();
y = a * x * x + b * x + c;
System.out.print(y); }}
Explanation:
This declares all variables
float a, b, c, x, y;
The next 4 lines get input for a, b, c and x
<em> a = input.nextFloat();</em>
<em> b = input.nextFloat();</em>
<em> c = input.nextFloat();</em>
<em> x = input.nextFloat();</em>
This calculates the value of y using 

This prints the calculated value of y
System.out.print(y);