Search Header Logo

IST CodeHS Unit 8 JavaScript Review

Authored by Jason Bentley

Computers

9th - 12th Grade

Used 23+ times

IST CodeHS Unit 8 JavaScript Review
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

23 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

If the user enters a diameter value in the variable called 'diameter', how can we use this value to draw a circle with the correct diameter?

let c1 = new Circle(diameter/2)

let c2 = new Circle(diameter)

new Circle(diameter*2)

let c3 = new Circle()

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When prompted for two inputs, the user enters 'Kyle' and then 'Davis'. What is printed by this JS code?

let first = readLine("What is your first name? ");

let last = readLine("What is your last name? ");

let whole = first + last;

console.log(whole);

whole

KyleDavis

Kyle Davis

Davis Kyle

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What are the x,y coordinates of the center of the canvas?

0, 0

getWidth(), getHeight()

getWidth()/2, getHeight()/2

0, getHeight()*2

4.

MULTIPLE CHOICE QUESTION

0 sec • 1 pt

Media Image

What are the x,y coordinates of the bottom right of the canvas?

0, 0

getWidth(), getHeight()

getWidth()/2, getHeight()/2

0, getHeight()*2

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

If the user enters a radius value in the variable called 'radius', how can we use this value to draw a circle with the correct radius?

let c1 = new Circle(radius/2)

let c2 = new Circle(radius)

new Circle(radius*2)

let c3 = new Circle()

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does this code do?

let rad = readInt("Enter the radius: ");

let c = new Circle(rad);

c.setPosition(getWidth()/2, rad);

add(c);

Draws a circle at the center of the canvas with a user inputted radius

Draws a circle with center at (0, 0)

Draws a circle with custom size that is centered and tangent to the top of the canvas

Draws a circle with a random radius at the top of the canvas

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

let circle = new Circle(16);

What is the meaning of the above code?

Creates a circle object with radius of 16 pixels

Draws a circle with center at (0, 0)

Creates a circle object with center at (0, 16)

Creates a circle object with circumference of 16 pixels

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Microsoft

Continue with Microsoft

or continue with

Facebook

Facebook

Apple

Apple

Others

Others

Already have an account?