203k views
4 votes
PLTW activity 2.1.5 PLEASE HELP I NEED STEP 5
FAKE ANSWER WILL NOT BE GIVEN POINTS

PLTW activity 2.1.5 PLEASE HELP I NEED STEP 5 FAKE ANSWER WILL NOT BE GIVEN POINTS-example-1
PLTW activity 2.1.5 PLEASE HELP I NEED STEP 5 FAKE ANSWER WILL NOT BE GIVEN POINTS-example-1
PLTW activity 2.1.5 PLEASE HELP I NEED STEP 5 FAKE ANSWER WILL NOT BE GIVEN POINTS-example-2
PLTW activity 2.1.5 PLEASE HELP I NEED STEP 5 FAKE ANSWER WILL NOT BE GIVEN POINTS-example-3
User Gcochard
by
4.7k points

2 Answers

6 votes

Answer:

Computing is any goal-oriented activity requiring, benefiting from, or creating computing machinery. It includes the study and experimentation of algorithmic processes and development of both hardware and software. It has scientific, engineering, mathematical, technological and social aspects.

Hope it helps u

User Avi Ginsburg
by
4.2k points
2 votes

The script checks security habits based on user responses. Creating opposite Boolean expressions using "not" is essential. Testing scenarios cover both positive and negative responses for accurate evaluation.

In the provided Python script, a security checklist is implemented with four questions regarding phishing awareness, password strength, multi-factor authentication, and encryption knowledge. The script checks the user's responses and provides feedback on their security habits.

To create the opposite Boolean expressions for each question, one can utilize the "not" operator. For instance:

- `if not (phish == 'y'):`

- `if not (pw == 'y'):`

- `if not (auth == 'y'):`

- `if not (enc == 'y'):`

These expressions check for the negative condition, indicating a "no" response to each question.

For testing, option b involves answering "y" to all questions, expecting the program to display the "good security" statement. Conversely, option c involves answering "n" to any question, anticipating the program to display the "improve your security" statement.

User RWGodfrey
by
4.5k points