208k views
3 votes
Pls help asap

Suppose we are designing security software that will use a personal identification number (PIN) of more than 10 digits to verify a client. The number of characters in a PIN is called the PIN size. One measure of security is the time effort needed to discover a client PIN by searching all possible PINs (called the search size). A large time effort provides greater security. We want a visualization that will help clients understand the relationship of PIN size and search time.

We will “collect” our data by writing Python code, below, to generate and store it. We will then add code to structure and organize it and generate a visualization. Examples of added information include the scale used for measuring time, size, and effort, and relationships among them.

When executed, the code prints out four lines: first line for number of digits (or PIN size) in a PIN, two lines for the corresponding number of locations (or search size) to be searched for a PIN size, and one line for associated time to search the number of locations for each PIN size.

Examine the above code with respect to structuring and organizing the data. What visualization should our program generate to communicate an understanding of the data most clearly?

a) point plot where each “point” has a size that represents the pair (PIN size, search time in years), and the size of each point depicts the search size

b) point plot of points on X-Y axes where the x-axis represents search size, and the y-axis represents search time (in months)

c) bar graph where the y-column represents search size and search time (in units of a week), and the x-column represents PIN size

d) graph of two curves on an X-Y plot, one relating PIN size to search size and the other, PIN size to search time, where the y-axis measures time (in units of a week)

Pls help asap Suppose we are designing security software that will use a personal-example-1
User Bruno Polo
by
3.8k points

1 Answer

5 votes

Answer:

Examine the above code with respect to structuring and organizing the data. What visualization should our program generate to communicate an understanding of the data most clearly?

a) point plot where each “point” has a size that represents the pair (PIN size, search time in years), and the size of each point depicts the search size

b) point plot of points on X-Y axes where the x-axis represents search size, and the y-axis represents search time (in months)

c) bar graph where the y-column represents search size and search time (in units of a week), and the x-column represents PIN size

d) graph of two curves on an X-Y plot, one relating PIN size to search size and the other, PIN size to search time, where the y-axis measures time (in units of a week)

Step-by-step explanation:

User Adalpari
by
4.0k points