Search Header Logo
G10 W3 Revision for Ongoing Task 1 Term 3

G10 W3 Revision for Ongoing Task 1 Term 3

Assessment

Presentation

Computers

10th Grade

Practice Problem

Easy

Created by

Hassan Abdalla Ali Hassan .

Used 2+ times

FREE Resource

17 Slides • 21 Questions

1

media

2

media

3

media

4

media

5

Multiple Choice

What is the first step in designing an algorithm?

1

Generate recommendations

2

Collect data

3

Define the problem

4

Design the user interface

6

Multiple Choice

What is the correct order of steps in a basic algorithm?

1

Output → Process → Input

2

 Input → Process → Output

3

Process → Input → Output

4

Data → Compare → Output

7

media

8

Multiple Choice

How does an algorithm determine which route is best?

1

It randomly selects any route

2

It compares routes based on time, distance, and traffic

3

It always chooses the shortest distance

4

It always chooses the route with no tolls

9

Multiple Choice

A navigation app shows three routes. Route A: 20 minutes heavy traffic, Route B: 25 minutes light traffic, Route C: 30 minutes light traffic. Which will the algorithm likely choose?

1

Route A

2

Route B

3

Route C

4

Any route randomly

10

media

11

Multiple Choice

What is phishing?

1

A type of computer virus

2

A fake email designed to trick you into sharing personal information

3

A security software program

4

A type of encryption

12

Multiple Choice

Which UAE organization works to protect citizens from cyber threats?

1

Dubai Tourism

2

RTA

3

UAE Cybersecurity Council

4

DEWA

13

media

14

Multiple Choice

What is the main role of AI algorithms in cybersecurity?

1

To slow down internet speed

2

To detect unusual activity and block threats

3

To create stronger passwords

4

To design new apps

15

Multiple Choice

How do AI algorithms learn to recognize new cyber threats?

1

They forget old attacks

2

They learn from past attacks to identify patterns

3

They only use real-time data

4

They do not learn or improve

16

media

17

Multiple Choice

What does "Input" mean in an algorithm?

1

The final result shown to the user

2

The information given to the algorithm to start working

3

The step where data is processed

4

The comparison of different options

18

Multiple Choice

What type of data do AI security algorithms monitor to detect threats?

1

Only email subject lines

2

Social media posts only

3

Network traffic, emails, and system logs

4

Weather data

19

media

20

Multiple Choice

Q1 The final step in a navigation algorithm is to provide the user with the fastest route suggestion.

1

True

2

False

21

Multiple Choice

Q2 Algorithms only use one type of data to make decisions.

1

True

2

False

22

Multiple Choice

Q3 Phishing emails always look fake and are easy to spot.

1

True

2

False

23

media

24

Multiple Choice

Q4 Ransomware targets only individual users, not organizations.

1

True

2

False

25

Multiple Choice

Q5 The UAE uses AI-powered cybersecurity centers to monitor government networks.

1

True

2

False

26

media

27

Multiple Choice

Look at this code:

let route1 = {time: 25, traffic: "heavy", toll: "yes"};

let route2 = {time: 30, traffic: "moderate", toll: "no"};

let bestRoute = route2;

console.log("Route time: " + bestRoute.time);

What will be displayed?

1

Route time: 25

2

Route time: 30

3

Route time: moderate

28

media

29

Multiple Choice

Look at this code:

let email = "Click here to verify your account";

let risk = "low";

if (email.includes("click here")) {

    risk = "high";

}

console.log("Risk: " + risk);

What will be displayed?

1

Risk: low

2

Risk: high

3

Risk: click here

30

media

31

Multiple Choice

Look at this code:

let suspiciousCount = 0;

if (email.includes("urgent")) suspiciousCount++;

if (email.includes("password")) suspiciousCount++;

if (email.includes("click here")) suspiciousCount++;

console.log("Total: " + suspiciousCount);

If email contains "urgent" and "click here", what will be displayed?

1

Total: 1

2

Total: 2

3

Total: 3

32

media

33

Multiple Choice

Look at this code:

function checkRisk(email) {

    if (email.includes("bank") || email.includes("payment")) {

        return "high";  }

    return "low"; }

let result = checkRisk("Please update your payment info");

console.log(result);

What will be displayed?

1

high

2

low

3

payment

34

media

35

Multiple Choice

Look at this code:

let routes = [

    {time: 15, toll: "yes"},

    {time: 20, toll: "no"},

    {time: 25, toll: "no"} ];

let best = routes[1];

console.log(best.time);

What will be displayed?

1

15

2

20

3

25

36

media

37

Fill in the Blanks

Type answer...

38

media
media

Show answer

Auto Play

Slide 1 / 38

SLIDE