Enter your Sign-on user name and password.

Forgot password?
  • Follow us on:
Loading video...

QuickNotes™  

Statements

  • Sequential Statements: Are the statements that are done sequentially one by one from the beginning to the end, with no exception.

  • 	float salary, hours,payRate ;
    	Scanner KB = new Scanner(System.in);
    	System.out.println("Enter hours and pay rate:");
    	hours = KB.nextFloat();
    	payRate = KB.nextFloat();
    	salary = hours * payRate ;
    	
  • Operator Precedence: The order in which operators in Java are executed.

  • The Java operations are divided into precedence groups:

  • 	unary operators     - (negate)  ! (not)    Highest priority
    	multiplicative      *  /  %                      |
    	additive            +  -                         |
    	relational          <  >  >=  <=                 |
    	equality            ==  !=                       |
    	logical and         &&                           |
    	logical or          ||                           V
    	Assignment          =, +=, -=,*=, /=, %=   Lowest Priority
    	
Mathematics:
Basic Math
Pre-Algebra
Algebra I
Algebra II
Geometry
Trigonometry
Pre-Calculus
Calculus I
Calculus II
Multivariable Calculus
Statistics
Chemistry:
General Chemistry
Organic Chemistry
Physics:
High School Physics
AP Physics B (Mechanics)
AP Physics C (Electricty & Magnetism)
Biology:
General Biology
AP Biology
(AP) Advanced Placement:
AP Calculus AB
AP Calculus BC
AP Biology
AP Chemistry
AP Physics B (Mechanics)
AP Physics C (Mechanics)
AP Physics C (Electricty & Magnetism)
AP Statistics
AP Computer Science: Java
Computer Science:
HTML Training
CSS Intro
Java
JavaScript
Introduction to PHP
Wordpress Training
XML Training