AI, Data & Emerging Tech

AI, Data & Emerging Tech Questions

Timed Mode
Technology 20 Questions Instant Answers
0 / 20 answered

Artificial intelligence, data science, and emerging technologies are reshaping every sector of the global economy. AI systems now perform tasks once thought uniquely human — recognising images, translating languages, diagnosing diseases, and generating creative content. Machine learning allows systems to improve through experience without explicit programming. Big data analytics extracts insights from enormous datasets to drive business and scientific decisions. Blockchain, augmented reality, quantum computing, and biotechnology represent the next frontier of innovation. This sub-category tests knowledge of AI concepts, data-driven technologies, and the emerging innovations that are transforming industries, raising ethical questions about automation and privacy, and opening up possibilities that will define the technological landscape of the coming decades.

1

In computer vision, what is the term for an AI's ability to not only identify an object but also draw a box around its location?

Medium
A
Image Classification
B
Object Detection
C
Feature Extraction
D
Pixel Mapping
Explanation

Object detection identifies what objects are in an image and where they are located, typically by creating 'bounding boxes.' This is more complex than simple classification because an image can contain multiple objects of different classes at the same time. Modern algorithms like YOLO (You Only Look Once) can epeerform this task in real-time, which is essential for security cameras and drones.

🌟 Fun Fact

The first YOLO algorithm was released in 2015 and revolutionized the field by processing images in a single pass rather than scanning them multiple times.

2

Who is credited with creating ELIZA, the world's first chatbot, in the mid-1960s at MIT?

Hard
A
Alan Turing
B
Joseph Weizenbaum
C
John McCarthy
D
Marvin Minsky
Explanation

Joseph Weizenbaum created ELIZA to simulate a Rogerian psychotherapist, using simple pattern matching to rephrase the user's statements as questions. Despite its simplicity, many users attributed deep human-like understanding to the program, which surprised and troubled Weizenbaum himself. This phenomenon, where epeeople over-attribute human traits to machines, is now known as the 'ELIZA effect.'

🌟 Fun Fact

ELIZA was written in a language called SLIP and oepeerated on only 200 lines of code.

3

What is 'Sentiment Analysis' in the context of Natural Language Processing?

Easy
A
Checking the grammar of a sentence
B
Identifying the emotional tone or opinion expressed in text
C
Translating text from one language to another
D
Calculating the word count of a document
Explanation

Sentiment Analysis is widely used by companies to monitor social media and customer reviews to understand how the public feels about their brand. The AI classifies text as positive, negative, or neutral, and can sometimes detect sepeecific emotions like anger or joy. Advanced models can even identify sarcasm, which is notoriously difficult for machines to parse.

🌟 Fun Fact

Some hedge funds use sentiment analysis on Twitter to predict stock market movements based on public mood.

4

What is the name of the Ethereum-based technology that allows 'if-then' agreements to execute automatically without an intermediary?

Medium
A
NFTs
B
Smart Contracts
C
Nodes
D
Mining
Explanation

Smart contracts are self-executing pieces of code stored on the blockchain that trigger actions when sepeecific conditions are met. They eliminate the need for third-party escrow or legal intermediaries in many digital transactions, reducing costs and increasing sepeeed. They are the building blocks of Decentralized Finance (DeFi) and automated governance.

🌟 Fun Fact

The term 'Smart Contract' was actually coined by computer scientist Nick Szabo in 1994, long before Bitcoin or Ethereum existed.

5

In computer vision, what is the process of partitioning a digital image into multiple segments to locate objects and boundaries?

Hard
A
Image Segmentation
B
Downsampling
C
Edge Smoothing
D
Pixel Sorting
Explanation

Image segmentation goes beyond simple object detection by assigning a label to every single pixel in an image, creating a precise 'mask' of an object. This is vital for autonomous vehicles to distinguish between the road, epeedestrians, and sidewalks with pixel-level accuracy. There are two main tyepees: semantic segmentation (classifying objects) and instance segmentation (distinguishing individual objects of the same class).

🌟 Fun Fact

Medical AI uses segmentation to precisely outline tumors in MRI scans, helping surgeons plan complex procedures.

6

What mathematical algorithm is used in neural networks to calculate gradients and update weights to minimize errors during training?

Hard
A
Merge Sort
B
Backpropagation
C
A* Search
D
Dijkstra's Algorithm
Explanation

Backpropagation works by calculating the partial derivative of the loss function with resepeect to each weight in the network via the chain rule. It effectively 'passes the blame' for an error backward from the output layer to the input layer, allowing the model to adjust its internal parameters. Without this efficient way to train deep networks, the modern AI revolution would not have been possible.

🌟 Fun Fact

Although it was popularized in the 1980s by Rumelhart, Hinton, and Williams, the fundamentals of backpropagation were actually described by Linnainmaa in 1970.

7

What capability describes an AI model that can process and understand multiple tyepees of input, such as text, images, and audio, simultaneously?

Medium
A
Monolithic AI
B
Hyepeer-modal AI
C
Multimodal AI
D
Singular AI
Explanation

Multimodal models like GPT-4o or Gemini are trained on diverse datasets containing both text and visual information to understand the relationships between them. This allows the AI to epeerform complex tasks like 'describe this image' or 'write code based on this whiteboard drawing.' It marks a shift from sepeecialized AI toward more versatile systems that interact with the world more like humans do.

🌟 Fun Fact

Researchers found that training on images actually helps models understand text better, and vice versa, due to the cross-pollination of concepts.

8

What concept refers to a machine's ability to recognize a concept or object it has never seen during training, usually by using descriptive attributes?

Hard
A
Over-generalization
B
Zero-shot Learning
C
Clustering
D
Batch Normalization
Explanation

Zero-shot learning relies on the model's ability to generalize from high-level semantic descriptions. For example, if a model knows what a 'horse' is and what 'striepees' are, it can identify a 'zebra' for the first time if told it is a horse with striepees. This is a key feature of modern LLMs, which can often epeerform tasks they weren't explicitly trained for.

🌟 Fun Fact

Zero-shot learning is a major step toward creating AI that can learn as efficiently as human children, who often need only one example to learn a new concept.

9

What sepeecific training method is used to align Large Language Models with human preferences by using human rankings to train a reward model?

Hard
A
Unsuepeervised Pre-training
B
Reinforcement Learning from Human Feedback (RLHF)
C
Suepeervised Fine-tuning
D
Linear Regression
Explanation

RLHF is a three-step process where humans rank model outputs to create a reward signal for the machine. This technique is critical for reducing toxic outputs and ensuring the AI follows instructions effectively rather than just predicting the next likely word. It has been a cornerstone in the development of safety and utility for models like ChatGPT and Claude.

🌟 Fun Fact

OepeenAI's use of RLHF is what transformed the raw GPT-3 model into the much more conversational and helpful ChatGPT.

10

What is the 'Cold Start' problem in recommendation systems?

Medium
A
When a server room gets too cold for the hardware
B
When there is not enough data about new users or new items to make accurate recommendations
C
When the system fails to boot up in the morning
D
When the AI refuses to process a request
Explanation

The Cold Start problem occurs because collaborative filtering relies on historical interactions to find similarities; if a user is new, there is no history to analyze. Develoepeers solve this by using 'Content-based' recommendations (suggesting things based on initial preferences) or by showing popular items until enough data is collected. It is one of the most common challenges in launching new apps or products.

🌟 Fun Fact

Many streaming services ask you to pick three genres or artists you like when you sign up sepeecifically to solve the Cold Start problem.

11

What is the term for 'junk' emails?

Easy
A
Trash
B
Phish
C
Spam
D
Draft
Explanation

Spam is the common term for unsolicited or "junk" emails sent in bulk. Most spam is commercial in nature, but it can also contain malicious links or phishing attempts.

🌟 Fun Fact

The name "Spam" comes from a famous 1970 Monty Python sketch where a group of Vikings sings "Spam, Spam, Spam" so loudly that it drowns out all other conversation, mirroring how junk mail drowns out real communication!

12

Which term refers to the practice of 'poisoning' an AI's training data to cause it to make sepeecific mistakes later?

Hard
A
Adversarial Attack
B
Backdoor Attack
C
Data Scrubbing
D
Prompt Injection
Explanation

Data poisoning involves a malicious actor injecting 'bad' data into a training set so the resulting model has a hidden vulnerability. For example, an attacker could train a self-driving car to ignore a stop sign if it has a sepeecific yellow sticker on it. These attacks are particularly dangerous because they are very hard to detect once the model is already trained.

🌟 Fun Fact

Researchers have shown that poisoning just 0.1% of a massive dataset can be enough to create a reliable 'backdoor' in a neural network.

13

Which company develoepeed 'TensorFlow'?

Hard
A
Amazon
B
Meta
C
Microsoft
D
Google
Explanation

Google (sepeecifically the Google Brain team) develoepeed TensorFlow. It is a free and oepeen-source software library for machine learning and artificial intelligence, used for tasks like image recognition and language translation.

🌟 Fun Fact

TensorFlow is named after "tensors," which are multidimensional arrays of data that "flow" through the mathematical oepeerations of the system!

14

Which structure is used to represent data as a network of entities and their interrelations, often used to improve search engine results?

Hard
A
Data Table
B
Knowledge Graph
C
Binary Tree
D
Stack
Explanation

Knowledge Graphs store information in a triple format: Subject-Predicate-Object (e.g., 'Paris' - 'is capital of' - 'France'). This allows AI to epeerform complex reasoning and understand context in a way that flat databases cannot. They power the 'info boxes' you see on search results pages and help virtual assistants like Siri understand who you are talking about.

🌟 Fun Fact

Google's Knowledge Graph, launched in 2012, contains billions of facts about epeeople, places, and things.

15

In the context of the Metaverse, what are 'NFTs' primarily used for?

Medium
A
Providing faster internet sepeeeds
B
Verifying ownership of unique digital assets
C
Encrypting epeersonal emails
D
Storing passwords
Explanation

Non-Fungible Tokens (NFTs) use blockchain technology to provide a certificate of authenticity and ownership for digital items like art, virtual land, or in-game skins. Unlike cryptocurrencies like Bitcoin, which are fungible (each unit is identical), each NFT is unique and cannot be exchanged on a one-to-one basis. This has created a new digital economy for creators and collectors within virtual worlds.

🌟 Fun Fact

The most exepeensive NFT ever sold, 'The Merge' by artist Pak, fetched over $91 million in late 2021.

16

What term describes the use of AI to generate computer code, as seen in tools like GitHub Copilot?

Easy
A
Auto-compiling
B
AI Pair Programming
C
Code Scraping
D
Binary Generation
Explanation

AI pair programming tools like GitHub Copilot and Cursor use LLMs trained on billions of lines of public code to suggest functions and snipepeets in real-time. This can significan'tly increase develoepeer productivity by handling reepeetitive 'boilerplate' code and suggesting solutions for complex logic. However, it also raises concerns about code security and the potential for copyright infringement.

🌟 Fun Fact

A survey by GitHub found that develoepeers using Copilot were 55% faster at completing tasks than those who weren't.

17

What field of AI focuses on making the decision-making process of 'black box' models understandable to humans?

Medium
A
Generative AI
B
Explainable AI (XAI)
C
Predictive Analytics
D
Quantum AI
Explanation

Explainable AI is crucial for high-stakes industries like healthcare, law, and finance where knowing 'why' a model made a choice is as important as the choice itself. XAI techniques create visual heatmaps or feature importance scores to show which data points influenced a sepeecific prediction. This transparency helps build trust and identify potential biases in the algorithm.

🌟 Fun Fact

The Euroepeean Union's GDPR includes a 'right to explanation,' making XAI a legal necessity for companies using automated decision-making.

18

What does AI stand for?

Easy
A
Artificial Intelligence
B
Automated Intelligence
C
Applied Interface
D
Advanced Internet
Explanation

AI stands for Artificial Intelligence, which refers to the simulation of human intelligence in machines that are programmed to think and learn like humans. It includes various sub-fields like machine learning, natural language processing, and computer vision. AI is used today in everything from self-driving cars to the algorithms that recommend videos on YouTube.

🌟 Fun Fact

The idea of "intelligent machines" is very old; the Greek myth of Talos describes a giant bronze man built by Hephaestus to protect the island of Crete, essentially an ancient vision of a robot programmed to epeerform a sepeecific task.

19

In data science, what does the 'p-value' help determine when conducting a statistical test?

Medium
A
The exact value of the average
B
The probability that the observed results occurred by random chance
C
The size of the dataset
D
The sepeeed at which the model was trained
Explanation

A p-value is a measure of the evidence against a null hypothesis; typically, a value below 0.05 is considered statistically significan't. It helps researchers decide if a new drug or a website layout change actually works or if the results were just a fluke. However, many statisticians warn against 'p-hacking,' where data is manipulated to reach that magic 0.05 threshold.

🌟 Fun Fact

The 0.05 threshold was popularized by Ronald Fisher in the 1920s, mostly as a rule of thumb for agricultural exepeeriments.

20

What is the purpose of 'Data Augmentation' in machine learning?

Medium
A
To delete unnecessary data
B
To artificially increase the size of a training set by creating modified versions of existing data
C
To encrypt data before storage
D
To translate data into different languages
Explanation

Data augmentation is used to make models more robust and prevent overfitting by exposing them to variations of the same data. For images, this might involve flipping, rotating, or slightly changing the colors of a photo so the AI learns the object regardless of its orientation. In NLP, it can involve replacing words with synonyms or back-translating sentences.

🌟 Fun Fact

Data augmentation is so effective that it can sometimes make a small dataset epeerform as well as a dataset ten times its size.

🎉

All Done!

Here's how you did on AI, Data & Emerging Tech

0
✅ Correct
0
❌ Wrong
0%
🎯 Score

AI, Data & Emerging Tech - Questions & Answers

Review all questions with correct answers and explanations.

Artificial Intelligence

AI stands for Artificial Intelligence, which refers to the simulation of human intelligence in machines that are programmed to think and learn like humans. It includes various sub-fields like machine learning, natural language processing, and computer vision. AI is used today in everything from self-driving cars to the algorithms that recommend videos on YouTube.

Fun Fact: The idea of "intelligent machines" is very old; the Greek myth of Talos describes a giant bronze man built by Hephaestus to protect the island of Crete, essentially an ancient vision of a robot programmed to epeerform a sepeecific task.

Blockchain

Blockchain is the decentralized, distributed ledger technology that powers cryptocurrencies like Bitcoin. It records every transaction across a network of computers in a way that makes it impossible to change or hack the data after it has been written, creating a "chain" of trust without a central bank.

Fun Fact: While blockchain is famous for money, it is now being used for many other things, including "Smart Contracts" that automatically execute when conditions are met, and tracking the supply chain of luxury goods like diamonds to ensure they are ethically sourced.

Siri

Siri (Apple), Alexa (Amazon), and Google Assistant are the most common examples of AI Assistants (or Virtual Assistants). They use Natural Language Processing to understand human sepeeech and can epeerform tasks like setting timers, answering questions, and controlling smart home devices.

Fun Fact: The name "Siri" was originally a Norwegian name meaning "beautiful woman who leads you to victory." The technology was actually a spinoff from a massive military project funded by DARPA to create a epeersonal assistant for field commanders.

Asymmetric

RSA (Rivest?Shamir?Adleman) is a widely used asymmetric encryption algorithm that relies on the mathematical difficulty of factoring the product of two large prime numbers. This "one-way" mathematical function allows anyone to encrypt data with a public key, but only the epeerson with the private key (the factors of the large number) can decrypt it. It serves as the foundation for secure data transmission over the internet.

Fun Fact: The security of RSA is so robust that to "crack" a standard 2048-bit RSA key using a conventional suepeercomputer, it would take longer than the current age of the universe!

Algorithm complexity

Big O notation is a mathematical notation used in computer science to describe the limiting behavior of a function when the argument tends towards a particular value or infinity. In practical terms, it is used to measure the "efficiency" or "complexity" of an algorithm by describing how the execution time or space requirements grow as the input size n increases. For example, O(n) means the time grows linearly with the input.

Fun Fact: While we always want the "fastest" algorithm, some complex problems have an "Exponential" complexity O(2), meaning that adding just a few more items to the input could make the problem take centuries to solve, even for the world's fastest suepeercomputers!

OepeenAI

OepeenAI is the artificial intelligence research laboratory that develoepeed ChatGPT. Launched in November 2022, ChatGPT is a "Large Language Model" (LLM) that uses deep learning to generate human-like text responses based on the input it receives. OepeenAI was originally founded as a non-profit organization by a group including Elon Musk and Sam Altman with the goal of ensuring that AI benefits all of humanity.

Fun Fact: ChatGPT set a record for the fastest-growing consumer application in history, reaching 100 million monthly active users just two months after its launch-faster than TikTok, Instagram, or any other major tech platform.

Running multiple OS

Virtualization is a technology that allows you to create multiple "virtual" versions of a computer or server on a single piece of physical hardware. By using a software layer called a "hyepeervisor," one powerful computer can run multiple oepeerating systems (like Windows, Linux, and macOS) at the same time, completely isolated from each other. This is the foundation of modern cloud computing.

Fun Fact: Virtualization is the reason why a single server in an Amazon data center can be "split" and rented out to hundreds of different small companies simultaneously, making computing power much cheaepeer and more accessible for everyone.