DSAA AY23~24 MST

DSAA AY23~24 MST

12th Grade

10 Qs

quiz-placeholder

Similar activities

Gateway Level 3 Python Quiz 3

Gateway Level 3 Python Quiz 3

9th - 12th Grade

15 Qs

KUIS 3 - KUIS CODING dan PERKENALAN AI

KUIS 3 - KUIS CODING dan PERKENALAN AI

1st Grade - University

10 Qs

Structure chart

Structure chart

9th - 12th Grade

15 Qs

Perform Computer Operations

Perform Computer Operations

9th - 12th Grade

10 Qs

PT101 - Mobile and Game Platform

PT101 - Mobile and Game Platform

11th Grade - University

12 Qs

Edexcel GCSE Computer Science Topic 3: Computers

Edexcel GCSE Computer Science Topic 3: Computers

12th Grade

10 Qs

Unit 11 - Physical Security

Unit 11 - Physical Security

11th - 12th Grade

10 Qs

DSAA AY23~24 MST

DSAA AY23~24 MST

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Zheng Liu

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A statement such as ‘Today is the first day of the month’ is best classified as an example of ____________.

Data

Information

Knowledge

Wisdom

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a data structure that would be more suitable to store a large set of data in a computer system that suffers from a fragmented memory?

Array

Stack

Deque

Linked List

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is an algorithm that converts a small problem into multiple bigger problems?

Brute Force algorithm

Rucursive Algorithm

Divide and Conquer Algorithm

None of them

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Encapsulation in Object Oriented Programming refers to_______________

private data that is wrapped in private functions

private data that is wrapped in public functions

public data that is wrapped in private functions

public data that is wrapped in public functions

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The Big-O notation for the cost function: 𝑇(𝑛)=40𝑛**500 + 5000log𝑛 + 𝑛**3 is equivalent to the Big-O notation of _______________.

𝑇𝑇(𝑛𝑛)=𝑛**400+3000log𝑛+ 2**𝑛+ 𝑛**3

𝑇𝑇(𝑛)=n**500 + 3logn + n**3

T(n)=3000logn+4n**3

T(n) = 40n**500 + 5000logn + 2**n

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A Stack is classified as an Abstract Data Type because___________.

it can only be implemented as an abstract class

it defines how it functions, as well as how it is implemented

it defines how it functions, but not how it is implemented

it has only 3 functions, push, pop and get

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the below code?

d = {1: 'a', 2: 'b', 3: 'c'}

print(tuple(d.values()).__str__())

['a', 'b', 'c']

[1, 2, 3]

('a', 'b', 'c')

(1, 2, 3)

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?