Variables i)Numeric Variable ii)String Variable

Slides:



Advertisements
Similar presentations
1 Microsoft Access. 2 Specifying Query Criteria 3 Exact Matches and Literal values.
Advertisements

STROUD Worked examples and exercises are in the text PROGRAMME F2 INTRODUCTION TO ALGEBRA.
How to prepare result sheet. How to find total or sum Write equal sign= followed by Sum Open the bracket and write C10 Write: then drag till K10 Close.
A flowchart is a type of diagram that represents an algorithm or process, This diagrammatic representation can give a step-by-step solution to a given.
Proper and Improper Fractions
Some Fundamentals of Measurement and Calculation.
Computer Science: A Structured Programming Approach Using C1 Objectives ❏ To understand the structure of a C-language program. ❏ To write your first C.
WordDefinitionExample Equation A mathematical statement that says two expressions are equal Inequality A mathematical statement that compares two expressions.
C Tokens Identifiers Keywords Constants Operators Special symbols.
Constants in C A Presentation On Department of Computer & Information Technology, M.S.P.V.L. Polytechnic College, Pavoorchatram.
Algebra By : Monte. Term The number or an Expression that are added in a sum.
Course Title: Object Oriented Programming with C++ instructor ADEEL ANJUM Chapter No: 03 Conditional statement 1 BY ADEEL ANJUM (MSc-cs, CCNA,WEB DEVELOPER)
Data Types and Operators  Two category of data types:  Primitive type: value type. Store values.  Object type: reference type. Store addresses.
Ch 1.4 – Equations & Inequalities
Holt Algebra Graphing and Writing Inequalities Warm Up Compare. Write, or =. 1. − < > > = Tell whether the inequality x
solve x + (-16) = -12 solve x + (-16) = X = 4.
GUJARAT KNOWLEDGE VILLAGE Faculty Name:- Prof H.M.Patel Students Name:- SONI VISHAL THAKKER BHAVIN ZALA JAYDIP ZALA.
School of Computer Science & Information Technology G6DICP - Lecture 4 Variables, data types & decision making.
< < < > < > <
Algebra Properties Definition Numeric Example  Algebraic Example.
Variables, Input, and Output. Challenge: ● Ask the user his or her name, and repeat that name to the user ● Pause video and try.
Chapter 3 - Visual Basic Schneider Numeric Variables Used to store numbers Value is assigned by a statement of the form: numVar = expression The variable.
Matlab Basic. MATLAB Product Family 2 3 Entering & Quitting MATLAB To enter MATLAB double click on the MATLAB icon. To Leave MATLAB Simply type quit.
Chapter 5 L5-3 Notes: Mixed Numbers & Improper Fractions.
  A ratio is a way to compare two quantities that are measured in the same units by using division  45 : 100 Ratio.
4.6 Mixed Numbers & Improper Fractions p
Inequality Signs < means “is less than”  means “is less than or equal to” > means “is greater than”  means ”is greater than or equal to” Reading Inequalities.
11 PART 2 ARRAYS. 22 PROCESSING ARRAY ELEMENTS Reassigning Array Reference Variables The third statement in the segment below copies the address stored.
3.5 Notes analytical technique for evaluating limits of rational functions as x approaches infinity.
Visual Basic 6 Programming Decide how many variables you need by looking at this form. There is one textbox for input and there are 3 labels for output,
Chapter 11: Graphing. Bar Charts Pie Charts Line Graphs.
基 督 再 來 (一). 經文: 1 你們心裡不要憂愁;你們信神,也當信我。 2 在我父的家裡有許多住處;若是沒有,我就早 已告訴你們了。我去原是為你們預備地去 。 3 我 若去為你們預備了地方,就必再來接你們到我那 裡去,我在 那裡,叫你們也在那裡, ] ( 約 14 : 1-3)
Equations and Inequalities. Unit 8 – Solving Inequalities.
2.3 Problem Solving Using Inequalities
Some Assignments  Write a program which prints the following information about at least 5 persons: NAME MAIL-ID EMPLOYEE-CODE PHONE Eg. Umesh
Algebra.
ALGEBRA VOCABULARY.
Introduction Expressions can be used to represent quantities when those quantities are a sum of other values. When there are unknown values in the sum,
OR How to decide what math symbols to use
The Rational Numbers Notes and Examples for 8/15/16
Introduction to the C Language
Counting & Comparing Money 2 $ $ $ $.
Counting & Comparing Money $ $ $ $.
Programming Funamental slides
Mixed Numbers and Improper Fractions
Слайд-дәріс Қарағанды мемлекеттік техникалық университеті
.. -"""--..J '. / /I/I =---=-- -, _ --, _ = :;:.
Algebra Vocabulary.
Factor into pairs like in “T” Find the pair whose sum is “b”
Factor into pairs like in “T” Find the pair whose sum is “b”
II //II // \ Others Q.
I1I1 a 1·1,.,.,,I.,,I · I 1··n I J,-·
JavaScript Part 2.
JavaScript.
Lesson Combining Like Terms, Continued
STORE MANAGER RESPONSIBILITIES.
Relational Operators.
Lesson Combining Like Terms, Continued
7 – Variables, Input and Output
Writing Algebraic Expressions
Objectives: Graph (and write) inequalities on a number line.
SIMPLE INEQUALITIES.
Unit 4. Day 13..
Algebra Vocabulary SOL 6.23.
Measures of location: Mean
Numerical Expression A numerical expression is a string of numbers and operational signs that names a number.
Evaluating Algebraic Expressions.
. '. '. I;.,, - - "!' - -·-·,Ii '.....,,......, -,
Vocabulary Algebraic expression Equation Variable
Mixed Numbers and Improper Fractions
Presentation transcript:

Variables i)Numeric Variable ii)String Variable Those quantities ,whose values may change during execution of program are called “variables". There are 2 types of variables i)Numeric Variable It contains only numeric type of data, we can stores only numeric values X, a1,sum,total,average ii)String Variable It contains string type of data, string values must be enclosed in double quote and variable with $ sign. Student_Name$, Nationality$,n$ etc.

Greater then & Equals to 2)Relational Operator Use for Comparison or make condition such as Operation Operator Example Equals to = a=5 Greater then > a>5 Less then < a<5 Greater then & Equals to >= a>=5 Less then & Equals to <= a<=5 Not Equals to <> a<>5

Commands: This instruction or reserve word use in direct mode so that is called command. AUTO ( This command is use to generate line number in automatic.) RENUM ( This command is use to Regenerate line number in order.) LIST ( This command is use to Display program list on the screen. ) EDIT ( This command is use to editing in specific line number of program.) SAVE ( This command is use to save file in disk.) NEW ( This command is use to clear program from memory.) LOAD (This command is use to load program from disk into memory) Kill ( This command is use to remove file form disk.) Delete (This command is use to delete program lines from memory.) Run ( This command is use to run or execute program.)

Practical #14 Prepare Basic program to calculate area of rectangle, using INPUT , LET ,REM, PRINT and END statements. Area = Length * Width Prepare Basic program to calculate Current ,using INPUT , LET ,REM, PRINT and END statements. I = V/R