1 Good Questions Spark discussion Motivate a topic Address a common misconception Help students “speak” in the language of your discipline Foster reflection.

Slides:



Advertisements
Similar presentations
Over. new sound name take only good am boy.
Advertisements

TOPIC 5 INTRODUCTION TO PICTURES 1 1 Notes adapted from Introduction to Computing and Programming with Java: A Multimedia Approach by M. Guzdial and B.
ManipulatingPictures-Mod6-part21 Manipulating Pictures, Arrays, and Loops part 2 Barb Ericson Georgia Institute of Technology.
Georgia Institute of Technology Manipulating Pictures, Arrays, and Loops part 1.
Echoes. Reflection  The reflection of sound waves applies to frequencies above human hearing. 20 kHz is human maximum20 kHz is human maximum Bats can.
Original image: 512 pixels by 512 pixels. Probe is the size of 1 pixel. Picture is sampled at every pixel ( samples taken)
What’s in a landscape?  The term Landscape denotes the interaction of people and place or a social group and its spaces.  Landscape is one of the key.
What does Socratic mean? Socratic comes from the name Socrates Socrates Classical Greek philosopher who developed a Theory of Knowledge.
VCE Learning. To unpack the challenge of enhancing the quality of VCE learning What does the student need to know about how to interpret the task ? Ho.
Creative Commons Attribution Non-Commercial Share Alike License sa/3.0/
Creative Commons Attribution Non-Commercial Share Alike License sa/3.0/
New Teachers’ Induction January 20, 2011 Office of Curriculum and Instruction.
Software Testing. Purpose: to Insure that software meets its design specifications, especially at the boundary conditions. “Boundary Conditions:” conditions.
Copyright © 2009 Curt Hill The Picture Object Getting and displaying.
Methods in Java CSC1401. Overview In this session, we are going to see how to create class-level methods in Java.
CSE8A Lecture3 TODO: –Finish PSA1 individually (no partner!) and turn it in with the bundlePSA1 command GET AN INTERVIEW for PSA1 from a tutor See tutor.
Creative Commons Attribution Non-Commercial Share Alike License sa/3.0/
Catalog Poetry “Woman Work” “Daily”.
Topic 1Topic 2Topic 3Topic 4Topic
Project ideas …. Basic Photoshop: – Take your green screen photo and select your head and place it over another student's head in their green screen photo.
Georgia Institute of Technology Declaring Variables – Mod 4 Barb Ericson Georgia Institute of Technology August 2005.
Unit 6 An old man tried to move the mountains. Section B (1a--1d)
To-Do: Grab a purple Harry Potter lab sheet from the back counter. On your desk you will need: Calculator (if you have one) Journal Harry Potter Lab Sheet.
Creative Commons Attribution Non-Commercial Share Alike License sa/3.0/
Creative Commons Attribution Non-Commercial Share Alike License sa/3.0/
Part 2 The Presentation. What is the presentation? A student present that can be done alone or in groups A student present that can be done alone or in.
CPSC1301 Computer Science 1 Chapter 4 Manipulating Pictures, Arrays, and Loops part 5.
Metacogitive Reading Strategies: Part 4 Questioning! Good Readers Use Curiosity to Help Understand the Text.
Interactive Story Reading ECE: Art, Music & Language Arts.
Assessing Student Learning with Exams
CSE 20: Discrete Mathematics for Computer Science Prof. Shachar Lovett.
Graphics in a computers memory How a picture (i.e. a graphic) is stored in a computers memory A computer screen is made up of little dots, called PICture.
Reading Strategy: Visualize. “If I can’t picture it, I can’t understand it.” ---Albert Einstein.
Creative Commons Attribution Non-Commercial Share Alike License sa/3.0/
Document Questions How to answer Document Questions.
THE OTHER 12A RHETORICAL MODES DEFINITION, NARRATION & DESCRIPTION, ANDCOMPARE/CONTRAST.
Thinking Maps Pre-k Santa Maria Elem.. Bubble Map Students were given fish crackers to taste (studying the letter Ff). Then they were asked to come up.
BINARY Toby Wilson. LEARNING OBJECTIVES  Be able to convert binary to denary  Be able to convert denary into binary  Be able to explain how computers.
CSE 8A Lecture 13 Reading for next class: Chapter 9 Today’s topics: –Sounds! Finish PSA 6: Chromakey! DUE TUESDAY Interm exam 3 next Thursday.
CSE 8A Lecture 14 Reading for next class: None (INTERM EXAM #3) Today’s topics: –More Sounds! PSA 6 due tonight PSA 7 (sounds) due next Monday (11/19)
SDAIE Session 2 Universal Access/SDAIE Lesson Design Template Title III Access to Core Professional Development Office of Curriculum, Instruction, and.
CSE8A Lecture 5 TODO: –FINISH PSA2 WITH YOUR PARTNER! Read next class: Section 5.1. PLAY WITH CODE! –Get stuck, then figure out how to get unstuck – it’s.
Representing Sound and Image. Representing images One mean of representing an image it to interpret the image as a collection of dots, each is called.
Median and Mode What do I know? Formulas and Examples Practice.
1 Computability Tractable, Intractable and Non-computable functions.
1 Sections 5.1 – 5.2 Digital Image Processing Fundamentals of Java: AP Computer Science Essentials, 4th Edition Lambert / Osborne.
CELDT PRACTICE Speaking Version A.
Success on the OSSLT: GRAPHIC TEXTS Grade 10 Math Classes Dr. Norman Bethune CI.
Computers and Programming
Image Processing CS177.
CSE 105 Theory of Computation
Monday-Presenting all the kinds of visual graphs, etc
Inquiry Genius Block.
Data Formats.
Clinical Interview Workshop
CSE 8A Lecture 6 Reading for next class:
Text Each slide has a different corner that is the correct answer.
Teaching Java using Turtles part 2
Declaring Variables – Mod 4
How Computers Store Data
The Internet makes the world smaller.
Creative Commons Attribution Non-Commercial Share Alike License
Success on the OSSLT: GRAPHIC TEXTS
Reading Engagement Strategies
Jacque Melin My day at Vanandel.
Phonemic Awareness Students will tell the teacher what sound starts the picture. The teacher will then click on the picture to show them if they are right.
Teaching Java using Turtles part 2
Meet SIP I am the School Improvement Plan.
Pathways to Success The Job Application (lesson #2)
Presentation transcript:

1 Good Questions Spark discussion Motivate a topic Address a common misconception Help students “speak” in the language of your discipline Foster reflection on subjective issues (e.g. design tradeoffs) Connect different concepts

2 Why is this code in Turtle.java incorrect? (pick any that apply – there are no assumptions for this code) A.Nothing is incorrect B.Return type is wrong C.Parameter is used incorrectly D.turnLeft should be turnRight E.use of turtle1 is incorrect public mySquare(int size) turtle1.turnLeft(); turtle1.forward(100); turtle1.turnLeft(); turtle1.forward(100); turtle1.turnLeft(); turtle1.forward(100); turtle1.turnLeft(); turtle1.forward(100); A.Good Question B.Bad Question A.Good Question B.Bad Question

3 Does order matter? Are these two turtles in the same location? Turtle maria = new Turtle(30,100,w); Turtle jose = new Turtle(100,30,w); A.Yes, they both are in World w at 30 and 100! B.No, they are in different locations C.What’s a parameter? A.Good Question B.Bad Question A.Good Question B.Bad Question

4 Individual vote - No room for discussion.... Group Vote

>> im = imread('rainbow.jpg'); >> part = im(1:floor(end/2), floor(end/2)+1:end, :); >> imshow(part) 5 a) b) c) d) e) None/other/error Which image results from the following code segment: A.Good Question B.Bad Question A.Good Question B.Bad Question

6 How would we fill in this SoundSample[] A.Good Question B.Bad Question A.Good Question B.Bad Question

7 The Sample Rate that the Sound class ASSUMES is 22KHz: How long is a SampleSound[] in a Sound object of 1 second? A.22 elements B.11,000 elements C.22,000 elements D.44,000 elements E.We can’t tell from the data provided A.Good Question B.Bad Question A.Good Question B.Bad Question

8 The Barber A certain town has only one barber (a man). Every man in the town is clean- shaven. The barber shaves every man in the town who does not shave himself. Question: Does the barber shave himself? a)YES b)NO c)Not enough information d)Other 8

9 What does this code do? A.Decreases the blue component of a picture B.Sets the green component of each pixel to be the same as the blue component C.Sets the blue component of each pixel to be the same as the green component D.Loops over all pixels in pixelArray. For each pO calls getGreen and stores that into value. Then sets value into blue. E.None of the above. Pixel[] pixelArray = this.getPixels(); int value = 0; for (Pixel pO: pixelArray) { value = pO.getGreen(); pO.setBlue(value); }

10 You are asked to sketch this scene for a geologist, which sketch is best? science.nationalgeographic.com

11 Examine the map and answer the question that follows. X, Y, and Z represent continental lithosphere, the blank areas represent oceanic lithosphere. How many plates are present? a. 3 b. 4 c. 5 d. 6