Font size
WorksheetsJRU QUIZ BEE REVIEWER
Total questions: 90
Worksheet time: 45mins
Which of the following is considered the most secure encryption algorithm as of now?
DES
RSA
AES
Blowfish
Which emerging technology is expected to significantly impact cybersecurity?
Quantum computing
3D printing
Augmented reality
Blockchain
The decentralized technology that enhances security by providing a tamper-resistant and transparent way to record transactions is called (a) .
What was the primary storage device used in computers during the 1980s?
Solid State Drives (SSD)
Floppy disks
Compact Discs (CDs)
Flash drives
(Select all that apply) What are characteristics of a strong password?
Long length
Consisting only of numbers
Use of common words
Use of special characters
The process of converting plaintext into unreadable ciphertext using a specific algorithm is called (a) .
The practice of identifying and fixing vulnerabilities in a system to improve its security is known as (a) .
What is the primary challenge in securing IoT (Internet of Things) devices?
They require constant manual updates
They often lack the necessary processing power to implement strong security measures
They are not connected to the internet
They can only be used with WPA3 security
What was the main purpose of the ENIAC computer, considered one of the earliest examples of retro tech in computing?
Personal computing
Business accounting
Ballistic trajectory calculations
Internet browsing
Which iconic computer, released in 1984, is credited with popularizing the graphical user interface for personal computers?
Commodore 64
IBM PC
Macintosh
Amiga
Which technology has the potential to revolutionize the storage industry by providing significantly faster data access than traditional hard drives or SSDs?
Quantum Computing
5G Technology
Neural Networks
Holographic Storage
The invention of the transistor, a key component in modern electronic devices, took place at (a) Laboratories in 1947.
(Select all that apply) Select the programming languages that were widely used in the development of early video games.
COBOL
Assembly
FORTRAN
BASIC
(Select all that apply) Which of the following technologies are considered part of the Internet of Things (IoT)?
Smart Refrigerators
Virtual Reality
Wearable Devices
Blockchain
Which major cybersecurity incident involved the unauthorized access and exfiltration of sensitive data from a credit reporting agency, impacting millions of individuals?
Stuxnet Worm Attack
Equifax Data Breach
WannaCry Ransomware Attack
NotPetya Cyberattack
Identify the cybersecurity attack that targeted a major U.S. pipeline, causing disruption in fuel supply and leading to concerns about critical infrastructure vulnerabilities.
SolarWinds Supply Chain Attack
NotPetya Cyberattack
Colonial Pipeline Ransomware Attack
Heartbleed Bug Exploit
Identify the large-scale ransomware attack that affected the National Health Service (NHS) in the UK, causing widespread disruption to healthcare services.
WannaCry Ransomware Attack
NotPetya Cyberattack
DarkTequila Malware Attack
Emotet Malware Campaign
(Select all that apply) Which factors contributed to the success of the WannaCry ransomware attack?
Exploitation of EternalBlue vulnerability
Targeting only personal computers
Lack of timely security patches on affected systems
Phishing emails as an initial infection vector
Which supercomputer, developed by IBM, achieved a historic victory by defeating the reigning world chess champion Garry Kasparov in a six-game match in 1997?
Blue Gene
Deep Thought
Watson
Deep Blue
Which language model, developed by OpenAI, gained attention for its natural language processing capabilities and widespread use in various applications?
Deep Blue
ChatGPT
Watson
Siri
An error in a program that prevents the program from running as expected.
Coding
Algorithm
Bug
Event
Pulling out specific differences to make one solution work for multiple problems.
Function
Abstraction
Loop
Coding
A placeholder for a piece of information that can change.
Loop
Event
Variable
Program
The action of doing something over and over again
Program
Function
Variable
Loop
Statements that only run under certain conditions or situations.
Conditionals
Variables
Loops
Commands
A list of steps to finish a task. A set of instructions that can be performed with or without a computer.
recipe
algorithm
statement
loop
Mental processes and strategies that include: decomposition, pattern matching, abstraction, algorithms (decomposing problems into smaller, more manageable problems, finding repeating patterns, abstracting specific differences to make one solution work for multiple problems, and creating step-by-step algorithms).
Computational Thinking- what we are mastering in this class.
I have no idea.
One or more commands or algorithm(s) designed to be carried out by a computer.
Coding/Programming
Binary
URL
Computer Science
This is the piece of code that you add to a program to indicate that the program should run the code inside a function at a certain time.
Call a function
Command
DeBug
Shout out
The first computer programmer was...
Steve Jobs
Thomas Edison
Ada Lovelace
I have no idea.
To add code inside a function so that the program knows what it is supposed to do when the function is called.
Call a function
algorithm
command
Define a function
Which of these is NOT an AI technology
Facial recognition
Image recognition
Robotics
Animation
Artificial Intelligence is the process that allows computers to learn and make decisions like humans
True
False
Which of these is NOT an AI technology
Facial recognition
Image recognition
Robotics
Animation
What is AI used for?
Healthcare
Transportation
Education
All of the Above
Q7. Which of the following is the correct order of the investigative cycle?
A. Problem, data, plan, analysis, conclusion
B. Conclusion, plan, problem, data, Analysis
C. Plan, problem, analysis, data, conclusion
D. Problem, plan, data, analysis, conclusion
Q8. In which step of the cycle would you pose the question(s) that you will use data to help you answer?
A. Data
B. Analysis
C. Plan
D. Problem
Q10. In which step of the cycle would you work out where the data will come from or how you will collect it?
A. Data
B. Analysis
C. Plan
D. Problem
Q15. What is name of the chart pictured below? (1 mark)
Graph chart
Pie chart
Line chart
Bar chart
Q16. What is name of the chart pictured below? (1 mark)
Graph chart
Pie chart
Line chart
Bar chart
What is an array in programming?
C. A data structure that can only store integers
D. A type of loop in programming
B. A fixed-size sequenced collection of elements of the same data type
A. A variable that can store multiple data types
How can arrays be initialized?
D. Arrays cannot be initialized
B. Only at run time
A. Only at compile time
C. Both at compile time and run time
What is the difference between character arrays and strings?
B. Character arrays are stored in the String Constant Pool
A. Character arrays are immutable, strings are mutable
D. Character arrays have built-in methods to perform operations
C. Strings can be converted to character arrays using toCharArray() method
What is the syntax for defining a function with arguments and return value?
D. int function()
C. void function()
B. int function(int x)
A. void function(int x)
What is the purpose of the checkPrimeNumber function in the C program?
D. To convert a string to a character array
C. To calculate the Fibonacci series
B. To check if a number is prime
A. To swap two integers
What is the difference between Call by Value and Call by Reference?
C. Call by Value allows altering the values of actual variables
B. Call by Reference copies the values of variables
A. Call by Value uses pointer variables
D. Call by Reference is preferred for passing small values
What is recursion in programming?
A. The process of repeating items in a self-similar way
B. The process of swapping variables
C. The process of converting strings to arrays
D. The process of defining multiple functions
How can arrays be passed to a function?
B. Only as a sized array
A. Only as a pointer
C. Only as an unsized array
D. All of the above
What is the output of the Fibonacci program in the C code?
A. 0 1 1 2 3 5 8 13 21 34
D. 1 3 5 7 9 11 13 15 17 19
B. 1 2 3 5 8 13 21 34 55 89
C. 0 1 1 2 3 5 8 13 21 29
What is the purpose of the Strfun function in the C program?
D. To define a recursive function
C. To calculate prime numbers
B. To pass a string to a function
A. To declare a buffer of type char
When is Call by Value preferred over Call by Reference?
D. When using pointer variables
A. When passing a large amount of data
B. When altering the values of variables
C. When passing small values that should not change
What is the purpose of the getchar function in programming?
A. To check if a number is prime
C. To store passwords in character arrays
D. To return an integer representing a character
B. To convert a string to a character array
What is the general form of initializing arrays at compile time?
C. void function(int x)
D. int j, flag = 1
B. int n1, n2, i, flag
A. float total[5] = {0.0,15.75,-10}
What is the purpose of the C program to display prime numbers between intervals?
C. To check if a number is prime
D. To pass strings to a function
B. To calculate the Fibonacci series
A. To swap two positive integers
What is the difference between one dimensional arrays and character arrays?
D. One dimensional arrays have built-in methods to perform operations
C. Character arrays can be converted into strings
B. One dimensional arrays are stored in the Heap
A. One dimensional arrays are mutable, character arrays are immutable
IoT means?
Inter Office Trunks
Internet of Things
Internet of Think
International of Things
Data Security is not an issue in FinTech?
True
False
Pokemon Go is the best example of what technology?
IoT
AI
AR
FinTech
AR stands for?
Artificial Reality
Augmented Reality
Available Reality
Answerable Reality
Computer Programs and other technology used to support and enable banking and other financial services?
FinServ
FinBanking
FinTech
FinTrans
________ is an application that performs an automated task such as setting an alarm
AI
AR
IoT
BOT
Paymaya is one of the fastest FinTech companies in the Philippines
TRUE
FALSE
A computer program designed to simulate conversation with human users over the internet.
Chatbots
Robots
Bots
Homebots
Example of Homebot?
Alexa
Adarna
Amazon
Arriana
Subset of Artificial intelligence in the field of computer science.
AR
Deep Learning
Artificial Reality
Machine Learning
Which was the first electronics digital computing device?
Analytic Engine
Atanasoff-Berry Computer
Difference Engine
ENIAC
Which was the first electronic general-purpose computer?
Analytic Engine
Atanasoff-Berry Computer
Difference Engine
ENIAC
Which was the first commercial computer?
EDVAC
ENIAC
UNIVAC1
Zi
Who invented the IBM Automatic Sequence Controlled Calculator?
Gottfried Wilhelm Leibniz
Charles Babbage
Herman Hollerith
Howard H. Aiken
Who invented the Pascaline?
Blaise Pascal
Charles Babbage
Herman Hollerith
Howard H. Aiken
Who invented the Stepped Reckoner?
Gottfried Wilhelm Leibniz
Charles Babbage
Herman Hollerith
Howard H. Aiken
Who invented the Tabulating Machine?
Gottfried Wilhelm Leibniz
Charles Babbage
Herman Hollerith
Howard H. Aiken
He/She is the first computer progammer.
Augusta Ada Byron
Charles Babbage
Herman Hollerith
Howard H. Aiken
Which is the mechanical calculator invented by Thomas de Colmar ?
Abacus
Arithmometer
Napier’s Bones
Slide Rule
Which of the following is also known as IBM Automatic Sequence Controlled Calculator?
Atanasoff-Berry Computer
Harvard Mark 1
Tabulating Machine
Z1
___________ is a world-wide global system of interconnected computer networks.
Computer
Internet
Network
Firewalls
__________ is a special computer used to give name to the IP Address to locate a computer by a name.
DNS
HTTP
FTP
URL
Introduction of World Wide Web (WWW) was in ________ year
1995
1990
1989
1992
Identify the Domain Name in following URL https://www.rajalakshmi.org/index.php
https
ndex.php
www
rajalakshmi.org
__________ are set of rules governing communication within and between computers on a network
Internet Protocols
URL
Domain Name
Domain Name Server
Two components of Internet Protocol Address are
Port and Host id
Network id and Port
Network ID and Host ID
Directory and Port
___________ is based on the request-response communication model
HTTP Protocol
Protocol
Internet
HTML
Starting line of HTTP Request Message contains __________
Configuration, Formats of Data
Message Header
Host Information
Method, URL, Protocol Version
The parameters from the browser are passed as part of the Message body in ________ method
GET
POST
PUT
HEAD
____________ used to get only information about the content of the web page
HEAD
CONNECT
GET
PUT
is HTTP is a stateless protocol?
True
False
What is the default Port for HTTP?
63
21
22
80
Which version of HTTP is maintained established connection till the browser is closed?
HTTP 1.1
HTTP 1.0
HTTP 0.1
HTTP 0.5
What is the range of status code for Client Error?
200 range
300 range
400 range
500 range
What is the range of status code for Re-directional?
200 range
300 range
400 range
500 range
