Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
WebRevo authored Oct 24, 2023
1 parent 4f45a5a commit a13cad9
Show file tree
Hide file tree
Showing 100 changed files with 25,923 additions and 0 deletions.
97 changes: 97 additions & 0 deletions APTITUDE/ALGEBRA/Arithematic.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<title>ALGEBRA</title>
<link rel="stylesheet" href="/APTITUDE/ALGEBRA/style.css">



</head>
<body>
<header>
<div class="logo">Logo</div>
<nav class="nav">
<ul>
<li><a href="/MAIN PAGE/index.html">Home</a></li>
<li><a href="/MENTOR/index.html">Mentor</a></li>
<li><a href="/NAVBAR/Nav.html"><i class="fa-solid fa-bars"></i></a></li>
</ul>
</nav>
</header>
<div>
<h1 class="title">ALGEBRA</h1>
</div>

<div class="start_btn"><button>Start Quiz</button></div>


<div class="info_box">
<div class="info-title"><span>Some Rules of this Quiz</span></div>
<div class="info-list">
<div class="info">1. You will have only <span>60 seconds</span> per each question.</div>
<div class="info">2. Once you select your answer, it can't be undone.</div>
<div class="info">3. You can't select any option once time goes off.</div>
<div class="info">4. You can't exit from the Quiz while you're playing.</div>
<div class="info">5. You'll get points on the basis of your correct answers.</div>
</div>
<div class="buttons">
<button class="quit">Exit Quiz</button>
<button class="restart">Continue</button>
</div>
</div>


<div class="quiz_box">
<header>
<div class="title">Awesome Quiz Application</div>
<div class="timer">
<div class="time_left_txt">Time Left</div>
<div class="timer_sec">60</div>
</div>
<div class="time_line"></div>
</header>
<section>
<div class="que_text">

</div>
<div class="option_list">

</div>
</section>


<footer>
<div class="total_que">

</div>
<button class="next_btn">Next Que</button>
</footer>
</div>


<div class="result_box">
<div class="icon">
<i class="fas fa-crown"></i>
</div>
<div class="complete_text">You've completed the Quiz!</div>
<div class="score_text">

</div>
<div class="buttons">
<button class="restart">Replay Quiz</button>
<button class="quit">Quit Quiz</button>
</div>
</div>


<script src="/APTITUDE/ALGEBRA/questions.js"></script>


<script src="/APTITUDE/ALGEBRA/script.js"></script>

</body>
</html>
115 changes: 115 additions & 0 deletions APTITUDE/ALGEBRA/questions.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@

let questions = [
{
numb: 1,
question:"Solve the equation for x: 3x - 8 = 16",
answer: "8",
options: [
"5",
"9",
"2",
"7"
]
},
{
numb: 2,
question: " If 2x + 5 = 17, find the value of x.",
answer: "7",
options: [
"8",
"2",
"4",
"7"
]
},
{
numb: 3,
question: "Solve the inequality: 2x + 3 < 11",
answer: "8",
options: [
"8",
"9",
"10",
"11"
]
},
{
numb: 4,
question: "Solve the inequality: 4x - 7 > 25",
answer: "x > 8",
options: [
"x > 4",
"x > 5",
"x > 7",
"x > 6"
]
},
{
numb: 5,
question: "Solve the quadratic equation: x^2 - 5x + 6 = 0",
answer: "x = 2, x = 3",
options: [
"x = 2, x = 3",
"x = 2, x = 8",
"x = 2, x = 7",
"x = 2, x = 5"
]
},


{
numb: 6,
question: "Solve the quadratic equation: 2x^2 - 7x + 3 = 0",
answer: "x = 1/2, x = 3",
options: [
"x = 1/2, x = 3",
"x = 1/3, x = 1",
"x = 1/5, x = 6",
"x = 1/2, x = 4"
]
},
{
numb: 7,
question: "Solve the equation for y: 4y + 9 = 25",
answer: "4",
options: [
"5",
"2",
"2",
"4"
]
},
{
numb: 8,
question: "If 3y - 8 = 10, find the value of y.",
answer:"6",
options: [
"4" ,
"5",
"6",
"7"
]
},
{
numb: 9,
question: "Solve the inequality: 3y - 5 ≤ 16",
answer: "y ≤ 7",
options: [
"y ≤ 3",
"y ≤ 2",
"y ≤ 2",
"y ≤ 78"
]
},
{
numb: 10,
question: " Solve the inequality: 5y + 4 ≥ 24",
answer: "y ≤ 7",
options: [
"y ≤ 3",
"y ≤ 2",
"y ≤ 2",
"y ≤ 78"
]
}
];
Loading

0 comments on commit a13cad9

Please sign in to comment.