Java Lessons 5 – 8 Mr. Kalmes.

Slides:



Advertisements
Similar presentations
Integers: Multiplication & Division
Advertisements

INTEGERS: adding, subtracting, multiplying, and dividing
Rules of Integers. Positive numbers are numbers that are above zero. Negative numbers are numbers below zero.
2-2 Solving Two-Step Equations. Goal: To isolate the variable How do you do this : Use Inverse Operation (Opposite) 1. do all Addition or Subtraction.
Addition, Subtraction, Multiplication, and Division of Integers
Ch 1.3 – Order of Operations
Integers All whole numbers and their opposites including the number 0.
Operations with Integers
Flashback Without a calculator, find the answer. 1. (7 × 7 − 3 × 6) ÷ ( ) ÷ 9.
ALGEBRA 2.1 – 2.2 Solving equations by adding, subtracting, multiplying or dividing.
Lesson 3-7 Dividing Integers Objective: To be able to divide positive and negative integers. Standard: Number Sense Indicator(s): N 5  Explain the meaning.
Addition Multiplication Subtraction Division. 1.If the signs are the same, add the numbers and keep the same sign = = If the.
DATA TYPES, VARIABLES AND CONSTANTS. LEARNING OBJECTIVES  Be able to identify and explain the difference between data and information  Be able to identify,
Music You buy a used guitar for $50. You then pay $10 for each of 5 guitar lessons. The total cost can be found by evaluating the expression 
JUST BASIC Lessons 6 – 9 Mr. Kalmes.
1.1 Variables and Expressions
2 Chapter Chapter 2 Integers and Introduction to Variables.
Operations with Integers
Parts of an Expression.
Words and Phrases to Math Symbols
Example 1: Find percent using a proportion. What is 60% of 500?
Variables and Expressions
OR How to decide what math symbols to use
Warm-up September 14, 2017 Change to a decimal: 87% 7%
Introduction to Variables and Algebraic Expressions
Lesson 1.1 How do you evaluate and write variable expressions?
1-1: Writing Expressions and Equations
Writing Algebraic Expressions
Variables and Expressions Unit 1 Lesson 2
Warm Up Group the following apples, oranges, & bananas together and write as an algebraic expression. Now in your own words, give a definition for algebraic.
Writing Expressions and Equations
Python Lessons 9 & 10 Mr. Kalmes.
In this lesson you will learn how to read and write algebraic expressions by using variables.
Variables in Algebra Chapter 1 Section 1.
Writing expression basic
Addition & Subtraction
Warm up Match each of the phrases with its appropriate operation
Ch 1.1 Variables and Expressions
Introduction to Variables, Algebraic Expressions, and Equations
Rational Numbers & Equations
ALGEBRA. ALGEBRA VARIABLES AND EXPRESSIONS Algebra – Uses symbols to represent quantities that are unknown or that vary. You can represent mathematical.
Warm up Match each of the phrases with its appropriate operation
Section 1.1 “Expressions and Variables”
Math 1-7: Warm-up Multiply. 3(-4) -6(-2) Divide 66 ÷ (-11)
Java Lesson 36 Mr. Kalmes.
Warm Up Divided by Difference More than Product Minus Sum
Java Lessons 17 – 20 Mr. Kalmes.
Java Lessons 28 – 32 Mr. Kalmes.
Basic Lessons 7&8 Mr. Husch.
Chapter 1-1 Variables and expressions
Percents, Fractions, and Decimals
Python Lesson’S 1 & 2 Mr. Kalmes.
Mathematical Symbols 09/04/2019 R Nicks.
Writing Algebraic Expressions
September 11th, 2014 Day 20 xx 7-1 Learning Target – Today I will be able to compare and order integers to determine absolute value Bellringer Lesson Exit.
Ch. 4-1 Algebraic Expressions and the Order of Operations
A N O PERATOR IS A SYMBOL ( SUCH AS +, ×, ETC ) THAT SHOWS AN OPERATION ( IE WE WANT TO DO SOMETHING WITH THE VALUES ). A T ERM IS EITHER A SINGLE.
Just Basic Lessons 7&8 Mr. Kalmes.
1.1 Expressions and Variables
15.
DIRECTED NUMBERS.
Java Lessons 9 – 12 Mr. Kalmes.
Subtraction of Polynomials
Dividing negative fractions
Just Basic Lessons 7 Mr. Kalmes.
Just Basic Lessons 8 Mr. Kalmes.
Dividing Fractions.
Variables and Expressions
Divide two Integers.
Presentation transcript:

Java Lessons 5 – 8 Mr. Kalmes

Learning Targets I will be able to utilize variables I will be able to develop interactive programs I will be able to create input variables I will be able to explain the concept of the computer human interface

Lesson 5 Variable names can be more than one letter long. Variables can hold more than just numbers; they can hold words. You have to choose what type of values the variable will hold when the variable is first created. The value of a variable (but not its type) can change throughout the program.

Lesson 5 Types of variables: Integers Doubles Strings can hold a value between ± 2 billion Doubles can hold a number that may have a fractional part. Holds value between ± 1.79769 × 10308 and 4.94065 × 10-324 Strings can hold words or phrases

Lesson 5

Lesson 6 Mathematical Symbols: Plus Sign (+) will add different variables together Minus Sign (-) will subtract integers or doubles Asterisk (*) will multiply integers or doubles Slash (/) will divide integers or doubles Percent (%) The remainder after division

Lesson 6

Lesson 7

Lesson 7

Lesson 8

Exit Slip List 2 of the 4 rules of variables What are the 3 type of variables