AP Computer Science DYRT Quiz

Slides:



Advertisements
Similar presentations
PreAP Computer Science Quiz
Advertisements

6-1 Chapter Goals Determine whether a problem is suitable for a computer solution Describe the computer problem-solving process and relate it to Polya’s.
Chapter 6 Problem Solving and Algorithm Design. 6-2 Chapter Goals Determine whether a problem is suitable for a computer solution Describe the computer.
AP Computer Science DYRT Quiz Key
ITEC200 Week01 Introduction to Software Design.
Liang,Introduction to Java Programming,revised by Dai-kaiyu 1 Chapter 10 Object-Oriented Modeling.
Chapter 6 Problem Solving and Algorithm Design Nell Dale John Lewis.
Chapter 1 Software Engineering. Homework ► Read Section 2.2 (pages 79-98) ► Answer questions: ► 7, 8, 11, 12, & 13 on page 134. ► Answer on paper, hand.
Introduction to Software Design Chapter 1. Chapter 1: Introduction to Software Design2 Chapter Objectives To become familiar with the software challenge.
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.
Advanced Database CS-426 Week 2 – Logic Query Languages, Object Model.
PreAP Computer Science Quiz
PreAP Computer Science Quiz
Software Architecture & Complexity By:- Pardesi Band Group
Learning about Programming Languages By: Mike and Sean.
Miscellaneous Terms. Math Notations Infix notation: Prefix notation: Postfix notation: Infix notation: 3*(6-4) Prefix notation: * -
PreAP Computer Science Quiz
Multiple Inheritance Mark Hennessy Dept. Computer Science NUI Maynooth C++ Workshop 18 th – 22 nd September 2006.
Computer Science Reading Quiz 6.2 (Sections )
PreAP Computer Science Review Quiz 08 Key
PreAP Computer Science Quiz Key
CIS 112 Exam Review. Exam Content 100 questions valued at 1 point each 100 questions valued at 1 point each 100 points total 100 points total 10 each.
ITEC 3220A Using and Designing Database Systems Instructor: Gordon Turpin Course Website: Office: CSEB3020.
1 CSCD 326 Data Structures I Software Design. 2 The Software Life Cycle 1. Specification 2. Design 3. Risk Analysis 4. Verification 5. Coding 6. Testing.
12/4/20151 Introduction To Computer Science Bina Ramamurthy.
UMass Lowell Computer Science Java and Distributed Computing Prof. Karen Daniels Fall, 2000 Lecture 9 Java Fundamentals Objects/ClassesMethods Mon.
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
Chapter 4 Basic Object-Oriented Concepts. Chapter 4 Objectives Class vs. Object Attributes of a class Object relationships Class Methods (Operations)
PreAP Computer Science Quiz Key
Take out a piece of paper and PEN.
PreAP Computer Science Quiz
Lecture 2: Review of Object Orientation. © Lethbridge/La ganière 2005 Chapter 2: Review of Object Orientation What is Object Orientation? Procedural.
Banaras Hindu University. A Course on Software Reuse by Design Patterns and Frameworks.
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.
COP 2220 Computer Science I Topics –Breaking Problems Down –Functions –User-defined Functions –Calling Functions –Variable Scope Lecture 4.
Question 1 Which of the following requires object database technology? A. Storing employee picture on disk B. Retrieving an employee picture C. Retrieving.
AP Computer Science DYRT Quiz
CSCE 240 – Intro to Software Engineering Lecture 3.
Debuggers. Errors in Computer Code Errors in computer programs are commonly known as bugs. Three types of errors in computer programs –Syntax errors –Runtime.
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.
ICS 3UI - Introduction to Computer Science
Sections Basic Concepts of Programming
Chapter 19: Interfaces and Components
Pre-AP® Computer Science Quiz Key
Pre-AP® Computer Science Quiz
CSE 1020:Programming by Delegation
Chapter 19: Interfaces and Components
Take out a piece of paper and PEN.
PreAP Computer Science Review Quiz 08
PreAP Computer Science Quiz Key
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.
Click on the icon above to hear the narration.
Take out a piece of paper and PEN.
AP Computer Science DYRT Quiz
Take out a piece of paper and PEN.
Click on the icon above to hear the narration.
Click on the icon above to hear the narration.
Click on the icon above to hear the narration.
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:

AP Computer Science DYRT Quiz 15.06- 08 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 15.06-08 1. 2. 3. 4. 5. 6. 7. 8. 9 10.

Question 01 Which of the following are class interactions? Encapsulation, inheritance, polymorphism Encapsulation, inheritance, composition Inheritance, composition, polymorphism Utility, Inheritance, Composition

Question 02 What is a good example of a utility class? Math ArrayList String Actor

Question 03 An “is-a” relationship between two classes means composition interaction. utility interaction. inheritance interaction. none of the above.

Question 04 A class, which provides tools to be used by another class, such as the Math class, means composition interaction. utility interaction. inheritance interaction. none of the above.

Question 05 A unit class is a class that contains the attributes and methods of a superclass. subclass. single practical unit. package of classes.

Question 06 Classic examples of unit class are Student. Patient. Employee. all of the above.

Question 07 The secret of managing complex program, or programs is to create a top-down chart. combine smaller, similar problem into one unit. divide the problem into manageable chunks. create many utility classes.

Question 08 The three types of errors are compile, runtime and logic. computer, programmer and user. arrayOutOfBounds, IO and arithmeticFormat. statement, method and class.

Question 09 Logic errors are automatically caught by the compiler. require thorough test data. are only warnings about small problems. prevent program compiling.

Question 10 The concept of using certain programming features without concern about the implementation of such features is program design. class interaction. information hiding. debugging.