/
Do not use a font less than 24 point or it is too difficult to read. Do not use a font less than 24 point or it is too difficult to read.

Do not use a font less than 24 point or it is too difficult to read. - PowerPoint Presentation

cheryl-pisano
cheryl-pisano . @cheryl-pisano
Follow
374 views
Uploaded On 2018-03-20

Do not use a font less than 24 point or it is too difficult to read. - PPT Presentation

Ensure that your images pictures code flowcharts tables etc are as large as possible to ensure clarity when uploaded In the notes for each slide provide a Computing taxonomy tag a Blooms Taxonomy level identify the correct response and identify what misconceptionerror the distracto ID: 657870

images thisweek identify sensor thisweek images sensor identify system 500 door triggered siren armed 250 error sans lastweek turn

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "Do not use a font less than 24 point or ..." is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

Do not use a font less than 24 point or it is too difficult to read.Ensure that your images (pictures, code, flowcharts, tables, etc.) are as large as possible to ensure clarity when uploaded.In the notes for each slide, provide a Computing taxonomy tag, a Bloom’s Taxonomy level, identify the correct response, and identify what misconception/error the distractors catch. See the questions in this PowerPoint for examples of thisIf you use an image from the Web, please provide a link to the source in the comments so that we can double check the licensing.

A

B

C

D

A

B

C

DSlide2

Font family & sizesAll text in question is Gill Sans 32 or Gill Sans 28 depending on the amount of textAll text in answers is Gill Sans 28 or Gill Sans 24 depending on the amount of textAll calculations and algebra in question is Cambria Math 32 or 28 depending on the amount of textSlide3

Convert the following binary number to its denary (decimal) equivalent.1001 1011

 

 

 

A

B

C

D

 Slide4

Images must be available under creative commons. Alternatively, you can create images yourself.What is the name for this network topology?

A

B

C

D

Ring

Mesh

Bus

StarSlide5

Which of these is true?

A

B

C

D

Phones cannot be used on a wireless network.

A modern laptop may only connect to a home network when it is plugged in using an Ethernet cable.

To connect more than two computers in a wired network, a hub or a switch must be used.

Wireless networks are always faster than wired networks.Slide6

Here is a Python script that has logic errors.Identify the set of test data that will catch all the errors.

A

B

C

D

num1 = 1, num2 = 1

num1 = 0, num2 = 2

num1 = 2, num2 = 3

num1 = 1, num2 = 3Slide7

A

B

C

D

(

thisWeek

> 500) OR ((

thisWeek

> 250) AND (

thisWeek

> 1.5 *

lastWeek

))

thisWeek

> 500 AND ((

thisWeek > 250) OR (thisWeek > 1.5 * lastWeek

))

(thisWeek

> 500 OR thisWeek > 250) AND thisWeek

> 1.5 * lastWeek

thisWeek

>= 500 AND thisWeek > 250 OR thisWeek

>= 1.5 *

lastWeek

The widget factory will service a machine if this week’s error rate is over 500. It will also service a machine if this week’s error rate is over 1.5 times last week’s error rate, as long as this week’s error rate is also over 250.

Which expression will be true under the conditions described?Slide8

Start

X

Window sensor tripped?

Z

Pressure sensor tripped?

Y

Yes

No

No

No

No

Yes

Yes

Yes

Here is a flowchart for an alarm system. If either a window, door, or pressure sensor is triggered, the siren will go off. The system needs to be armed before any of the sensors will start working.

A

B

C

D

X = Door sensor triggered?

Y = Turn on siren

Z = System armed?

X = Turn on siren

Y = Door sensor triggered?

Z = System armed?

X = System armed?

Y = Turn on siren

Z = Door sensor triggered?

X = System

armed

?

Y = Door sensor triggered?

Z = Turn on sirenSlide9

Here is a flowchart.Identify the name for the symbol labelled ‘Y’.Input / OutputSubprocess

Process

Decision

Start

X

Y

No

Yes

W

Z

A

B

C

DSlide10

A

B

C

D

Memory

BIOS

Cache

A microprocessor

Images must be available under creative commons. Alternatively, you can create images yourself.

This is an image ofSlide11

Images must be available under creative commons. Alternatively, you can create images yourself.

This is an image of

Memory

CacheBIOS

A microprocessor

A

B

C

DSlide12

The cat sprite should ‘Meow’ for exactly 5 times.Identify the script which fails to ‘Meow’ exactly 5 times..

A

B

C

DSlide13

Identify the pseudocode that is not a repetition.

A

B

C

D