Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue595 #597

Merged
merged 4 commits into from
Apr 4, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions funwithphysics/src/Components/Quiz/mathsquiz.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,66 @@ const MathsQuiz = () => {
{ answerText: " Base=13cm and Altitude=12cm", isCorrect: false },
],
},
{
questionText:
"The value of logₐb log₆c log꜀a is",
answerOptions: [
{ answerText: " 2", isCorrect: false },
{ answerText: " 1", isCorrect: true},
{ answerText: " 3", isCorrect: false },
{ answerText: " 4", isCorrect: false },
],
},
{
questionText:
"The remainder when 38¹⁵ is divided by 13 is",
answerOptions: [
{ answerText: " 12", isCorrect: true },
{ answerText: " 1", isCorrect: false},
{ answerText: " 11", isCorrect: false },
{ answerText: " 5", isCorrect: false },
],
},
{
questionText:
"The order and the degree of the differential equation of all tangent lines to the parabola x²=4y is ",
answerOptions: [
{ answerText: " 1,4", isCorrect: false },
{ answerText: " 1,3", isCorrect: false},
{ answerText: " 2,2", isCorrect: false },
{ answerText: " 2,1", isCorrect: true},
],
},
{
questionText:
"A line AB in three-dimensional space makes angle 45° and 120° with the positive x-axis and the positive y-axis respectively. If AB makes an acute angle θ with the positive z-axis, then θ equals",
answerOptions: [
{ answerText: " 30°", isCorrect: false },
{ answerText: "45° ", isCorrect: false},
{ answerText: "60°", isCorrect: true },
{ answerText: "75° ", isCorrect: false },
],
},
{
questionText:
"Let W denote the words in the English dictionary. Define the relation R by :R={(x,y) ∈ W*W the words x and y have atleast one letter in common }. Then R is",
answerOptions: [
{ answerText: " reflexive, symmetric and non transitive", isCorrect: true },
{ answerText: " reflexive, symmetric and transitive", isCorrect: false},
{ answerText: " reflexive, not symmetric and transitive", isCorrect: false },
{ answerText: " not reflexive, symmetric and transitive", isCorrect: false },
],
},
{
questionText:
"If in a triangle ABC, the altitudes from the vertices A, B, C on opposite sides are in H.P.Then sin A, sin B, sin C are in ",
answerOptions: [
{ answerText: " G.P.", isCorrect: false },
{ answerText: " A.P.", isCorrect: true},
{ answerText: " Arithmetic Geometric Progression", isCorrect: false },
{ answerText: " H.P.", isCorrect: false },
],
},
{
questionText:
" The sum of the reciprocals of Rehman’s ages 3 years ago and 5 years from now is 1/3. The present age of Rehman is: ",
Expand Down