Take out a piece of paper and PEN.

Slides:



Advertisements
Similar presentations
Add title Add a picture or a description. Question 1(True) Click to type your question here I have made this an easy True/false question true False Next.
Advertisements

PreAP Computer Science Quiz
Chapter 2: Modularization
AP Computer Science DYRT Quiz Key
Determine whether each curve below is the graph of a function of x. Select all answers that are graphs of functions of x:
Find the period of the function y = 4 sin x
PreAP Computer Science Quiz
Today’s Mental Math Write the date and number 1-10 Today’s title: MM #13 Practice Quiz It will start in 2 minutes and 0 seconds It will start in 1 minute.
Mrs. Malone Geometry/Algebra ext
Python quick start guide
CS102 Introduction to Computer Programming
PreAP Computer Science Quiz
PreAP Computer Science Quiz
PreAP Computer Science Quiz
Computer Science Reading Quiz 6.2 (Sections )
Date: AgendaHW: Concept DefinitionExample/detail Set up a page in your biology notebook like this:
What does a computer program look like: a general overview.
PreAP Computer Science Review Quiz 08 Key
PreAP Computer Science Quiz Key
Procedural Programming Criteria: P2 Task: 1.2 Thomas Jazwinski.
Warm Up. September 23, 2014 Materials: pencil, Journal, red pen, glue, ruler 1.Copy your Agenda if you did not do it Monday. 2.Record the correct solutions.
PreAP Computer Science Quiz
Java™ How to Program, 9/e © Copyright by Pearson Education, Inc. All Rights Reserved.
Bellwork: Binder Quiz Put your textbook away. Take out a ½ sheet of paper. Show all work, pictures, solution etc. for the following problems: 1. Pg. 7.
Use Flowchart modeling to design and create an interactive quiz to be run on Powerpoint. Start Question Click to start the quiz Correct Incorrect, try.
Quiz 6 Put everything away except paper and pens. Write your name, Art 1B, and date on the top.
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.
PreAP Computer Science Quiz
PreAP Computer Science Quiz Key
AP Computer Science DYRT Quiz
Take out a piece of paper and PEN.
Objective You will be able to define the basic concepts of object-oriented programming with emphasis on objects and classes by taking notes, seeing examples,
PreAP Computer Science Quiz
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.
1.1: Objects and Classes msklug.weebly.com. Agenda: Attendance Let’s get started What is Java? Work Time.
AP Computer Science DYRT Quiz
CS 106 Introduction to Computer Science I 10 / 10 / 2007 Instructor: Michael Eckmann.
Bell Quiz. Objectives Simplify expressions using the properties of real numbers. Discuss the numeric example for each property and relate it to the general.
Question 01 Which of the following can be stored by a simple or primitive data type? (a)Only 1 single value (b)Only Attributes (c)Only Methods (d)Both.
1 Quiz Show Programming Terms. 2 Alice - 3D Virtual Programming Vocabulary Quiz Board Chapter 1 Chapter 2a Chapter 2b Chapter 3 Chapter 4 $100 $200 $300.
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.
Which of the following statements is true for this triangle?
Sum and Difference Identities for the Sin Function
PROGRAM STRUCTURE CSC 111.
Pre-AP® Computer Science Quiz Key
Pre-AP® Computer Science Quiz
Design and Implementation
Monday 1. I am tardy to class if I am out of my seat and/or still talking when the bell rings. 2. The first thing I should do when the bell rings is.
Take out a piece of paper and PEN.
PreAP Computer Science Review Quiz 08
PreAP Computer Science Quiz Key
IPC144 Introduction to Programming Using C Week 4 – Lesson 1
Take out a piece of paper and PEN.
Click on the icon above to hear the narration.
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.
Click on the icon above to hear the narration.
IPC144 Introduction to Programming Using C Week 4 – Lesson 2
Take out a piece of paper and PEN.
AP Computer Science DYRT Quiz
Click on the icon above to hear the narration.
True or False True or False
Click on the icon above to hear the narration.
Pre-AP® Computer Science Quiz
Click on the icon above to hear the narration.
Presentation transcript:

Take out a piece of paper and PEN. Exposure Java 2015 for Teaching AP® Computer Science DYRT Quiz 07.01-05 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 Quiz 07.01-05 1. 2. 3. 4. 5. 6. 7. 8. 9. 10.

Question 01 Which of the following can be stored by a simple or primitive data type? Only 1 single value Only Attributes Only Methods Both Attributes and Methods

Question 02 Which of the following can be stored by a an object? Only 1 single value Only Attributes Only Methods Both Attributes and Methods

Question 03 A method can be a ___________ method. void return class object all of the above.

Question 04 Which of these are Math class methods? sin cos tan log All of the above

Question 05 Modular programming places statements that achieve a common purpose into its own module. specifies "one task, one module". is an important programming design concept. all of the above.

Question 06 Using the name of the class is _______ if you are calling a method from the same class. optional required forbidden

Question 07 Using the name of the class is _______ if you are calling a method from a different class. optional required forbidden

Question 08 True or False: Programs should be written by placing all of the program statements in the main or paint methods. True (b) False

Question 09 True or False: In a well-designed program, the main or paint method will look like an outline. True (b) False

Question 10 The initial house program is an example of a program that needs to be divided into methods. shows good modular programming. is easy to debug to make corrections. is small enough to fit inside the paint method.