Computer Science Reading Quiz 6.2 (Sections )

Slides:



Advertisements
Similar presentations
PreAP Computer Science Quiz
Advertisements

Instructions for Cell Cycle Foldable
AP Computer Science DYRT Quiz Key
Chapter 3 Simple Graphics. Side Effects and Haskell  All the programs we have seen so far have no “side-effects.” That is, programs are executed only.
PreAP Computer Science Quiz
PreAP Computer Science Quiz
Agenda For Feb Finish up Unit 3 Exercises on page Unit 4 Exercises on page 33. Question #2 3. Create a Happy Face Java Applet (due next class).
PreAP Computer Science Quiz
Java for Beginners University Greenwich Computing At School DASCO
Computer Graphics Lecture 1 July 11, Computer Graphics What do you think of? The term “computer graphics” is a blanket term used to refer to the.
1 Grade Chapter  To know Parts of the computer, follow these steps as shown below:
Review of Math Class Methods abssqrt minmax powround ceilfloor.
PreAP Computer Science Quiz
PreAP Computer Science Review Quiz 08 Key
PreAP Computer Science Quiz Key
 In computing, an input device is a peripheral (piece of computer hardware equipment) used to provide data and control signals to an information processing.
PreAP Computer Science Quiz
Review of Math Class Methods abssqrt minmax powround ceilfloor.
Visual Classes 1 Class: Bug 5 Objects: All Bug Objects.
AP Computer Science DYRT Quiz Key
Take out a piece of paper and PEN. The quiz starts ONE minute after the tardy bell rings. You will have 45 – 90 seconds per question. Determine the output.
Friday, February Turn in your Matter Storyboard and your Vocab Poster. Remember, your Study Guide is due Monday (at the BEGINNING of class). 2. Take.
PreAP Computer Science Quiz
PreAP Computer Science Quiz Key
AP Computer Science DYRT Quiz
Take out a piece of paper and PEN.
PreAP Computer Science Quiz
CSC 142 H 1 CSC 142 Standard input/output. CSC 142 H 2 Console Ouput  Use the static PrintStream object out in System System.out.println("Hello, world");
Take out a piece of paper and PEN.
PreAP Computer Science Quiz Take out a piece of paper and PEN. The quiz starts ONE minute after the tardy bell rings. You will have 30 – 60 seconds.
Instructions for Cell Cycle Foldable
Slides prepared by Rose Williams, Binghamton University Console Input and Output.
Today’s Activity Solving Multi-Step Equations. Instructions You should have a baggie of colored strips. Using the strips provided, have each person of.
1 Project 4: Computing Distance. 222 Computing Distance Write a program to compute the distance between two points. Recall that the distance between the.
AP Computer Science DYRT Quiz
Question 01 Return methods always (a)calculate some mathematical formula. (b)display a value. (c)return a value. (d)use numerical values.
Warm-up 1/25/16 Clear your desk of all materials You will be taking a pop quiz on lab safety, classroom rules and observation vs. inference No Strings.
Experimenting with Grammars to Generate L-Systems – in JFLAP March 31, 2011 Prof. Susan Rodger Computer Science Dept.
Take out a piece of paper and PEN. The quiz starts TWO minutes after the tardy bell rings. You will have 30 seconds per question. Exposure Java 2014 for.
Instructions for Cell Cycle Foldable
Instructions for Cell Cycle Foldable
INPUT STATEMENTS GC 201.
Tips for Creating Graphs
Computers & Programming Languages
Tides Foldable.
Name: _______________________________
Pre-AP® Computer Science Quiz Key
Pre-AP® Computer Science Quiz
Instructions for Cell Cycle Foldable
Instructions for Cell Cycle Foldable
Take out a piece of paper and PEN.
Turn in your Homework to the box before the tardy bell rings.
PreAP Computer Science Review Quiz 08
What Color is it?.
PreAP Computer Science Quiz Key
Take out a piece of paper and PEN.
PreAP Computer Science Quiz
Click on the icon above to hear the narration.
Take out a piece of paper and PEN.
Take out a piece of paper and PEN.
Take out a piece of paper and PEN.
AP Computer Science DYRT Quiz
Take out a piece of paper and PEN.
Color Box Button - Gray Type : object Type : object Type : object
Let’s Learn the Basic Colors
Click on the icon above to hear the narration.
Independent Variables Click on the icon above to hear the narration.
Pre-AP® Computer Science Quiz
CHOCOLATES. CHOCOLATES Refraction.
Click on the icon above to hear the narration.
Presentation transcript:

Computer Science Reading Quiz 6.2 (Sections 6.5-6.8) Take out a piece of paper and PEN. The quiz starts TWO minutes after the tardy bell rings. You will have 30 seconds per question.

Title the quiz as shown below The quiz starts in ONE minute. Name Period Date Reading Quiz 6.2 1. 2. 3. 4. 5. 6. 7. 8. 9 10. EC.

Question 01 Which class controls the output appearance of numbers? Math Random DecimalFormat Scanner

Question 02 Which of the following is a method of the DecimalFormat class? nextInt. setSeed. new. format.

Question 03 What are the three color values used by Java to display any color Graphics object? red, yellow and green red, green and blue red, white and blue red, green and yellow

Question 04 Java graphics objects can generate more than ______ color combinations. 1,000 10,000 100,000 1,000,000

Question 05 Which Graphics method changes color? setColor newColor makeColor setRGB

Question 06 Objects without identifiers are called _____ objects. unnamed class constructor anonymous

Question 07 Which class makes it possible to draw a six-sided polygon? Hexagon Octagon Polygon drawPolygon

Question 08 Which of the following is/are a method(s) of the Scanner class? nextLine nextInt nextDouble All of the above

Question 09 Which of the following indicates keyboard input? System.keyboard System.in Keyboard.input

Question 10 The Scanner class is part of the _____ package. util lang applet textformat

Extra Credit Using the Scanner class with numbers and strings can have unexpected results. These unexpected results may be cured by using the new operator. using a dummy String variable. only integer values with strings. only real number values with strings.