Debugging
Data Types
Coding Vocaublary
Coding Vocabulary 2
Finish the line of code
100

What is the error in this code

int x = 5.2;

The int sould be a double

100

What type should you use to represent the number of people in a household?

What is an Intiger

100

What is an Intiger used to represent

What is a Whole Number
100

What is a Main Method

Where execution starts in a Java program.

100

System.out.println

System.out.println("Anything");

200

What is the error in this code
public class test1

The t in test is supposed to be capital

200

What type should you use to represent the amount of money you have?

What is a Double

200

What is a Boolean

An expression that is either true or false

200

What is System.out.print() used for

its used to print output to the user

200

String firstName

String firstName = "Name";

300

What is the error in this code

Boolean hasInsurance = false;

The B is supposed to be lowercase

300

What type should you use to record if it is raining or not?

What is a Boolean

300

What is a Double used to represent 

A Double is used to represent decimal values

300

What is a compiler

 Software that translates the Java source code into the Java class file

300

public class 

public class Test1

400

What are the errors in this code
System.out.println(Hi my friend!)

There is no quotations between the quote and there is no semi colin at the end of the line 

400

What type should you use to hold the first name of a person?

What is a String

400

What does it mean to initialize a line of code?

It means Setting the value of a variable for the first time

400

What is an Arithmatic Expression

 a sequence of operands and operators that describe a calculation to be performed

400

public static void main

public static void main(String[] args)

500

What are the errors in this code
system,Out.printLn

the "," is supposed to be a .
and the O and L are supposed to be lowercase

500

What type should you use to represent the average grade for a course?

What is a double

500

What is an algorithm?

A list of directions used to follow a task

500

 What does it mean to Cast a Variable

Changing the type of a variable using (type) name.

500

double price

double price = 1.11; (any number with a decimal counts)