Podcast
Questions and Answers
Which of the following is NOT true about cybersecurity?
Which of the following is NOT true about cybersecurity?
Which of the following devices is not connected to the Internet of Things?
Which of the following devices is not connected to the Internet of Things?
Which of the following is true about the Internet of Things?
I. The Internet of Things is the network of devices with the ability to connect and exchange data.
II. The Internet of Things increases our vulnerability to cyber attacks.
III. The Internet of Things is purely positive–there are no negative consequences to increased connectivity
Which of the following is true about the Internet of Things? I. The Internet of Things is the network of devices with the ability to connect and exchange data. II. The Internet of Things increases our vulnerability to cyber attacks. III. The Internet of Things is purely positive–there are no negative consequences to increased connectivity
In cybersecurity, what does CIA stand for?
In cybersecurity, what does CIA stand for?
Signup and view all the answers
Alice is buying books from an online retail site, and she finds that she is able to change the price of a book from $19.99 to $1.99.
Which part of the CIA triad has been broken?
Alice is buying books from an online retail site, and she finds that she is able to change the price of a book from $19.99 to $1.99.
Which part of the CIA triad has been broken?
Signup and view all the answers
rue or False. The information about a particular person that exists on the Internet is a result of only a portion of their online activity. Some things don’t matter or are not part of a person’s digital footprint.
rue or False. The information about a particular person that exists on the Internet is a result of only a portion of their online activity. Some things don’t matter or are not part of a person’s digital footprint.
Signup and view all the answers
A person’s digital footprint consists of the following:
I. Comments you leave
II. Pictures you post
III. Topics you search
IV. Apps you use
V. Music you download
VI. Emails you send
A person’s digital footprint consists of the following:
I. Comments you leave II. Pictures you post III. Topics you search IV. Apps you use V. Music you download VI. Emails you send
Signup and view all the answers
Which of the following can help you to maintain your digital footprint?
I. Using privacy settings to limit your exposure
II. Posting long rants when you are angry about something
III. Reviewing posts you are tagged in and taking action if needed
IV. Googling yourself on a regular basis
Which of the following can help you to maintain your digital footprint? I. Using privacy settings to limit your exposure II. Posting long rants when you are angry about something III. Reviewing posts you are tagged in and taking action if needed IV. Googling yourself on a regular basis
Signup and view all the answers
Which of the following statements are true about cyberbullying:
I. Cyberbullying uses electronic communication to bully a person.
II. Cyberbullying is a crime in many states.
III. Instances of cyberbullying do not affect the digital footprint of the victim.
IV. Cyberbullying hurts real people even though we can’t always see their reactions online.
Which of the following statements are true about cyberbullying: I. Cyberbullying uses electronic communication to bully a person. II. Cyberbullying is a crime in many states. III. Instances of cyberbullying do not affect the digital footprint of the victim. IV. Cyberbullying hurts real people even though we can’t always see their reactions online.
Signup and view all the answers
Victims of cyberbullying may experience which of the following?
Victims of cyberbullying may experience which of the following?
Signup and view all the answers
True or False: Cyberbullying can be persistent, permanent and discreet (meaning teachers and parents can’t see or overhear cyberbullying).
True or False: Cyberbullying can be persistent, permanent and discreet (meaning teachers and parents can’t see or overhear cyberbullying).
Signup and view all the answers
True or false: The internet is a great place to socialize, and because it is completely online, everyone is safe.
True or false: The internet is a great place to socialize, and because it is completely online, everyone is safe.
Signup and view all the answers
Which of the following describes a credible source?
Which of the following describes a credible source?
Signup and view all the answers
How would I tell Tracy to move forward 100 pixels?
How would I tell Tracy to move forward 100 pixels?
Signup and view all the answers
When using the circle() command, what value do we put inside the parentheses?
When using the circle() command, what value do we put inside the parentheses?
Signup and view all the answers
When Tracy is facing right, from what location does she start drawing her circle?
When Tracy is facing right, from what location does she start drawing her circle?
Signup and view all the answers
Where does Tracy always start in the grid world?
Where does Tracy always start in the grid world?
Signup and view all the answers
What are the dimensions of Tracy’s world?
What are the dimensions of Tracy’s world?
Signup and view all the answers
Which commands would move Tracy forward 100 pixels?
A. forward(100)
B. backward(-100)
C. forward(-100)
Which commands would move Tracy forward 100 pixels? A. forward(100) B. backward(-100) C. forward(-100)
Signup and view all the answers
How far does Tracy need to move from the starting position to reach the end of the right side of the canvas?
How far does Tracy need to move from the starting position to reach the end of the right side of the canvas?
Signup and view all the answers
If you want Tracy to move forward 100 pixels without making a line, what set of commands should you write?
If you want Tracy to move forward 100 pixels without making a line, what set of commands should you write?
Signup and view all the answers
Tracy always starts facing which direction?
Tracy always starts facing which direction?
Signup and view all the answers
When the following for loop is complete, how many spaces will Tracy have moved?
for i in range(5):
forward(10)
When the following for loop is complete, how many spaces will Tracy have moved?
for i in range(5): forward(10)
Signup and view all the answers
Suppose you write a function. How many times can you call the function in your code?
Suppose you write a function. How many times can you call the function in your code?
Signup and view all the answers
In which of the following situations would it be best to make a function?
In which of the following situations would it be best to make a function?
Signup and view all the answers
Which of the following pieces of code will make Tracy do the following actions three times: go forward, change colors, and then turn around.
Which of the following pieces of code will make Tracy do the following actions three times: go forward, change colors, and then turn around.
Signup and view all the answers
Suppose you want to make Tracy draw a mountain range,with five triangle "mountains" starting from the left side.
Which of the following functions would be the most useful function to write in order to solve this problem?
Suppose you want to make Tracy draw a mountain range,with five triangle "mountains" starting from the left side. Which of the following functions would be the most useful function to write in order to solve this problem?
Signup and view all the answers
Which of the following is NOT a command you can give to Tracy?
Which of the following is NOT a command you can give to Tracy?
Signup and view all the answers
Which of the statements below is true about indentation in Python?
Which of the statements below is true about indentation in Python?
Signup and view all the answers
Which of the following is NOT a purpose of using functions?
Which of the following is NOT a purpose of using functions?
Signup and view all the answers
What is the difference between defining and calling a function?
What is the difference between defining and calling a function?
Signup and view all the answers
What does the number in the parentheses in a forward or backward command represent?
What does the number in the parentheses in a forward or backward command represent?
Signup and view all the answers
What control structure would be best to use in the following code?
backward(100)
right(90)
backward(100)
right(90)
backward(100)
right(90)
backward(100)
right(90)
What control structure would be best to use in the following code?
backward(100) right(90) backward(100) right(90) backward(100) right(90) backward(100) right(90)
Signup and view all the answers
What shape will be drawn with the following command?
circle(50, 360, 3)
What shape will be drawn with the following command? circle(50, 360, 3)
Signup and view all the answers
How can we use variable to control the size of a circle?
How can we use variable to control the size of a circle?
Signup and view all the answers