Dataset Viewer
Auto-converted to Parquet Duplicate
question
stringlengths
15
141
answer
stringlengths
2
398
What is the chemical symbol for gold?
The chemical symbol for gold is Au, derived from the Latin word aurum.
How do you calculate the area of a circle?
The area of a circle is calculated using the formula A = πr², where r is the radius.
What was the primary cause of the French Revolution?
The revolution was primarily caused by social inequality, economic hardship, and the influence of Enlightenment ideals on the Third Estate.
Explain the concept of 'recursion' in programming.
Recursion is a programming technique where a function calls itself to solve smaller instances of the same problem until reaching a base case.
Who wrote the novel 'Pride and Prejudice'?
Jane Austen wrote Pride and Prejudice, published in 1813.
What is the capital city of Australia?
The capital city of Australia is Canberra.
If a train travels 120 miles in 2 hours, what is its average speed?
The average speed is 60 miles per hour.
Name the three main types of rock.
The three main types of rock are igneous, sedimentary, and metamorphic.
How do you say 'thank you' in Japanese?
'Thank you' in Japanese is 'Arigatou' (formal: Arigatou gozaimasu).
What is the purpose of a CSS file in web development?
CSS is used to define the visual style, layout, and presentation of HTML documents.
Which planet is known as the Red Planet?
Mars is known as the Red Planet due to the iron oxide on its surface.
What is the square root of 144?
The square root of 144 is 12.
Identify the four strokes of a typical internal combustion engine.
The four strokes are intake, compression, power, and exhaust.
Who is credited with inventing the World Wide Web?
Tim Berners-Lee invented the World Wide Web in 1989.
What is the tallest mountain in the world?
Mount Everest is the tallest mountain above sea level, located in the Himalayas.
How many continents are there on Earth?
There are seven continents: Africa, Antarctica, Asia, Europe, North America, Australia, and South America.
What does the acronym 'URL' stand for?
URL stands for Uniform Resource Locator.
What is the main ingredient in traditional guacamole?
The main ingredient is avocado.
How can you remove a red wine stain from a white shirt?
Blot the stain immediately, apply a mixture of dish soap and hydrogen peroxide, then wash in cold water.
What is the boiling point of water in Celsius?
The boiling point of water is 100 degrees Celsius at sea level.
Who painted the 'Mona Lisa'?
Leonardo da Vinci painted the Mona Lisa.
What is the function of mitochondria in a cell?
Mitochondria generate most of the cell's supply of adenosine triphosphate (ATP), used as a source of chemical energy.
In what year did the Berlin Wall fall?
The Berlin Wall fell in 1989.
Write a Python snippet to print numbers 1 to 5.
for i in range(1, 6): print(i)
What is the difference between a direct and indirect object?
A direct object receives the action of the verb, while an indirect object indicates to whom or for whom the action is done.
Which ocean is the largest on Earth?
The Pacific Ocean is the largest and deepest ocean.
What is the value of Pi to two decimal places?
The value of Pi is approximately 3.14.
What is the purpose of the 'git clone' command?
Git clone is used to create a local copy of a remote repository.
Name the three branches of the U.S. government.
The three branches are Legislative, Executive, and Judicial.
How do you properly store fresh ginger?
Store it in a resealable plastic bag in the refrigerator's crisper drawer or freeze it for longer storage.
What is the largest organ in the human body?
The skin is the largest organ in the human body.
What does 'HTTP' stand for?
HTTP stands for Hypertext Transfer Protocol.
Who was the first person to walk on the moon?
Neil Armstrong was the first person to walk on the moon in 1969.
What are the primary colors of light?
The primary colors of light are red, green, and blue.
What is a prime number?
A prime number is a whole number greater than 1 that has no divisors other than 1 and itself.
In chess, which piece can move in an L-shape?
The Knight moves in an L-shape.
What is the most abundant gas in Earth's atmosphere?
Nitrogen is the most abundant gas, making up about 78 percent of the atmosphere.
How many strings does a standard violin have?
A standard violin has four strings tuned to G, D, A, and E.
What is the currency used in the United Kingdom?
The currency used is the Pound Sterling (GBP).
Briefly explain 'Occam's Razor'.
Occam's Razor is a principle suggesting that the simplest explanation is usually the correct one.
What is the result of 15 multiplied by 8?
15 multiplied by 8 is 120.
Which element has the atomic number 1?
Hydrogen has the atomic number 1.
What is the capital of Japan?
The capital of Japan is Tokyo.
How do you comment out a line in JavaScript?
Use two forward slashes (//) at the beginning of the line.
What is the longest river in the world?
The Nile is generally considered the longest river, though some studies suggest the Amazon.
Identify the author of 'The Great Gatsby'.
F. Scott Fitzgerald is the author of The Great Gatsby.
What is the speed of light in a vacuum?
The speed of light is approximately 299,792,458 meters per second.
What does the 'Alt' key do in a Windows shortcut?
The Alt key is used to change the function of other keys or to access menu bars.
What is the significance of the Magna Carta?
It was a 1215 document that limited the power of the English monarch and established that everyone is subject to the law.
How many sides does a heptagon have?
A heptagon has seven sides.
What is the capital city of New Zealand?
Wellington
Explain the difference between a hypothesis and a theory in scientific terms.
A hypothesis is a testable prediction about a specific phenomenon, while a theory is a well-substantiated explanation of some aspect of the natural world, supported by a large body of evidence and repeated testing.
Solve for x: 3x + 7 = 22
Subtract 7 from both sides: 3x = 15. Divide by 3: x = 5.
What does HTTP stand for and what is its primary function?
HTTP stands for Hypertext Transfer Protocol. It is the foundation of data communication on the World Wide Web, defining how messages are formatted and transmitted between web servers and browsers.
In what year did the Berlin Wall fall?
1989
How would you write a polite email to request a meeting with a busy colleague?
Subject: Brief meeting request Hi [Name], I hope you're doing well. I'd appreciate 15 minutes of your time this week to discuss [topic]. Could you let me know a time that works for you? I'm flexible and can adjust to your schedule. Thanks, [Your Name]
If all roses are flowers and some flowers fade quickly, can we conclude that some roses fade quickly?
No. The statement "some flowers fade quickly" does not guarantee that the subset of roses is included in that group. It's possible that roses are among the flowers that do not fade quickly.
Write a Python function that returns the factorial of a non-negative integer.
def factorial(n): if n < 0: raise ValueError("Factorial is not defined for negative numbers") result = 1 for i in range(2, n + 1): result *= i return result
Which river forms part of the border between the United States and Mexico?
The Rio Grande
What are three essential items to include in a basic home first aid kit?
Adhesive bandages, antiseptic wipes, and gauze pads.
What is the largest planet in our solar system?
Jupiter
Describe the process of photosynthesis in one paragraph.
Photosynthesis is the process by which green plants, algae, and some bacteria convert light energy into chemical energy. Using chlorophyll in their leaves, they absorb sunlight to transform carbon dioxide and water into glucose and oxygen. The glucose provides energy for growth, while oxygen is released as a byproduct ...
Calculate 15% of 240.
36
What is the purpose of a version control system like Git?
A version control system tracks changes to files over time, allowing multiple people to collaborate on code, revert to previous versions, manage different development branches, and maintain a complete history of modifications.
Who wrote the novel '1984'?
George Orwell
How do you properly address a formal letter when you don't know the recipient's name?
Use "Dear Sir or Madam," or "To Whom It May Concern," followed by a colon. Avoid generic greetings like "Hello" in formal correspondence.
What is the boiling point of water at standard atmospheric pressure in degrees Celsius?
100°C
Explain the concept of opportunity cost in economics.
Opportunity cost is the value of the next best alternative that is forgone when making a decision. It represents what you give up to pursue a certain action, whether it's time, money, or resources.
Write a regular expression to match a valid email address format.
^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$
Which country has the most time zones?
France (including its overseas territories)
What steps should you take if you suspect a gas leak in your home?
Evacuate immediately, avoid flipping switches or using phones, do not light matches, call emergency services from outside, and wait for professionals to inspect and repair the leak.
What is the chemical symbol for gold?
Au
How does a binary search algorithm work?
Binary search repeatedly divides a sorted list in half. It compares the target value to the middle element; if they match, the search ends. If the target is smaller, it searches the left half; if larger, the right half. This continues until the value is found or the search space is empty.
In which year did the Titanic sink?
1912
What are the three main components of a thesis statement?
A strong thesis statement includes the topic, the claim or argument, and the main supporting points that will be developed in the paper.
If a train leaves Station A at 60 mph and another leaves Station B at 40 mph toward each other on a 500-mile track, how long until they meet?
5 hours. Combined speed is 100 mph. Time = distance / speed = 500 / 100 = 5 hours.
What is the difference between RAM and ROM in a computer?
RAM (Random Access Memory) is volatile, temporary memory used for active tasks and lost when power is off. ROM (Read-Only Memory) is non-volatile, permanent memory storing firmware like the BIOS, retained without power.
Name the seven continents.
Africa, Antarctica, Asia, Europe, North America, Australia (Oceania), South America
How do you remove a red wine stain from a carpet?
Blot immediately with a clean cloth. Mix one tablespoon dish soap, one tablespoon white vinegar, and two cups warm water. Apply with a sponge, blot dry, rinse with cold water, and blot again. Repeat if needed.
What is the Pythagorean theorem?
In a right triangle, the square of the hypotenuse (c) equals the sum of the squares of the other two sides (a and b): a² + b² = c².
What does the acronym URL stand for?
Uniform Resource Locator
Who painted the Mona Lisa?
Leonardo da Vinci
Explain how a firewall protects a network.
A firewall monitors and controls incoming and outgoing network traffic based on predetermined security rules. It acts as a barrier between trusted internal networks and untrusted external networks, blocking malicious traffic like hackers, viruses, and unauthorized access attempts.
Write a haiku about autumn.
Crisp air paints leaves gold, Whispers dance on cooling wind, Earth tucks in for sleep.
What is the speed of light in a vacuum, approximately?
299,792,458 meters per second (about 300,000 km/s)
How do you change a flat tire on a car?
Park safely, engage parking brake, loosen lug nuts slightly, jack up car, remove lug nuts and flat tire, mount spare, hand-tighten lug nuts, lower car, fully tighten lug nuts in star pattern, check pressure.
What is the main function of the mitochondria in a cell?
Mitochondria produce most of the cell's supply of adenosine triphosphate (ATP), used as a source of chemical energy, earning them the nickname "powerhouse of the cell."
Which amendment to the U.S. Constitution abolished slavery?
The 13th Amendment
What is the difference between 'affect' and 'effect'?
'Affect' is usually a verb meaning to influence. 'Effect' is usually a noun meaning the result of a change. Example: The weather affects my mood; the effect was noticeable.
Write a SQL query to find the second highest salary from an Employees table.
SELECT MAX(salary) FROM Employees WHERE salary < (SELECT MAX(salary) FROM Employees);
What is the currency of Japan?
Japanese yen (JPY)
How does vaccination provide immunity?
Vaccines introduce a harmless part of a pathogen (like a protein or weakened virus) to trigger an immune response. The body produces antibodies and memory cells that recognize and fight the real pathogen faster and more effectively if encountered later.
What are the primary colors of light?
Red, green, and blue (RGB)
How do you calculate the area of a circle?
Area = π × radius² (pi times radius squared)
What is the tallest mountain in the world above sea level?
Mount Everest
Describe the structure of a standard five-paragraph essay.
Introduction with thesis, three body paragraphs each supporting a main point with evidence, and a conclusion that restates the thesis and summarizes key arguments.
What does CPU stand for?
Central Processing Unit
How do you properly store fresh herbs to keep them longer?
Trim stems, place in a jar with an inch of water, cover loosely with a plastic bag, and refrigerate. Change water every few days. For basil, keep at room temperature.
What is the prime factorization of 60?
2² × 3 × 5
Explain the greenhouse effect in simple terms.
Greenhouse gases like carbon dioxide trap heat from the sun in Earth's atmosphere, warming the planet. Human activities increase these gases, enhancing the effect and causing global temperatures to rise.
End of preview. Expand in Data Studio

A 1006-row Q&A dataset generated on Battle Mode in LMArena. Some prompts where changed (and answers) since they were repeated.

Downloads last month
-

Collection including Tralalabs/TralaQA-Dataset-1000x