10 Pages

lecture3

Course: ASTRONOMY 1000, Spring 2001
School: Yonsei University
Rating:
 
 
 
 
 

Word Count: 1773

Document Preview

Issues Objects, Administrative Variables, and Types Lecture 3 Due Today Program 0 Due at 11pm Submit via Blackboard Try to submit well before 11pm You can submit multiple times Youll need time to figure out how to turn in your project! Ongoing Homework 0 No new assignments! (Except reading) What are Objects? Java is an Object-Oriented Language What the heck does that mean? What is an object?...

Register Now

Unformatted Document Excerpt

Coursehero >> Other International >> Yonsei University >> ASTRONOMY 1000

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Issues Objects, Administrative Variables, and Types Lecture 3 Due Today Program 0 Due at 11pm Submit via Blackboard Try to submit well before 11pm You can submit multiple times Youll need time to figure out how to turn in your project! Ongoing Homework 0 No new assignments! (Except reading) What are Objects? Java is an Object-Oriented Language What the heck does that mean? What is an object? Quoting the text: a fundamental entity in a Java program. The building blocks of your program Example Objects Program for bank accounting software Possible objects One object for each bank account Object for each branch office Each customer represented by an object Each teller is an object Each ATM an object Headquarters is an object Primitive Data Common, fundamental values Numbers: 1534 Characters: a Classes Classes Think of Data type for Objects Defines a set of values Defines possible operations on those values More specialized values are represented as objects Values belong to a Data Type Defines a set of values Defines possible operations on those values Example: BankAccount class Class describes data Account number Balance Operations Withdrawal Deposit 1 BankAccount Class Many people have bank accounts Each bank account is an object My bank account Your bank account Michael Jordans bank account Encapsulation Encapsulation means each object handles its own data Details are hidden from the outside Example: Deposit to bank account You just drop off a check and see your balance Do you know what happens to that check? All bank accounts type of information and services: they are of the same class. Inheritance and BankAccounts But are all bank accounts really the same? No, but similar! BankAccount Inheritance More in chap. 7 SavingsAccount CheckingAccount IRAccount Four01KAccount Classes: Chapter 4 Coverage of classes in Chapter 4 Key points Primitive data is defined by a data type a is a char Objects are defined by a class davesAccount is a BankAccount Today: Predefined objects Using objects Using Objects System.out.println(Go Heels!); Invoked the println method through the object System.out. The object represents an output device By default, the monitor Predefined in standard Java programs println() is a service, or method Object Calling a method System.out.println(Go Heels!); Parameter or Argument Dot Notation Method End of Line Syntax Request service via dot notation 2 Calling a method In general: object.service(argument list); Back to System.out Object that represents output Mapped to monitor by default Could be disk, printer, etc. Provides many methods for printing output Recall: Methods = Services Example: myBankAccount.deposit(125.00); Encapsulation Hides details It just works System.out Methods Two important System.out methods println(); print(); 2 Minute Exercise What output is produced by the following code fragment? System.out.print(Go Heels!); System.out.println(Beat Dook!); System.out.println(I want); System.out.print( to get an A ); System.out.print(in Comp); System.out.println(); System.out.println(14.); Small but important difference println() prints the information then moves to the next line print() prints the information but does not advance to the next line Strings What parameters have we used so far? Go Heels! Beat Dook! 14. String Literals Strings are fundamental, so String Literals are part of the Java language All quotations weve used so far are String Literals Go Heels! Beat Dook! 14. All character strings Represented as an object Defined by class String Details on the class String in Section 2.6 (tomorrows lecture) Delimited by quotation characters 3 String Literals String Literals cant span more than one line Syntax Error! Example quote from Maurice Mascaranhas: System.out.println(Profits are like breathing. You have to have them. But who would stay alive just to breathe?); Multiple Print Statements One answer is to use many print statements: System.out.println(Profits are like); System.out.println( breathing. You ); System.out.pritnln(have to have ); System.out.println( them. But who ); System.out.println(would stay alive ); System.out.println(just to breathe?); How does Java print out long string literals? But this is tedious! Is there a better way? String Concatenation Appends two strings to form a single longer string Use the + operator between string literals Ex: I love + Krispy Kreme Fixing The Error Use concatenation to handle long string literals Example: System.out.println(Profits + are like breathing. You + have to have them. But + who would stay alive just + to breathe?); Can also be done with numbers Numbers get converted to strings automatically! Ex: I read + 20 + pages last night! Concatenation Example System.out.println(9 plus 2 is + 9 + 2); Printing the Character How do you print the character? Cant do this! System.out.println(); What output is produced? 9 plus 2 is 92 Why not? Escape Sequences are the answer! 4 Escape Sequences Represent special characters Characters that cant be typed Characters that confuse the compiler Examples: Backspace, tab, newline, carriage return, double quote, single quote, backslash Printing the Character Example Code Fragment: System.out.println(As the last slide + said, \escape sequences are the + answer!\); \b \t \n \ \ \\ Backspace Tab Newline \r Carriage Return Double Quote Single Quote Backslash Example Output: As the last slide said, escape sequences are the answer! All start with a backslash \ 2 Minute Exercise Example Code Fragment: System.out.print(I + wish\n\tI were in + \Tahiti.\\nDo + you?\n); \b \t \n \ \ \\ Backspace Tab Newline Variables A variable refers a location in memory Variables used to store information From math: Let x=10 What is the value of 2x? 20. \r Carriage Return Double Quote Single Quote Backslash How can we use variables in Java? Variable Example public class CoffeeMaker { public static void main (String[] args) { int cups = 10; System.out.println(My coffee maker + makes + cups + cups.); } Variable } Declaration int cups = 10; Type (More on this in a few minutes) Assignment Operator End of Line Syntax Identifier Expression 5 Variable Declaration Specification Declaration Type final Declarator , Variable Declaration Specification Declaration final Later Today Later Today Type Declarator , Declarator Identifier = Expression Array Initializer Declarator Identifier = Tomorrow Expression Array Initializer Chapter 6 Valid Declarations int int int int int cups = 10; age; doves, count, jars; savings=2, count=5; candles=5, count; Basic Declaration Declaration reserves space in memory to hold a value No value is placed in that space int age; 1502 01001011 1503 00010101 1504 00000001 1505 00000010 1506 01010111 1507 00111100 1508 11101010 Basic Declaration Value of age is left over from previous use of the memory int age; DANGEROUS! Always assign a value 1502 01001011 1503 00010101 1504 00000001 1505 00000010 1506 01010111 1507 00111100 1508 11101010 Assignment How do you store a value in a variable? The assignment statement A variable can hold one value of the correct type Java is Strongly Typed Must match type of variable and data being stored i.e. int variables can only store integers 6 Assignment Statements int numberOfStudents; // Value undefined numberOfStudents = 10; System.out.println(numberOfStudents); numberOfStudents = 4; System.out.println(numberOfStudents); numberOfStudents = 13; System.out.println(numberOfStudents); Assignment Statement Specification Assignment Identifier = Expression ; Examples: Strongly Typed: Both sides must be ints pizzaSlices = 8; index = index + 1; sumOf2 = number1 + number2; Cover Expressions Tomorrow Constants Some values are constant for the entire program Helpful to assign a name Examples: In math, PI = 3.14159 Classroom has max occupancy, maybe 100 people Constant Declarations public class Classroom { public static void main (String[] args) { static int MAX_OCCUPANCY = 10; int occupany = 5; System.out.println(occupany + out of + MAX_OCCUPANCY + spots are used.); } } Use the reserved word final to declare a constant Declaration Type final Declarator , More Constants Why use constants? Provides symbolic name for a value (i.e. PI) Prevents accidental changes to value Makes changes easy: change needed in one place Declaration final Types Type Declarator , Constant Conventions Declare constants using all capitals Examples MAX_OCCUPANCY PI BUCKET_CAPACITY Variables are of a specific type Primitive Data Types int char Classes String BankAccount 7 Primitive Data Types Primitive data types are simple, low-level types of data Integers 1,343 or -5 Integers Four different integer types Each uses different number of bits From Chapter One: n bits = 2n possible items Type Storage byte short int long Floating-points 3.141 or -99.3 Min Value -128 Max Value 127 32,767 2,147,483,648 9,223,372,036,854,775,807 8 bits Characters a or Q 16 bits -32,768 32 bits -2,147,483,648 64 bits -9,223,372,036,854,775,808 Booleans either true and false Roughly 10 Quintillion! More On Integers Use the best type to match needs If type is too large, space is wasted If type is too small, information is lost Floating Points Stores numbers in two parts Significand (aka Mantissa) Exponent Like math: 3.4E+38 A integer literal is a specific integer value 1345 -1 Two different floating point types Type Storage float double Java treats all integer literals as ints Exception: specifically ask for a literal of type long 1246L No byte or short literals Min Value with 7 significant digits with 15 significant digits Max Value About +3.4E+38 with 7 significant digits with 15 significant digits 32 bits About -3.4E+38 64 bits About -1.7E+308 About +1.7E+308 More On Floating Points Floating Points have limited precision Cant exactly represent PI! Characters Character literal delimited by single quotes a or Z or 9 Recall: String literal uses double quotes Use the best type to match needs If type is too large, space is wasted If type is too small, loss of precision There are floating point literals 3.14159 -1.0 Java treats literals as doubles Exception: specifically ask for a literal of type float 3.14159F Data type is char 9 is a char, while 9 is an int A char can store any symbol in the Unicode character set, Appendix C in your book. 8 More on Characters Unicode uses 16 bits per character Some symbols included in Unicode set: Uppercase Letters A, B, C true false Booleans Booleans variables can hold one of two values Lowercase Letters a, b, C Punctuation ., {, ] Digits 0, 1, 9 Booleans are like a light switch: on/off Just 1 bit needed, but uses 8! Why? The reserved words true and false are Boolean literals Example: boolean finishedLecture = true; Primitive Data Types byte (8) short (16) int (32) long (64) char (16) Using Multiple Variables We now can: Declare variables Assign values to variables float (32) double (64) boolean (8) Next step: Combine multiple variables into expressions What are Expressions Expressions are composed of operands and operators Operands are variables or objects Cover operators in detail tomorrow Sample Expressions // Calculating multiples pitcherSize = numOfCups*CUP_SIZE; // Summing up numbers total = subtotal1 + subtotal2; // Computing an average avg = total / count; // The Pythagorean Theorem aSquared = (b*b) + (c*c); Example: +, -, \ 9 Sample Code Fragment final int GRADE_FOR_A = 90; float test1=86, test2=90, test3=93; float pointTotal, avg; int testCount=3; // Compute the average pointTotal = test1+test2+test3; avg = pointTotal / testCount; // Display the results System.out.println(After + testCount + tests, + the test average is + avg); System.out.println(Note that an A requires an + average of at least + GRADE_FOR_A); Sample Code Fragment JBuilder Demo of the code fragment For Next Class Reading: Sections 2.5-2.9 More Expressions, Operators, and Methods Program 0 is due today at 11pm Homework 0 is due tomorrow in class Program 1 will be handed out tomorrow! 10
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Yonsei University - ASTRONOMY - 1000
Administrative Issues Due TodayProgrammingLecture 2 Signed Honor Pledge Explore Blackboard Any problems with access to course pages? Ongoing Program 0 Read submission instructions! Any problems? New Assignments Homework 0 Office Hou
Yonsei University - ASTRONOMY - 1000
Homework0Name: Sung June PyunPart 11.3 How many unique items can be represented with each of the following? 1 bit: 2 3 bits: 8 6 bits: 64 8 bits: 256 10 bits: 1024 16 bits: 2161.17. Why are the following valid Java identifiers not considered go
Michigan State University - ISS - 210
Dr. Cyrus S. Stewart ISS 2101. 2. 3. 4. 5. 6.Spring 2009 Take-homeAs our choices become more complex, we will increasingly rely on: (1) logical analysis (2) appraisals of reality (3) behavioral short-cuts (4) unconscious process The amount of st
Michigan State University - ISS - 210
February 9th 2009 Low degree of self differentiation- we eliminate attachments outside the group Degrees of cohesion Interact- external, internal and psychological It is helpful that an early group acts a lot the same _ is no likely in high
Michigan State University - ISS - 210
Dr. Cyr us S. S tew ar t IS S 210 Society and the I ndividualSpring 2009 5K Ber key Hall (basement) Phone: 3-6775 Of fice Hour s: T ue and T hur s, 1-3 pm and by a ppointmentCOURSE OUTLINEPRINCIPL ES AND CRIT ERIA FOR I SS COURSES To assist s
Michigan State University - LB - 171L
The ideal gas law The Density of gases Partial pressures Stoichiometry i gas reactions ( St i hi t in ti (part 1) tWednesday, January 14thAs we saw on Monday a pop bottle can only handle so much Monday, pressure. If the bottle exploded when the n
Michigan State University - LB - 171L
Gas Rxn Stoichiometry Effusion/Diffusion Eff /D ff Real GasesJanuary 21st, 2009CO 2.0 L 3.0 atmH2 0.50 L 2.0 atmCO (g) + 2 H2 (g) -> CH3OH (g) at 0C What is the pressure of CH3OH produced? What is the total pressure in the vessel after the
Michigan State University - LB - 171L
Richard Bayliss (a.k.a Trey) Section 8 Dr. Laduca LB 171If I had $100,000 to Spare (lol)If I had $100,00 to spare and I had to invest it in an alternative energy I would spread it out between two types of energy. First, I would but $50,00 in to bi
Michigan State University - LB - 171L
Richard Bayliss Dr. Laduca LB 171 12 Nov 2008AspirinAspirin, or acetylsalicylic acid, is a common household organic molecule that many people use almost every day. Many people take this organic molecule for granted it has a surprisingly simple str
Michigan State University - LB - 171L
Exam 2 Practice Questions1. A chemist is trying to determine the reaction order of the reaction she is conducting in lab. She remembers from her general chemistry class that a straight-line plot can be used in this situation. How would she plot her
Michigan State University - LB - 171L
Exam 2 Practice Questions1. A chemist is trying to determine the reaction order of the reaction she is conducting in lab. She remembers from her general chemistry class that a straight-line plot can be used in this situation. How would she plot her
Michigan State University - LB - 171L
Hydrogen sulfide reacts with sulfur dioxide to give H2O and S, H2S + SO2 = H2O + S(solid), unbalanced. If 6.0 L of H2S gas at 750 torr produced 3.2 g of sulfur, calculate the temperature in C.Solution Balanced reaction:2 H2S + SO2 = 2 H2O + 3 S(s
Michigan State University - LB - 171L
Hydrogen sulfide reacts with sulfur dioxide to give H2O and S, H2S + SO2 = H2O + S(solid), unbalanced. If 6.0 L of H2S gas at 750 torr produced 3.2 g of sulfur, calculate the original temperature of the H2S in C.A 10.73 g sample of PCl5 is placed i
Michigan State University - LB - 171L
Solutions to exam review questions: 1) a. no base has been added HF initial = 0.025 L (0.4 M) = 0.01 mol HF * Ka ice table* HF + H2O H3O+ + FKa = 3.5 x 10-4 = (x2)/ (0.4 - x) I 0.4 -0 0 *can use cheat b/c (100)3.5 x 10-4 < 0.4 C -x -+x +x Ka = 3.5
Michigan State University - LB - 171L
EXAM 2: LB 172 PRACTICE PROBLEMS JULIAN THWAINEY1. The boiling point elevation of a solution of 0.177 mol of a sugar in 53 g of water is 1.713 C. Calculate kb?Tb = miK b K b = molal boiling point elevation constant different for every every liquid
Michigan State University - LB - 171L
This document contains extra practice problems involving equilibrium, acid/base, buffer, and titration calculations. The exam will also include short answer conceptual questions on these topics.1. A 0.0560 g quantity of CH3COOH is dissolved in enou
Michigan State University - LB - 171L
This document contains extra practice problems involving equilibrium, acid/base, buffer, and titration calculations. The exam will also include short answer conceptual questions on these topics.1. A 0.0560 g quantity of CH3COOH is dissolved in enou
Michigan State University - LB - 171L
Grading the partition Coefficient Report:Title Page/ 0.1 Authors Date Section LAs Professor One paragraph Summary of Experiment o Goal of the research .i Do not use the purpose of this lab. o Method used .ii This should be an overall descript
Michigan State University - LB - 171L
Grading Rubric for Vitamin Lab Title Page 0.1 Solutions A and B, unknown, blank and 2 different vitamins (0.3 per test 2.7 total) Description - 0.05 Observation 0.05 Conclusion with proper chemical equation 0.2 Description of preparation of vitam
Michigan State University - LB - 171L
Secret Writing ReportTitle: (0.1) Authors Date Section LAs Professor Abstract: (0.3) One paragraph Summary of Experiment o Goal of the research .i Do not use the purpose of this lab. o Method used .ii This should be an overall description only sal
Michigan State University - LB - 171L
Instructions for writing the formal report for the partition coefficient labDuring last semester, I noticed that several reports I graded had a dissonance in the formal report. It was obvious that more than one person wrote the report, with one taki
Michigan State University - LB - 171L
IDESInterior Design217Water and the Environment Fall, Spring. 3(3-0) P:M: (MTH 103 or MTH 110 or MTH 116 or LBS 117 or MTH 106 or concurrently or MTH 124 or concurrently or MTH 132 or concurrently or MTH 201 or concurrently or STT 200 or concurre
Michigan State University - LB - 171L
LB 172L Lab 1 First Week AssignmentFinding a Journal ArticleOne of the major goals of this laboratory class is to help you learn how to write a scientific lab report. Many of our expectations for your lab reports come from the requirements from pla
Michigan State University - LB - 171L
2 NO + Cl2 -> 2 NOCltrial 1 2 3 4 [NO] 0.25 0.5 0.25 0.5 [Cl2] 0.25 0.25 0.5 0.5 Rate (M/s) 1.43E-06 5.73E-06 2.86E-06 1.14E-05I- + ClO- + OH-(cat) -> IO- + Cltrial 1 2 3 4 [I-] [ClO-] [OH-] Rate (M/s) 0.01 0.02 0.01 0.01 0.02 0.01 0.01 0.01 0.01
Michigan State University - LB - 171L
Lab 1: Synthesis of FerrofluidsLaboratory Goals In this lab, you will: Learn how a ferrofluid is prepared Learn some properties and uses of ferrofluids Important Notes Do not get the ferrofluid liquid on your skin or clothing, as it will stain (p
Michigan State University - LB - 171L
Lab 4: Light Emitting DiodesLaboratory Goals In this weeks lab you will: fabricate a circuit containing a light emitting diode (LED) investigate the effect of chemical composition and temperature on the emission properties of LEDs. Introduction Li
Michigan State University - LB - 171L
Lab 10: Secret WritingLaboratory Goals In this lab you will: Apply logic and deductive reasoning to try to determine the chemical procedure used in a secret writing process. Use your chemical knowledge to understand why the method of secret writin
Michigan State University - LB - 171L
Lab 3: Finding the Partition Constant of an Organic AcidLaboratory Goals In this lab, you will: $ Practice the technique of titration $ Learn to use a separatory funnel $ Demonstrate your proficiency in titration by determining the extent that an ac
Michigan State University - LB - 171L
Lab 5 SYNTHESIS OF Co(NH3)6Cl3Laboratory Goals In this lab you will: Synthesize a cobalt compound Recrystallize the impure compound to form pure crystals Safety Notes You will be working with concentrated acids and bases and a very concentrated hy
Michigan State University - LB - 171L
Lab 7: CHEMICAL KINETICS TO DYE FORLaboratory Goals In this weeks lab you will: Determine concentrations via spectroscopy using Beers Law Determine the rate law for the reaction between bleach and two dyes Determine the rate constant for the same
Michigan State University - LB - 171L
Lab 8: Vitamin ExaminationLaboratory Goals In this lab you will: Learn how to test for cations and anions in a solution Use the inorganic material tests to analyze a multi-vitamin Safety Notes You will be working with concentrated acids and bases,
Michigan State University - LB - 171L
Lab 8: Finding a MechanismLaboratory Goals In this weeks lab you will: Propose and support a mechanistic pathway for an observed chemical reaction Safety Notes 1. The solution used this week in lab should be treated as being of unknown danger. Plea
Michigan State University - LB - 171L
Lab 9: Acid/Base chemistry and Buffer CapacityLaboratory GoalsIn this lab, you will: Demonstrate your proficiency at titration by analyzing a sample of an organic acid Examine the acid/base characteristics of an organic acid Determine the conce
Michigan State University - LB - 171L
LB 172L: Principles of General Chemistry II - Reactivity Laboratory ManualSpring 2009Written by: Dr. Steven Spees Dr. Holly BevsekEdited by Dr. Ryan Sweeder Dr. Maxine DavisI. INTRODUCTION Seeing is believingthis simple clich is the reason why
Michigan State University - LB - 171L
LBS 172L Chemical KineticsWeek of February 26 2008 Condition of Labs Balances not left clean Benches around balances extremely dirty Glassware left lying aroundNotices No ring stands should be left on benches with instruments (FTIR) or bala
Michigan State University - LB - 171L
LB 172LLab 1 Week of Jan 19 2009Outline Welcome OfficeHours General Issues Overview of the Lab Expectation Grading This weeks LabGeneral IssuesSafety GogglesThree strikes ruleclothes, etc Clean Closed when not in use No conta
Michigan State University - LB - 171L
Partition Constant of an Organic AcidWeek of February 2, 2009General Guidelines Do not pipette from stock bottle Pour liquid in small beaker and then take from this Do not return excess liquid to stock container as this leads to contamination
Michigan State University - LB - 171L
Ferrofluids All waste containing tetramethylammoniumhydroxide MUST be placed in waste container All solid waste with ferrofluids must be placed in solid waste container. NOT IN TRASH Colloid Micelle Ferromagnetic Paramagnetic Surfactant
Michigan State University - LB - 171L
Name: _ LBS 172 ChemistryDr. R. LaDucaSec. # _EXAM #1 Form BFebruary 1, 2008 In the spirit of fairness, please do not open your booklets until all students have received their exams. There are 5 pages in this exam booklet, including this cover
Michigan State University - LB - 171L
Name: _ LBS 172 ChemistryDr. R. LaDucaSec. # _EXAM #2 Form AFebruary 29, 2008 In the spirit of fairness, please do not open your booklets until all students have received their exams. There are 6 pages in this exam booklet. Before beginning wor
Michigan State University - LB - 171L
Michigan State University - LB - 171L
Michigan State University - LB - 171L
PROBLEMSET#9 akaLaDucatextbookrememberFAIL 1)ExplainwhyasolutionofHNO3andNaNO3isnotabuffer. 2a)WhatisthepHofa250mLsolutionthatcontains0.33MHCOOHand0.42M NaHCOO? b)WhatisthepHofthissolutionif4.00mLofa0.072MHNO3solutionisaddedto thissolution? c)10mLofp
Michigan State University - LB - 171L
LBS 172 Dr. R. La DucaPREDICTING SOLUBILITYof Ionic Compounds in Water "soluble" = has a large Ksp value; "insoluble" = has a small Ksp value Priority Rules: (always true)1. All compounds containing alkali metal cations (Li+, Na+, K+, Rb+, Cs+)
Michigan State University - LB - 171L
LB 172Chemistry II Spring 2009 Syllabus Instructor: Dr. Robert L. LaDuca, Associate Professor of Chemistry Office: E-194 Holmes Hall; Research Lab: Room 422, Chemistry Office phone: 432-2268 MWF, 355-9715 x241 TTh Email: laduca@msu.edu AOL Instant M
Michigan State University - LB - 171L
http:/www.cnn.com/2008/TECH/science/03/31/windpower/index.html Professor Garvey's idea of using Compressed Air Energy Storage (CAES) isn't a new one, but his methods are. Traditionally, CAES stows energy in a vast underground reservoir. During peak e
Michigan State University - LB - 171L
LB 172 Spring 2009 Dr. R. LaDuca Group ProjectDOUBLE-EDGED CHEMICALSThe decision about whether a chemical product is brought to market is not an easy one in many cases. Very often, a chemical may have extremely beneficial uses but may be poisonous
Michigan State University - LB - 171L
Results and Calculations: 1st 2nd 1st titration titration titration Concentratio (NaOH) (NaOH) n Salicylic acid (Molarity)2nd titration Concentrati on Salicylic acid (Molarity)1st Titratio n Partitio n Consta nt 1.3332nd Titratio n Partitio n C
Michigan State University - LB - 171L
Results and Calculations: 1st 2nd 1st titration titration titration Concentratio (NaOH) (NaOH) n Salicylic acid (Molarity)2nd titration Concentrati on Salicylic acid (Molarity)1st Titratio n Partitio n Consta nt 1.3332nd Titratio n Partitio n C
Michigan State University - LB - 171L
History Chemical properties Then help with cons (Angela) Arp 23 References General idea Outline Dichloro-Diphenyl-TrichloroethaneMolecularformulaC14H9Cl5Molarmass354.49g/molDensity0.99g/cm[1]Meltingpoint 109C[1] Boilingpoint decomp.[1]First synthe
Michigan State University - LB - 171L
Conclusion:
Michigan State University - LB - 171L
http:/www.bambooheadquarters.com/store/productdetail.php?scode=P HYNIG http:/www.willisorchards.com/product/Black+Bamboo+Plant http:/www.bamboogarden.com/Phyllostachys%20nigra.htm http:/davesgarden.com/products/market/view/4968/
University of Florida - CHM - 2046L
Cations: Na+, K+, NH4+ Anions: Cl-, NO3-, SO42-, HSO4-, OHpH Test: Test the pH using indicators. Indicator Methyl Violet Methyl Orange Bromphenol Blue Bromcresol Green Methyl Red Bromthymol Blue Thymol Blue Phenolphthalein Alizarin Yellow R Indigo Ca
University of Florida - CHM - 2046L
1.) Description of Sample a. Phase: b. Color: c. Odor: d. Shape: Flame Testing for Na+ e. Bushy Yellow/Orange Na+ is present i. Possible: K+, NH4+, Ca2+, Al(H2O)3+, Mg(H2O)2+ f. Red or Red/Orange Ca2+ i. Possible: K+, NH4+, Al(H2O)3+, Mg(H2O)2+ g.
Bergen Community College - CS - 191
C/CS/Phys 191 Fall 2003Bell States, Bell InequalitiesLecture 28/28/03Entanglement, Bell States, EPR Paradox, Bell Inequalities.1 One qubit:Recall that the state of a single qubit can be written as a superposition over the possibilities 0 a
University of Texas - PHY - 58020
Su (ycs73) HW01 Tsoi (58020) This print-out should have 19 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. 001 (part 1 of 2) 10.0 points A person travels by car from one city to anothe
University of Texas - PHY - 58020
Su (ycs73) HW03 Tsoi (58020) This print-out should have 30 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. 001 10.0 points There is friction between the block and the table. The suspen
University of Texas - PHY - 58020
Su (ycs73) HW04 Tsoi (58020) This print-out should have 27 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. 001 (part 1 of 2) 10.0 points Two satellites A and B orbit the Earth in the s
University of Texas - PHY - 58020
Su (ycs73) HW05 Tsoi (58020) This print-out should have 23 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. 001 (part 1 of 2) 10.0 points A 500-N crate needs to be lifted 1 meter vertic
University of Texas - PHY - 58020
Su (ycs73) HW06 Tsoi (58020) This print-out should have 24 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. 001 10.0 points An object having an initial momentum that may be represented
University of Texas - PHY - 58020
Su (ycs73) HW07 Tsoi (58020) This print-out should have 26 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. 001 (part 1 of 4) 10.0 points Consider a rod of length L and mass m which is