9 Pages

lecture4

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

Word Count: 1529

Document Preview

Issues Expressions, Administrative Objects, and Class Methods Lecture 4 Due Today Homework 0 New Assignments Program 1 Assigned First real programming assignment WILL BE TIME CONSUMING! WORK OVER THE LONG WEEKEND! From Last Time Types, Variables, Assignment Example: float testAvg; testAvg = 98.43; Assignment Identifier Why Expressions? How do we find the test average? Example: int test1, test2,...

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 Expressions, Administrative Objects, and Class Methods Lecture 4 Due Today Homework 0 New Assignments Program 1 Assigned First real programming assignment WILL BE TIME CONSUMING! WORK OVER THE LONG WEEKEND! From Last Time Types, Variables, Assignment Example: float testAvg; testAvg = 98.43; Assignment Identifier Why Expressions? How do we find the test average? Example: int test1, test2, test3; float testAvg; test1 = 95; test2 = 84; test3 = 90; testAvg = WHAT GOES HERE? = Expression Expressions are much more than just literals! ; Expressions Expression Combination of one or more operands and operators Common Arithmetic Operators Operation Addition Subtraction Multiplication Division Remainder Operands Data to be operated on Constants, Variables, Literals, Objects, Java Numeric Example Symbol (Not Java) + * / % 17 + 2 = 19 10 5 = 5 3 * 4 = 12 12 / 4 = 3 10 % 4 = 2 Operators The operation to be performed Addition, Subtraction, Division, 1 Operands and Data Types Type of operands determines type of expression result Operand Types Both Integers Both Reals Mix of Reals/Integers Result of Expression Type Integer Real Real Example Expressions Expression 4+3 4.0 3 4.0 * 3.0 4 / 3.0 4/3 4.0 / 3.0 Result 7 1.0 12.0 1.33 1 1.33 Longer Expressions Combine multiple operations to form long expressions int test1, test2, test3, sum; float testAvg; test1 = 95; test2 = 84; test3 = 90; sum = test1 + test2 + test3; testAvg = sum / 3.0; Order of Operations int num1; num1 = 10 + 10 / 2; What is the value of num1? If addition is first, 10 If division first, 15 Order of Operations Each operator has a precedence level Operations performed in order of level Like algebra, * before + Javas Precedence Levels Precedence Level 1 Operator + * / % + + = Operation Unary Plus (Positive) Unary Minus (Neg) Multiplication Division Remainder Addition Subtraction String Concatenation Assignment On same level, operations performed left-to-right Parenthesis used to change order Example: (5+5)*2 5+5*2 2 3 4 2 Test Average int test1, test2, test3; float testAvg; test1 = 95; test2 = 84; test3 = 90; testAvg = (test1+test2+test3)/3.0; 2 Minute Exercise What value is returned from each expression? 5+7/2 (5+7)/2 (5+7)/2.0 5.0+7/2 5.0+7.0/2.0 (5+4+3+2+1)/2 6%5+4%3+2%1 Back to Data Types Recall, not all integers are the same byte, short, int, long Data Type Conversion Values can be converted from one type to another Three ways Assignment Conversion Arithmetic Promotion Casting Not all real numbers are the same float, double Difference is number of bytes used to store data More bytes more possible values Assignment Conversion Occurs when a value of one type is assigned to a variable of another Example: float money; int dollars = 5; money = dollars; Value of dollars becomes a float Arithmetic Promotion Occurs automatically needed to perform an operation Example: float result, sum = 24.0; int count = 5; result = sum / count; Value of count becomes a float 3 Casting Programmer specifically requests conversion Casting requested with type name in parentheses Example: float avg; int total, count; avg = (float)total / count; Value of total becomes a float, so avg doesnt use integer division! Widening / Narrowing Conversions can change precision of data Widening: Added Precision Example (8 bit byte to 32 bit int): byte grade = 100; int widerGrade = (int)grade; Narrowing: Lower Precision Example (16 bit short to 8 bit byte): short roadTripMiles = 129; byte miles = (byte)roadTripMiles; CAUTION: Narrowing is dangerous! byte has range [-128,127]. 129 becomes -127! Review So far Using objects Variable declarations Assignment statements Expressions Type Conversions Creating Objects Variables can hold one of two things A primitive value A reference to an object Variables declared with a type or class int String Next? Creating Objects Examples: int myOffice; String myName; Variable Initialization Variable values need to be initialized Unitialized Examples: int myOffice; String myName; new Operator Objects are instantiated via the new operator An object is an instance of a class My car is an instance of a Honda Civic Initialized Examples: int myOffice = 365; String myName = new String(Dave); After the new operator, a constructor initializes the object Constructor has same name as the class String myName = new String(Dave); Constructor 4 Instantiated Objects After instantiation, dot notation to call methods Remember System.out.println()? Example for String: int size; String myName = new String(Dave); size = myName.length(); The String Class String(String str); Constructor to create new String objects String myName = new String(Dave); char charAt(int index); Returns the character at a given position char lastLetter = myName.charAt(3); Index of letters starts with 0! If n letters in a string, last letter is at position n-1. More String Methods boolean equals(String str); Returns true if two strings have the same characters boolean result = myName.equals(aStr); String Declarations Standard declaration uses the constructor String myName = new String(Dave); int length() Returns the number of characters in a string int size = myName.length(); String objects are so common, Java provides a shorter declaration String = myName Dave; More String methods in Figure 2.8 Full class reference in Appendix M 2 Minute Exercises With more tools, problems get harder From here until end of semester, work in groups of 2 or 3 Each group should have a spokesperson After the exercise, Ill ask the spokesperson for each group for their answer 2 Minute Exercise What output is produced by the following? char result; int size; String myName = new String(Dave); size = myName.length(); result = myName.charAt(size%2); System.out.println(result); result = myName.charAt((size+1)%2); System.out.println(result); 5 Class Libraries Java programs use lots of classes A Class Library is a set of classes to support program development Class libraries can provide methods that are very helpful, but are not technically part of the Java language For example, the String class is not part of the Java language! Class Libraries The String class is part of the Java standard class library The standard class library contains classes that can be used in any Java IDE The System class we use for output is also in the standard class library Packages A library may contain several groups of classes Each group of classes is a package Package Library Class More Packages The String class is in the java.lang package The System class is in java.lang as well You can create your own packages and libraries! More Packages Classes you write for your assignments will be in their own package The import Declaration Classes in java.lang are automatically available in Java programs String, System, many more To use classes in other packages, there are two options Fully quality the class name Import the package or class 6 The Random Class The class Random is used to generate random numbers Random numbers are needed in many programs Example: Card game to shuffle the deck Importing Random Avoids fully qualifying a class name Example: import java.util.Random; Random is in the java.util package Not automatically available After importing a class, you can reference it by its unqualified name (i.e. Random) To import a whole package: import java.util.*; Two options You can reference the class as java.util.Random Or, you can use an import statement Partial list of packages in standard library: page 94 The Random Class Random(); Constructor to create new Random objects Random generator = new Random(); More Random Methods int nextInt(); Returns a random integer Uniform distribution across all ints int val = generator.nextInt(); float nextFloat(); Returns a random float in range [0,1] float val1 = generator.nextFloat(); int nextInt(int max); Returns a random int in range [0,max-1] int val1 = generator.nextInt(5); Examples: Random Class Assuming weve imported the Random class: Random generator = new Random(); int num1, num2; float num3; // Generate a random integer num1 = generator.nextInt(); // Generate a random integer from 0 to 9 num2 = generator.nextInt(10); // Generate a float from [0-1] num3 = generator.nextFloat(); Invoking Class Methods Some methods are invoked without instantiating an object Known as Static Methods or Class Methods Example classes with static methods: Math: some basic math functions Keyboard: user input Call class methods using dot notation from the class name Math.cos(3.14159); 7 Example: HondaCivic Define a class of HondaCivic Create two objects HondaCivic johnsCar = new HondaCivic(); HondaCivic janesCar = new HondaCivic(); Math Class List of common methods in Figure 2.13 Full list in Appendix M Some provided functions abs cos, sin, tan acos, asin, atan pow sqrt All Civics have same gas tank size Static method of class HondaCivic HondaCivic.getGasTankSize(); Each object has different amount in the tank Regular method, called from a specific object johnsCar.getGasTankContents(); Math Class Examples float val1, val2, a, b, c; // Checking for close numbers if (Math.abs(val1val2) < 0.1) then System.out.println(Close!); // Pythagorean theorem val1 = Math.pow(b,2)+Math.pow(c,2); a = Math.sqrt(val1); Keyboard Class Keyboard provides static methods to help read input from the keyboard Hides details of input: encapsulation Not part of the Standard Library! Written by book authors Lewis and Loftus Part of package cs1 Youll need this for Program 1! Installation instructions on Blackboard Keyboard Class Methods No constructor! Static methods static static static static static static static static static boolean readBoolean() byte readByte() char readChar() double readDouble() float readFloat() int readInt() long readLong() short readShort() String readString() Example Keyboard Program import cs1.Keyboard; public class HelloUser { // Asks the user for their name, then // says hello public static void main(String[] args) { String userName; System.out.print(What is your name?); userName = Keyboard.readString(); System.out.println(Hello, + userName); } } 8 2 Minute Exercise Write a code fragment to do the following Asks a user to enter two integers Prints out the value of: num1num2 JBuilder Demos Expressions Using the Keyboard class Using the Debug feature of JBuilder For Next Class Reading: Sections 3.0-3.3 Get started on Program 1 and bring your questions! No class on Monday! Enjoy the long weekend. But use the weekend to work on Program 1! 9
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
An Introduction What is Comp14 all about? Is this course for me? Course InformationInstructor: David Gotz The course web pages Syllabus About the instructor A little about you. JBuilder A Brief Introduction to Computing Name: Da
Yonsei University - ASTRONOMY - 1000
Administrative IssuesObjects, Variables, and TypesLecture 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! Ongoi
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) -&gt; 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 &lt; 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 -&gt; 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) -&gt; 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 &quot;soluble&quot; = has a large Ksp value; &quot;insoluble&quot; = 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