id
stringlengths
6
20
source
stringclasses
6 values
instruction
stringlengths
11
5.18k
input
stringlengths
0
306
output
stringlengths
1
308
rationale
stringlengths
0
2.9k
subject
stringclasses
39 values
category
stringclasses
7 values
aquarat_47147
deepmind/aqua_rat
A 700-level question for the GMAT committed souls studying over the weekend. If a and b are distinct integers and a^b=b^a, how many solutions does the ordered pair (a, b) have?
A. None B. 1 C. 2 D. 4 E. Infinite
B. 1
(2,4) and (4,2) a=1 b=1 and a=2 b=2 also has the solution. But we need distinct. Now when we will increase a>4, b^a increase more rapidly than a^b. ANSWER:B
college_mathematics
mathematics
math_643
math_mc
How many different $4\times 4$ arrays whose entries are all 1's and -1's have the property that the sum of the entries in each row is 0 and the sum of the entries in each column is 0?
A
math_Counting & Probability
mathematics
pythonio_133
pythonio-mc
Program: def union_elements(test_tup1, test_tup2): res = tuple(set(test_tup1 + test_tup2)) return (res) Input: union_elements((11, 12, 13, 14),(13, 15, 16, 17) ) Output:
A
code
computer_science
math_1441
math_mc
Let $f : \mathbb{R} \to \mathbb{R}$ be a function such that \[f(x^2 + yf(z)) = xf(x) + zf(y)\]for all real numbers $x,$ $y,$ and $z.$ Let $n$ be the number of possible values of $f(5),$ and let $s$ be the sum of all possible values of $f(5).$ Find $n \times s.$
B
math_Intermediate Algebra
mathematics
NLP4Education_431
NLP4Education
Thick the \emph{incorrect} assertion. A. The goal of SAS-based cryptography is to reduce the length of the string that has to be authenticated. B. One way to authenticate a SAS is to use your phone. C. One can obtain a secure channel from a narrowband authenticated channel using SAS-based cryptography. D. SAS-based cry...
D. SAS-based cryptography always requires the SAS to be collision-resistant.
computer_security
computer_science
mmlu_aux_train_58900
mmlu_aux_train
Who is smarter? A human being or artificial intelligence ? The question swept the world last week when a Google-developed program called AlphaGo defeated the world top player, South Korean Lee Se-del, 4-1. So, what comes next? Some people have been arguing that artificial intelligence, or AI in short, will be a bad thi...
B. Lee Se-del was defeated.
machine_learning
computer_science
math_547
math_mc
How many non- empty subsets $S$ of $\{1,2,3,\ldots ,15\}$ have the following two properties? $(1)$ No two consecutive integers belong to $S$. $(2)$ If $S$ contains $k$ elements, then $S$ contains no number less than $k$. $\mathrm{(A) \ } 277\qquad \mathrm{(B) \ } 311\qquad \mathrm{(C) \ } 376\qquad \mathrm{(D) \ } 377\...
B
math_Counting & Probability
mathematics
aquarat_11941
deepmind/aqua_rat
If x and y are positive integers and y ≠ 1, then xy(y −1) is
A. Always even B. Always odd C. Odd only when x is odd D. Even only when y is even E. Odd only when xy is odd
A. Always even
Expression is xy(y-1). We can ignore x and only work with y. If y = even -> entire expression is even since anything multiplied by even is even If y = odd, y-1 -> even -> entire expression is even since anything multiplied by even is even Hence, entire expression will always be even. Answer (A).
college_mathematics
mathematics
pythonio_821
pythonio-mc
Program: def smallest_multiple(n): if (n<=2): return n i = n * 2 factors = [number for number in range(n, 1, -1) if number * 2 > n] while True: for a in factors: if i % a != 0: i += n break if (a == factors[-1] and i % a ==...
C
code
computer_science
allenai/sciq_11288
allenai/sciq
What done ozone help protect against? A. gamma rays B. x-rays C. helium rays D. ultraviolet rays
D. ultraviolet rays
Ozone (O 3 ) depletion in the atmosphere is of significant concern. This gas serves as a protection against the ultraviolet rays of the sun. Ozone is naturally depleted in addition to the depletion caused by human-made chemicals. The depletion reaction is a two-step process:.
high_school_physics
physics
pythonio_794
pythonio-mc
Program: def div_of_nums(nums,m,n): result = list(filter(lambda x: (x % m == 0 and x % n == 0), nums)) return result Input: div_of_nums([19, 65, 57, 39, 152, 639, 121, 44, 90, 190],2,4) Output:
B
code
computer_science
allenai/sciq_7303
allenai/sciq
In statistics a boundary on the precision and accuracy is known as what? A. median B. error C. instance D. frequency
B. error
An error is a boundary on the precision and accuracy of the result of a measurement. Some errors are caused by unpredictable changes in the measuring devices (such as balances, rulers, or calipers), but other errors can be caused by reading a measuring device incorrectly or by using broken or malfunctioning equipment. ...
high_school_statistics
mathematics
math_1229
math_mc
Say that a complex number $z$ is three-presentable if there is a complex number $w$ of absolute value $3$ such that $z = w - \frac{1}{w}$. Let $T$ be the set of all three-presentable complex numbers. The set $T$ forms a closed curve in the complex plane. What is the area inside $T$?
C
math_Intermediate Algebra
mathematics
math_1765
math_mc
An integer $n$ is said to be square-free if the only perfect square that divides $n$ is $1^2$. How many positive odd integers greater than 1 and less than $100$ are square-free?
D
math_Number Theory
mathematics
math_617
math_mc
There are two distinguishable flagpoles, and there are $19$ flags, of which $10$ are identical blue flags, and $9$ are identical green flags. Let $N$ be the number of distinguishable arrangements using all of the flags in which each flagpole has at least one flag and no two green flags on either pole are adjacent. Find...
A
math_Counting & Probability
mathematics
allenai/sciq_7630
allenai/sciq
What landform occurs most often along plate boundaries? A. dunes B. sinkholes C. geysers D. volcanoes
D. volcanoes
Volcanoes occur most often along plate boundaries.
college_geology
earth_science
math_1421
math_mc
Let $a,$ $b,$ $c$ be real numbers such that $1 \le a \le b \le c \le 4.$ Find the minimum value of \[(a - 1)^2 + \left( \frac{b}{a} - 1 \right)^2 + \left( \frac{c}{b} - 1 \right)^2 + \left( \frac{4}{c} - 1 \right)^2.\]
D
math_Intermediate Algebra
mathematics
mmlu_aux_train_33550
mmlu_aux_train
Flickering lights are annoying but they may have an advantage. Visible light communication (VLC) uses rapid pluses of light to transmit information wirelessly. Now it may be ready to compete with conventional Wi-fi. In a recent TED talk, Harald Hasas from the University of Edinburge,UK demonstrated one VLC prototype ,"...
C. VLC might solve the spectum crisis.
college_computer_science
computer_science
aquarat_53537
deepmind/aqua_rat
A train is moving at a speed of 132 km/hr. If the length of the train is 100 meters, how long will it take to cross a railway platform 120 meters long
A. 6 sec B. 7 ½ sec C. 8 sec D. 8 ½ sec E. 9 sec
A. 6 sec
Explanation: Speed of train = 132 ×(5/18) m/sec = 110/3 m/sec. Distance covered in passing the platform = (100 + 120) m = 220 m. Time taken =220 ×(3/110) sec =6 sec Answer: Option A
high_school_physics
physics
math_1810
math_mc
Someone observed that $6! = 8 \cdot 9 \cdot 10$. Find the largest positive integer $n$ for which $n!$ can be expressed as the product of $n - 3$ consecutive positive integers.
B
math_Number Theory
mathematics
math_1100
math_mc
A right circular cylinder with its diameter equal to its height is inscribed in a right circular cone. The cone has diameter 10 and altitude 12, and the axes of the cylinder and cone coincide. Find the radius of the cylinder. Express your answer as a common fraction.
B
math_Geometry
mathematics
mmlu_aux_train_92436
mmlu_aux_train
Life in the future will be different from life today. The population is growing fast. There will be more people in the world and most of them will live longer. Computer will be much smaller and more useful, and there will be at least one in each home. And computer science will be one of the most important subjects in ...
B. more people
high_school_computer_science
computer_science
pythonio_855
pythonio-mc
Program: def multiply_list(items): tot = 1 for x in items: tot *= x return tot Input: multiply_list([1,-2,3]) Output:
C
code
computer_science
pythonio_849
pythonio-mc
Program: def find_triplet_array(A, arr_size, sum): for i in range( 0, arr_size-2): for j in range(i + 1, arr_size-1): for k in range(j + 1, arr_size): if A[i] + A[j] + A[k] == sum: return A[i],A[j],A[k] return True return False Input: find_triplet_array([1, 4, 45, 6, 10, 8], 6, 22) Ou...
A
code
computer_science
allenai/sciq_11069
allenai/sciq
What is formed when the ceiling of an underground cave collapses? A. sinkhole B. hill C. groundwater D. mountain
A. sinkhole
As erosion by groundwater continues, the ceiling of a cave may collapse. The rock and soil above it sink into the ground. This forms a sinkhole on the surface. You can see an example of a sinkhole in Figure below . Some sinkholes are big enough to swallow vehicles and buildings.
earth_science
earth_science
math_1128
math_mc
The ellipse whose equation is \[\frac{x^2}{25} + \frac{y^2}{9} = 1\]is graphed below. The chord $\overline{AB}$ passes through a focus $F$ of the ellipse. If $AF = \frac{3}{2},$ then find $BF.$ [asy] unitsize (0.6 cm); pair A, B, F; F = (4,0); A = (35/8,3*sqrt(15)/8); B = (55/16,-9*sqrt(15)/16); draw(xscale(5)*ys...
B
math_Intermediate Algebra
mathematics
math_724
math_mc
A circle of radius $2$ has center at $(2,0)$. A circle of radius $1$ has center at $(5,0)$. A line is tangent to the two circles at points in the first quadrant. What is the $y$-intercept of the line?
C
math_Geometry
mathematics
allenai/sciq_1039
allenai/sciq
The genes that code for the positive cell cycle regulators are called what? A. primary genes B. ribosomes C. proto-oncogenes D. stem cell genes
C. proto-oncogenes
Proto-oncogenes The genes that code for the positive cell cycle regulators are called proto-oncogenes. Proto-oncogenes are normal genes that, when mutated in certain ways, become oncogenes, genes that cause a cell to become cancerous. Consider what might happen to the cell cycle in a cell with a recently acquired oncog...
college_biology
biology
aquarat_39957
deepmind/aqua_rat
At a certain college, 70 percent of the students taking physical education class who were injured reported their injury, while 20 percent of the students who were injured in physical education class didn't report their injury. What percent of the students taking physical education class were injured?
A. 87.5% B. 60.5% C. 40% D. 75.5% E. 80%
A. 87.5%
Statement: 70% of students taking Pysical Education class (PE) Admitted to being Injured (AI). Of the students who took PE who were Injured (I), 20% declined to admit injury (notAI). [Note: A Venn Diagram is useful to visualize the problem.] Solution: Sample space is 100%. PE = 100% AI/PE = 70% notAI/I = 20% => 100% - ...
high_school_statistics
mathematics
allenai/sciq_7103
allenai/sciq
Wavelengths are described by a unit of what? A. speed B. weight C. direction D. distance
D. distance
Wavelengths are described by a unit of distance, typically meters.
high_school_physics
physics
NLP4Education_325
NLP4Education
To which expression is the following for-loop translated? for x <- xs if x > 5; y <- ys yield x + y A. xs.flatMap(x => ys.map(y => x + y)).withFilter(x => x > 5) B. xs.withFilter(x => x > 5).map(x => ys.flatMap(y => x + y)) C. xs.withFilter(x => x > 5).flatMap(x => ys.map(y => x + y)) D. xs.map(x => ys.flatMap(y => x +...
C. xs.withFilter(x => x > 5).flatMap(x => ys.map(y => x + y))
college_computer_science
computer_science
math_1423
math_mc
Let $a_1 = a_2 = a_3 = 1.$ For $n > 3,$ let $a_n$ be the number of real numbers $x$ such that \[x^4 - 2a_{n - 1} x^2 + a_{n - 2} a_{n - 3} = 0.\]Compute the sum $a_1 + a_2 + a_3 + \dots + a_{1000}.$
A
math_Intermediate Algebra
mathematics
allenai/sciq_2748
allenai/sciq
One of the fundamental laws of chemistry deals with the fact that we cannot create or destroy what? A. matter B. stars C. protein D. time
A. matter
One of the fundamental laws of chemistry deals with the fact that we cannot (using chemical means) create or destroy matter. When a reaction is run, the number of atoms of each specific type must be the same on both sides of the equation. For some materials, it turns out that one element can combine with a second eleme...
high_school_chemistry
chemistry
mmlu_aux_train_98980
mmlu_aux_train
Which two forces are likely the cause of canyons? A. water plus fire B. fire and brimstone C. water plus gravity D. H20 and lemmings
C. water plus gravity
college_earth_science
earth_science
allenai/sciq_2852
allenai/sciq
The temperature at which all molecular motion has ceased is called what? A. 0 degrees celcius B. absolute zero C. 0 degrees kelvin D. stopping point
B. absolute zero
Making Connections: Absolute Zero What is absolute zero? Absolute zero is the temperature at which all molecular motion has ceased. The concept of absolute zero arises from the behavior of gases. Figure 13.9 shows how the pressure of gases at a constant volume decreases as temperature decreases. Various scientists have...
high_school_physics
physics
math_1624
math_mc
How many of the integers between 1 and 1000, inclusive, can be expressed as the difference of the squares of two nonnegative integers?
B
math_Number Theory
mathematics
allenai/sciq_9050
allenai/sciq
What is the term for the change in temperature with distance? A. distance gradient B. heat gradient C. temperature volatility D. temperature gradient
D. temperature gradient
Temperature gradient is the change in temperature with distance.
conceptual_physics
physics
NLP4Education_519
NLP4Education
Let $N=3\cdot5\cdot13$. Then a quadratic residue in $\mathbb{Z}_N^*$ has A. 2 square roots. B. 3 square roots. C. 4 square roots. D. 8 square roots.
C. 4 square roots.
abstract_algebra
mathematics
mmlu_aux_train_27685
mmlu_aux_train
Wine drinkers tend to buy healthier food than beer drinkers, according to a Danish study published on Tuesday on the website of a weekly medical magazine. People who bought wine at the store were also more likely to buy fruit, vegetables, fish, lean meat and milk than beer buyers did, said the study. Beer buyers were...
B. usually buy healthier food than beer drinkers
clinical_knowledge
biology
mmlu_aux_train_4331
mmlu_aux_train
Which mineral has six-sided transparent crystals that will scratch glass? A. sulfur B. quartz C. calcite D. feldspar
B. quartz
high_school_chemistry
chemistry
allenai/sciq_4635
allenai/sciq
What process brings nutrients from the ocean's floor to its surface? A. Down welling B. Tides C. coastal swell D. upwelling
D. upwelling
Upwelling brings nutrients to the surface from the ocean floor. Nutrients are important resources for ocean life. However, they aren’t the only resources on the ocean floor.
college_biology
biology
allenai/sciq_10039
allenai/sciq
What is formed when different gases are confined to the same container? A. compact mixture B. homogeneous mixture C. particulate mixture D. linear mixture
B. homogeneous mixture
Gases mix homogeneously when confined to same container. When several gases are added to a container, the individual gas particles mix freely, forming a homogeneous mixture in which each type of gas is randomly distributed throughout all the available volume.
high_school_chemistry
chemistry
allenai/sciq_1505
allenai/sciq
What are the two components of a mixture called? A. acid and base B. nutrients and a solvent C. solute and a solvent D. concentration and a solvent
C. solute and a solvent
Combinations of different substances are called mixtures.
high_school_chemistry
chemistry
math_1967
math_mc
A particular convex polygon with seven sides has exactly one right angle. How many diagonals does this seven-sided polygon have?
B
math_Prealgebra
mathematics
math_2189
math_mc
The perpendicular bisectors of the sides of triangle $ABC$ meet its circumcircle at points $A',$ $B',$ and $C',$ as shown. If the perimeter of triangle $ABC$ is 35 and the radius of the circumcircle is 8, then find the area of hexagon $AB'CA'BC'.$ [asy] unitsize(2 cm); pair A, B, C, Ap, Bp, Cp, O; O = (0,0); A = di...
C
math_Precalculus
mathematics
math_1694
math_mc
Find the largest possible value of $k$ for which $3^{11}$ is expressible as the sum of $k$ consecutive positive integers.
C
math_Number Theory
mathematics
math_2114
math_mc
Let $\mathbf{a}$ and $\mathbf{b}$ be nonzero vectors such that \[\|\mathbf{a}\| = \|\mathbf{b}\| = \|\mathbf{a} + \mathbf{b}\|.\]Find the angle between $\mathbf{a}$ and $\mathbf{b},$ in degrees.
B
math_Precalculus
mathematics
mmlu_aux_train_16288
mmlu_aux_train
What exactly is a lie? Is it anything we say which we know is untrue? Or is it something more than that? For example, suppose a friend wants to borrow some money from you. You say, "I wish I could help you but I'm short of money myself." In fact you are not short of money but your friend is in the habit of not paying h...
C. told in order to avoid offending someone
formal_logic
mathematics
aquarat_11824
deepmind/aqua_rat
M is a certain set of numbers with an average (arithmetic mean) of 10 and a standard deviation of 3. Q is a subset of M consisting of 5 terms. Exactly 80% of the numbers in Q are located within 2 standard deviations from the average of M. Which of the following could Q be?
A. {3, 4, 5, 10, 14} B. {4, 6, 7, 10, 12} C. {3, 5, 5, 10, 17} D. {1, 5, 7, 10, 18} E. {5, 6, 7, 10, 12}
A. {3, 4, 5, 10, 14}
Exactly 80% of the numbers in Q, so 4 out of 5 numbers are from 10 - 2*{SD} = 4 to 10 + 2*{SD} = 16. A. {3, 4,5, 10, 14} --> 4 numbers are in this range. Ok B. {4,6, 7, 10, 12} --> all 5 numbers are in this range. Discard. C. {3,5, 5, 10, 17} --> only 3 numbers are in this range. Discard. D. {1,5, 7, 10, 18} --> only 3...
high_school_statistics
mathematics
allenai/sciq_7133
allenai/sciq
Recent fossil evidence has shown that the evolutionary divergence of what group from other land animals was characterized by streamlining and simplifying the digestive system, which allowed a high metabolic rate? A. marsupials B. rats C. fish D. birds
D. birds
Avian Adaptations Birds have a highly efficient, simplified digestive system. Recent fossil evidence has shown that the evolutionary divergence of birds from other land animals was characterized by streamlining and simplifying the digestive system. Unlike many other animals, birds do not have teeth to chew their food. ...
college_biology
biology
aquarat_20394
deepmind/aqua_rat
If (1+a)b=b, which of the following must be true?
A. a=-1 or b=0 B. a=0 or b=0 C. a=1 or b=1 D. a=-1 or b=-1 E. a=0 or b=1
B. a=0 or b=0
By only having ab=0, we cannot say answer is B as A and E options also satisfy the condition ab=0. ans B
abstract_algebra
mathematics
math_1424
math_mc
In Zuminglish, all words consist only of the letters $M, O,$ and $P$. As in English, $O$ is said to be a vowel and $M$ and $P$ are consonants. A string of $M's, O's,$ and $P's$ is a word in Zuminglish if and only if between any two $O's$ there appear at least two consonants. Let $N$ denote the number of $10$-letter Zum...
C
math_Intermediate Algebra
mathematics
math_1706
math_mc
What is the smallest positive integer $n$ such that $\frac{n}{n+101}$ is equal to a terminating decimal?
A
math_Number Theory
mathematics
allenai/sciq_5441
allenai/sciq
Bar, circle, and line are examples of what kind of data visualization? A. spreadsheets B. maps C. formulas D. graphs
D. graphs
Graphs are very useful tools in science because they display data visually. Three commonly used types of graphs are bar graphs, circle graphs, and line graphs. Each type of graph is suitable for a different type of data.
college_computer_science
computer_science
mmlu_aux_train_99092
mmlu_aux_train
Which would you use a graduated cylinder for? A. to measure bone shards B. to measure a solid C. to measure a dog D. to measure grape kool-aid
D. to measure grape kool-aid
high_school_chemistry
chemistry
mmlu_aux_train_74271
mmlu_aux_train
Fiona Famous was a very popular girl at school. She was clever and fun, and got on well with everyone. It was no accident that Fiona was so popular. From an early age she had tried hard to be kind and friendly to everyone. She invited the whole class to her birthday party, and from time to time she would give presents ...
C. was kind and friendly to everyone
high_school_computer_science
computer_science
math_430
math_mc
A two-row triangle is created with a total of 15 pieces: nine unit rods and six connectors, as shown. What is the total number of pieces that would be used to create an eight-row triangle? [asy] draw((0,0)--(4,0)--(2,2sqrt(3))--(0,0)--cycle,linewidth(1)); draw((2,0)--(3,sqrt(3))--(1,sqrt(3))--(2,0)--cycle,linewidth(1)...
A
math_Algebra
mathematics
allenai/sciq_6753
allenai/sciq
What force is perpendicular to velocity and causes uniform circular motion? A. circular friction B. tangential force C. centripetal force D. centripetal torque
C. centripetal force
Figure 6.11 The frictional force supplies the centripetal force and is numerically equal to it. Centripetal force is perpendicular to velocity and causes uniform circular motion. The larger the F c , the smaller the radius of curvature r and the sharper the curve. The second curve has the same v , but a larger.
conceptual_physics
physics
math_805
math_mc
Triangle $ABC$ has vertices $A(0, 8)$, $B(2, 0)$, $C(8, 0)$. A horizontal line with equation $y=t$ intersects line segment $ \overline{AB} $ at $T$ and line segment $ \overline{AC} $ at $U$, forming $\triangle ATU$ with area 13.5. Compute $t$.
A
math_Geometry
mathematics
aquarat_13258
deepmind/aqua_rat
If S + A < S - A < A - S, which of the following is correct?
A. A < S < 0. B. S < A < 0. C. S < 0 < A. D. 0 < B < A. E. B > A > 0.
B. S < A < 0.
Check first inequality S + A < S - A A<-A A is -ve Check another equality S - A < A - S -2A<-2S A>S Combining both 0>A>S Option B fits only Ans B
abstract_algebra
mathematics
allenai/sciq_10296
allenai/sciq
Even though tellurium does indeed have a greater average atomic mass than iodine, it is properly placed before iodine in the? A. periodic table B. cycles table C. phases table D. theory table
A. periodic table
When ordered by atomic number, the discrepancies within Mendeleev’s table disappeared. Tellurium has an atomic number of 52, while iodine has an atomic number of 53. Even though tellurium does indeed have a greater average atomic mass than iodine, it is properly placed before iodine in the periodic table. Mendeleev and...
high_school_chemistry
chemistry
NLP4Education_586
NLP4Education
Using a block cipher, we can build ... A. only hash functions. B. only MACs. C. only hash functions and MACs. D. hash functions, MACs, and stream ciphers.
D. hash functions, MACs, and stream ciphers.
computer_security
computer_science
math_1752
math_mc
Let $g(n)$ be the product of the proper positive integer divisors of $n$. (Recall that a proper divisor of $n$ is a divisor other than $n$.) For how many values of $n$ does $n$ not divide $g(n)$, given that $2 \le n \le 50$?
B
math_Number Theory
mathematics
allenai/sciq_10690
allenai/sciq
What do you call a circuit that consists of one loop, which if interrupted at any point, causes cessation of the whole circuit's electric current? A. series circuit B. dramatic circuit C. constant circuit D. parallel circuit
A. series circuit
A circuit that consists of one loop is called a series circuit . You can see a simple series circuit below. If a series circuit is interrupted at any point in its single loop, no current can flow through the circuit and no devices in the circuit will work. In the series circuit below, if one light bulb burns out, the o...
electrical_engineering
engineering
mmlu_aux_train_66902
mmlu_aux_train
Traffic Management Traffic lights are key tools for regulating traffic How.They are not, however, perfect.Drivers exchange the traffic jams that would happen at unmanaged crossings for a pattern of stop-go movement that can still be annoying, and which bums more fuel than a smooth passage would. Creating such a smooth...
B. they are too costly and not widely used
computer_security
computer_science
aquarat_58002
deepmind/aqua_rat
If 40 percent of all students at college X have brown hair and 70 percent of all students at college X have blue eyes what is the difference between the minimum and maximum probability of picking a student from college X who has neither brown hair nor blue eyes?
A. 0.2 B. 0.3 C. 0.4 D. 0.6 E. 0.7
B. 0.3
Max value for y = minimum of (40,70). Because the number of students with brown hair is 40, the maximum number of students to have both brown hair and blue eyes can only be 40. When y=40 x=30 Probability of selecting 30 students out of 100 students = 30/100 = 0.3 x will be minimum when y is minimum. The minimum possibl...
high_school_statistics
mathematics
math_391
math_mc
Find the sum of the $x$-coordinates of the solutions to the system of equations $y=|x^2-6x+5|$ and $y=\frac{29}{4}-x$.
A
math_Algebra
mathematics
allenai/sciq_3268
allenai/sciq
What is energy that travels in the form of an electromagnetic wave? A. light B. sound C. microwave D. gravity
A. light
Light is one type of electromagnetic radiation . Light is energy that travels in the form of an electromagnetic wave. Pictured below is a diagram of an electromagnetic wave ( Figure below ). An electromagnetic (EM) wave has two parts: an electric field and a magnetic field. The electric and magnetic fields vibrate up a...
conceptual_physics
physics
mmlu_aux_train_65086
mmlu_aux_train
Can we seek simple, effective ways to help kids grow up against the national obesity trend? Here's advice from a new study: --Make sure kids eat healthfully, starting with a good breakfast every day. --Limit kids' sedentary free time. --Promote positive self-esteem in children. --Be a good role model for a healthy l...
B. best prevention for obesity
high_school_biology
biology
aquarat_6710
deepmind/aqua_rat
If (x + yi) / i = ( 7 + 9i ) , where x and y are real, what is the value of (x + yi)(x - yi)?
A. 120 B. 130 C. 150 D. 170 E. 200
B. 130
(x + yi) / i = ( 7 + 9i ) (x + yi) = i(7 + 9i) = -9 + 7i (x + yi)(x - yi) = (-9 + 7i)(-9 - 7i) = 81 + 49 = 130 CORRECT ANSWER IS B) 130
college_mathematics
mathematics
math_2184
math_mc
Express $\sin 4x + \sin 6x$ as a product of trigonometric functions.
B
math_Precalculus
mathematics
aquarat_93384
deepmind/aqua_rat
In a consumer survey, 82% of those surveyed liked at least one of three products: 1, 2, and 3. 45% of those asked liked product 1, 30% liked product 2, and 20% liked product 3. If 4% of the people in the survey liked all three of the products, what percentage of the survey participants liked more than one of the three ...
A. 9 B. 11 C. 13 D. 15 E. 17
A. 9
45 + 30 + 20 = 95 The number 95 includes some people counted twice and some people counted three times. 95 - 82 = 13, and this number represents people counted twice or three times. 4% of the people are counted two extra times. The percentage of people counted one extra time is 13 - 4(2) = 5. The percentage of people w...
high_school_statistics
mathematics
aquarat_27454
deepmind/aqua_rat
A(n+1)=1+(1/A(n)) and A(1)=1. What is the value of A(9)?
A. 53/32 B. 55/34 C. 57/36 D. 59/38 E. 61/40
B. 55/34
A(n+1)=1+(1/A(n)) A(1) = 1 A(2) = 2 A(3) = 3/2 A(4) = 5/3 A(5) = 8/5 A(6) = 13/8 A(7) = 21/13 A(8) = 34/21 A(9) = 55/34 The answer is B.
college_mathematics
mathematics
mmlu_aux_train_97272
mmlu_aux_train
A boy is waiting to see a full moon. He notes that the full moon is tonight, and looks at it. If he wants to see another, he must wait A. a week B. a day C. a fortnight D. a month
D. a month
astronomy
physics
math_563
math_mc
Point $P$ is selected at random from the interior of the pentagon with vertices $A=(0,2)$, $B= (4,0)$, $C = (2\pi +1, 0)$, $D=(2\pi +1,4)$, and $E=(0,4)$. What is the probability that $\angle APB$ is obtuse? Express your answer as a common fraction. [asy] pair A,B,C,D,I; A=(0,2); B=(4,0); C=(7.3,0); D=(7.3,4); I=(0,4)...
A
math_Counting & Probability
mathematics
NLP4Education_3
NLP4Education
In which of the following cases does JOS acquire the big kernel lock? A. Processor traps in kernel mode B. Processor returns from kernel mode to user mode C. Initialization of application processor D. Hardware interrupt occurs while in kernel mode
C. Initialization of application processor
computer_security
computer_science
math_797
math_mc
In the figure, circle $O$ has radius 6 units. Chord $CD$ has length 8 units and is parallel to segment $KB$. If $KA$ = 12 units and points $K$, $A$, $O$ and $B$ are collinear, what is the area of triangle $KDC$? Express your answer in simplest radical form. [asy] draw(Circle((0,0),6)); dot((0,0)); label("$O$",(0,0),S);...
D
math_Geometry
mathematics
mmlu_aux_train_68013
mmlu_aux_train
On May 2, 2012, Ashok Gadgil became the winner of the $100,000 Lemelson-MIT Award for Global Innovation . Each year, the honor is given to an inventor who has made a big difference in the lives of people in developing countries. Gadgil is a professor and physicist at the University of California, Berkeley. He spent th...
B. he improved the lives of people in developing countries
college_physics
physics
allenai/sciq_3151
allenai/sciq
What type of cell has negative anode is positive cathode? A. non-voltaic cell B. planetoid cell C. picric cell D. voltaic cell
D. voltaic cell
The standard cell potential is negative, indicating a nonspontaneous reaction. The battery must be capable of delivering at least 1.10 V of direct current in order for the reaction to occur. Another difference between a voltaic cell and an electrolytic cell is the signs of the electrodes. In a voltaic cell, the anode i...
high_school_chemistry
chemistry
pythonio_294
pythonio-mc
Program: def find_First_Missing(array,start,end): if (start > end): return end + 1 if (start != array[start]): return start; mid = int((start + end) / 2) if (array[mid] == mid): return find_First_Missing(array,mid+1,end) return find_First_Missing(array,start,mi...
D
code
computer_science
allenai/sciq_3226
allenai/sciq
What large organelle comprised of cup-shaped discs is found close to the nucleus of the cell, where it modifies proteins that have been delivered in transport vesicles? A. chloroplast B. golgi apparatus C. mitochondria D. ribosome
B. golgi apparatus
The Golgi apparatus is a large organelle that is usually made up of five to eight cup-shaped, membrane-covered discs called cisternae, as shown in Figure above . The cisternae look a bit like a stack of deflated balloons. The Golgi apparatus modifies, sorts, and packages different substances for secretion out of the ce...
college_biology
biology
aquarat_32581
deepmind/aqua_rat
If it is assumed that 70 percent of those who receive a questionnaire by mail will respond and 300 responses are needed, what is the minimum number of questionnaires that should be mailed?
A. 400 B. 428.5 C. 480 D. 500 E. 600
B. 428.5
Minimum no of mail to be sent for getting 300 responses at 70% = 300/0.7 = 428.5 Option B
high_school_statistics
mathematics
aquarat_85498
deepmind/aqua_rat
A is B's sister. C is B's mother. D is C's father. E is D's mother. Then, how is A related to D?
A. Grandfather B. Daughter C. Grandmother D. Granddaughter E. SISTER
D. Granddaughter
A is the sister of B and B is the daughter of C. So, A is the daughter of C. Also, D is the father of C. So, A is the granddaughter of D. Answer: D
formal_logic
mathematics
aquarat_40375
deepmind/aqua_rat
A survey was sent to 60 customers, 7 of whom responded. Then the survey was redesigned and sent to another 72 customers, 9 of whom responded. By approximately what percent did the response rate increase from the original survey to the redesigned survey?
A. 2% B. 7% C. 14% D. 28% E. 63%
B. 7%
Rate of first survey = 7/60 Rate of second survey = 9/72 % Response rate increase (9/72-7/60)/(7/60) = 7% Answer is B = 7%
high_school_statistics
mathematics
math_2060
math_mc
A car travels 40 kph for 20 kilometers, 50 kph for 25 kilometers, 60 kph for 45 minutes and 48 kph for 15 minutes. What is the average speed of the car, in kph?
C
math_Prealgebra
mathematics
pythonio_308
pythonio-mc
Program: def pair_OR_Sum(arr,n) : ans = 0 for i in range(0,n) : for j in range(i + 1,n) : ans = ans + (arr[i] ^ arr[j]) return ans Input: pair_OR_Sum([7,3],2) Output:
D
code
computer_science
mmlu_aux_train_1090
mmlu_aux_train
In a prosecution of Dale for murdering Vera, Dale testified that the killing had occurred in self defense when Vera tried to shoot him. In rebuttal, the prosecution seeks to call Walter, Vera's father, to testify that the day before the killing, Vera told Walter that she loved Dale so much she could never hurt him. Wal...
A. admissible within the hearsay exception for statements of the declarant's then existing state of mind.
formal_logic
mathematics
math_112
math_mc
Given the system of equations \begin{align*} xy &= 6 - 2x - 3y,\\ yz &= 6 - 4y - 2z,\\ xz &= 30 - 4x - 3z, \end{align*}find the positive solution of $x$.
D
math_Algebra
mathematics
allenai/sciq_10048
allenai/sciq
What number is the sum of the numbers of protons and neutrons present in the nucleus of an atom? A. mass number B. mass total C. nuclear number D. combined number
A. mass number
As you learned in Chapter 1 "Introduction to Chemistry", the mass number is the sum of the numbers of protons and neutrons present in the nucleus of an atom. The mass number is an integer that is approximately equal to the numerical value of the atomic mass. Although the mass number is unitless, it is assigned units ca...
high_school_chemistry
chemistry
mmlu_aux_train_98811
mmlu_aux_train
Bacteria will build up on food if you leave it out, so if you make sure its protected from the air, you can A. go to space B. lift a bus C. Fly D. avoid falling ill
D. avoid falling ill
high_school_biology
biology
math_1972
math_mc
Sides $\overline{AH}$ and $\overline{CD}$ of regular octagon $ABCDEFGH$ are extended to meet at point $P$. What is the degree measure of angle $P$?
D
math_Prealgebra
mathematics
NLP4Education_818
NLP4Education
Let S(x) be the statement “x has been in a lake” and L(x) be the statement “x lives in Lausanne” and the domain of x consists of all the humans in the world. The sentence : “there exists exactly one human that lives in Lausanne and that has never been in a lake” corresponds to the statement (multiple choices possible)...
B. \( \exists! x (\neg S(x) \wedge L(x)) \)
formal_logic
mathematics
NLP4Education_250
NLP4Education
When constructing a word embedding, what is true regarding negative samples? A. They are chosen from words that do not appear in the current context window. B. They are selected only if they are not stop words. C. Their sampling frequency is reduced by applying a logarithmic scale. D. They are oversampled if less frequ...
D. They are oversampled if less frequent.
machine_learning
computer_science
aquarat_96530
deepmind/aqua_rat
Set R has a mean of 11 and a standard deviation of 1.5. We are going to add two additional numbers to Set S. Which pair of numbers would decrease the standard deviation the most?
A. {15, 13} B. {11, 14} C. {10, 12} D. {14, 19} E. {14, 11}
C. {10, 12}
The lesser the variance( values closer to mean) ,lower the standard deviation. As discussed in question the mean is 11,the values (10,12) are closer than others. Hence Answer : C
high_school_statistics
mathematics
mmlu_aux_train_96308
mmlu_aux_train
What decreases in an environment as the amount of rain increases? A. solar light B. water C. rivers D. hydration
A. solar light
high_school_biology
biology
math_829
math_mc
Let $\triangle{PQR}$ be a right triangle with $PQ = 90$, $PR = 120$, and $QR = 150$. Let $C_{1}$ be the inscribed circle. Construct $\overline{ST}$ with $S$ on $\overline{PR}$ and $T$ on $\overline{QR}$, such that $\overline{ST}$ is perpendicular to $\overline{PR}$ and tangent to $C_{1}$. Construct $\overline{UV}$ with...
A
math_Geometry
mathematics
mmlu_aux_train_24937
mmlu_aux_train
Humans: It's time to give up the earth or face extinction . It could be the plot of a summer blockbuster , but this prediction isn't science fiction. It's a glimpse of the future, according to famous British scientist Stephen Hawking. "I see great dangers for the human race," he said in an interview with global forum ...
C. The earth will be destroyed by worldwide wars before long.
astronomy
physics
allenai/sciq_3682
allenai/sciq
Which process causes rocks at the earth's surface to change form? A. remodeling B. eroding C. bleaching D. weathering
D. weathering
Weathering changes solid rock into sediments. Sediments are different sizes of rock particles. Boulders are sediments; so is gravel. At the other end, silt and clay are also sediments. Weathering causes rocks at the Earth’s surface to change form. The new minerals that form are stable at the Earth’s surface.
earth_science
earth_science
math_2053
math_mc
A $\textit{palindrome}$ is a number which reads the same forward as backward, for example 313 or 1001. Ignoring the colon, how many different palindromes are possible on a 12-hour digital clock displaying only the hours and minutes? (Notice a zero may not be inserted before a time with a single-digit hour value. Theref...
D
math_Prealgebra
mathematics
mmlu_aux_train_62178
mmlu_aux_train
Lisa Pina never thought she would need the fire safety training she received during her apprenticeship as a union painter and dry waller. On Friday morning,she was thanking God she had _ . On Thursday night,while Pina was babysitting her granddaughter,nephew and two nieces in her sister's apartment,she smelled smoke ...
D. a babysitter rescuing kids from a big fire
high_school_computer_science
computer_science