Podcast
Questions and Answers
Which of the following is NOT true about cybersecurity?
Which of the following is NOT true about cybersecurity?
- Recent data breaches have released personal information of hundreds of millions of people.
- Cybersecurity is the protection of computer systems, networks, and data from digital attacks.
- As we rely more on computing devices to store and send data, we increase our vulnerability to cyber attacks.
- Cyber attacks can devastate large organizations, but individuals are largely unaffected. (correct)
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?
- An AM/FM radio without any bluetooth or Internet connection capabilities (correct)
- A wearable device that measures your physical activity and allows you to track your activity through a mobile app
- A smart thermostat that allows you to remotely control your home’s temperature through a mobile app
- A digital baby monitor that allows you to stream video and audio of your nursery from the Internet
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
- I only
- I and II (correct)
- I and III
- None of the above
In cybersecurity, what does CIA stand for?
In cybersecurity, what does CIA stand for?
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?
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.
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
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
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.
Victims of cyberbullying may experience which of the following?
Victims of cyberbullying may experience which of the following?
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).
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.
Which of the following describes a credible source?
Which of the following describes a credible source?
How would I tell Tracy to move forward 100 pixels?
How would I tell Tracy to move forward 100 pixels?
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?
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?
Where does Tracy always start in the grid world?
Where does Tracy always start in the grid world?
What are the dimensions of Tracy’s world?
What are the dimensions of Tracy’s world?
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)
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?
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?
Tracy always starts facing which direction?
Tracy always starts facing which direction?
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)
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?
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?
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.
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?
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?
Which of the statements below is true about indentation in Python?
Which of the statements below is true about indentation in Python?
Which of the following is NOT a purpose of using functions?
Which of the following is NOT a purpose of using functions?
What is the difference between defining and calling a function?
What is the difference between defining and calling a function?
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?
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)
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)
How can we use variable to control the size of a circle?
How can we use variable to control the size of a circle?