” Welcome to Biology Notes for Learners; in this blog you will get valuable Biology lessons, Practical Biology Videos, Biology Exams, Biology Assignments and Motivational tips for all learners . Highly Thanks for being here!

Tuesday, November 29, 2022

Slideshow htlm code embed sample

OMBIOLOGY4U

Hormood ka Caawiyaha Ardayda Dugsiyada Sare ee Somaliland - OMBIOLOGY4U.

Ombiology4u is the leading free educational website for Somaliland Secondary School Students.

Image Slidershow for Blogger

OMBIOLOGY4U - Hormoodka Kaabaha Ardayda Dugsiyada Sare ee Somaliland

Ombiology4u - Hoyga Casharada, Buugta iyo Imtixaanada Dugsiyada Sare ee Somaliland.

1 / 8
OMBIOLOGY4U
2 / 8
3 / 8
4 / 8
5 / 8
6 / 8
7 / 8
8 / 8

Monday, November 28, 2022

Simple HTML CODE

Page Title Hello World!

Exam check sample quiz

Quiz Questions And Answers

Quiz Questions

Question 1.
He -------------------- it.

don't like
doesn't like
doesn't likes


Question 2.
They -------------------- here very often.
don't come
doesn't come
doesn't comes


Question 3.
John and Mary -------------------- twice a week.
come
comes
coming


Question 4.
I -------------------- mind at all.
not
isn't
don't


Question 5.
It -------------------- sense.
don't make
doesn't makes
doesn't make


Question 6.
They -------------------- happy.
seem
seems
seeming

Question 7.
You -------------------- to do it.

don't have
doesn't have
doesn't has


Question 8.
She -------------------- a brother.
doesn't has
don't has
doesn't have


Question 9.
The journey -------------------- an hour.
take
takes
taking


Question 10.
I -------------------- it now.
want
wants
wanting


Question 11.
Peggy -------------------- by bus.
come
comes
coming


Question 12.
She --------------------.
don't know
doesn't knows
doesn't know


Question 13.
She -------------------- hard.
try
trys
tries


Question 14.
They -------------------- football every weekend.
play
plays
playing


Question 15.
The exam -------------------- two hours.
last
lastes
lasts

Number of score out of 15 = Score in percentage =

1. What is the full form of the RAM?




... Answer is B)
The full form of RAM is "Random Access Memory"


2. What is the Brain of a Computer?




... Answer is C)
CPU is called brain of the computer.


3. Who is the prime minister of India




... Answer is A)
Narenda Modi is the Prime minister of india.

1. What is the function of red blood cells?





Sunday, November 27, 2022

Check exam 2

Question goes here.
body{ padding: 0; margin: 0; width:100vw; height: 100vh; } .panel{ height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; } .question-container{ margin: 10px; padding: 5px; width: 80vw; height: 10vh; background-color: #c7dddf; font-size: x-large; text-align: center; } .result{ margin: 10px; padding: 5px; width:80vw; height: 10vh; text-align: center; font-size: 50px; } .option-container{ display: flex; justify-content: space-around; margin: 10px; padding: 5px; width: 80vw; height: 20vh; background-color: #9eb1b3; } .option{ padding: 10px; width: 15vw; height: 10vh; font-size: larger; background-color: lightskyblue; border-radius: 25%; } .option:hover{ background-color: lightgoldenrodyellow; } .navigation{ width: 80vw; height: 10vh; margin: 10px; padding: 5px; display: flex; justify-content: space-around; background-color:#c7dddf; } .evaluate,.next{ width:30vw; height: 8vh; padding: 5px; font-size: larger; } .evaluate{ background-color: #50DBB4; } .next{ color: white; background-color: #BF3325; } // Questions will be asked const Questions = [{ id: 0, q: "What is capital of India?", a: [{ text: "gandhinagar", isCorrect: false }, { text: "Surat", isCorrect: false }, { text: "Delhi", isCorrect: true }, { text: "mumbai", isCorrect: false } ] }, { id: 1, q: "What is the capital of Thailand?", a: [{ text: "Lampang", isCorrect: false, isSelected: false }, { text: "phuket", isCorrect: false }, { text: "Ayutthaya", isCorrect: false }, { text: "Bangkok", isCorrect: true } ] }, { id: 2, q: "What is the capital of Gujarat", a: [{ text: "surat", isCorrect: false }, { text: "vadodara", isCorrect: false }, { text: "gandhinagar", isCorrect: true }, { text: "rajkot", isCorrect: false } ] } ] // Set start var start = true; // Iterate function iterate(id) { // Getting the result display section var result = document.getElementsByClassName("result"); result[0].innerText = ""; // Getting the question const question = document.getElementById("question"); // Setting the question text question.innerText = Questions[id].q; // Getting the options const op1 = document.getElementById('op1'); const op2 = document.getElementById('op2'); const op3 = document.getElementById('op3'); const op4 = document.getElementById('op4'); // Providing option text op1.innerText = Questions[id].a[0].text; op2.innerText = Questions[id].a[1].text; op3.innerText = Questions[id].a[2].text; op4.innerText = Questions[id].a[3].text; // Providing the true or false value to the options op1.value = Questions[id].a[0].isCorrect; op2.value = Questions[id].a[1].isCorrect; op3.value = Questions[id].a[2].isCorrect; op4.value = Questions[id].a[3].isCorrect; var selected = ""; // Show selection for op1 op1.addEventListener("click", () => { op1.style.backgroundColor = "lightgoldenrodyellow"; op2.style.backgroundColor = "lightskyblue"; op3.style.backgroundColor = "lightskyblue"; op4.style.backgroundColor = "lightskyblue"; selected = op1.value; }) // Show selection for op2 op2.addEventListener("click", () => { op1.style.backgroundColor = "lightskyblue"; op2.style.backgroundColor = "lightgoldenrodyellow"; op3.style.backgroundColor = "lightskyblue"; op4.style.backgroundColor = "lightskyblue"; selected = op2.value; }) // Show selection for op3 op3.addEventListener("click", () => { op1.style.backgroundColor = "lightskyblue"; op2.style.backgroundColor = "lightskyblue"; op3.style.backgroundColor = "lightgoldenrodyellow"; op4.style.backgroundColor = "lightskyblue"; selected = op3.value; }) // Show selection for op4 op4.addEventListener("click", () => { op1.style.backgroundColor = "lightskyblue"; op2.style.backgroundColor = "lightskyblue"; op3.style.backgroundColor = "lightskyblue"; op4.style.backgroundColor = "lightgoldenrodyellow"; selected = op4.value; }) // Grabbing the evaluate button const evaluate = document.getElementsByClassName("evaluate"); // Evaluate method evaluate[0].addEventListener("click", () => { if (selected == "true") { result[0].innerHTML = "True"; result[0].style.color = "green"; } else { result[0].innerHTML = "False"; result[0].style.color = "red"; } }) } if (start) { iterate("0"); } // Next button and method const next = document.getElementsByClassName('next')[0]; var id = 0; next.addEventListener("click", () => { start = false; if (id < 2) { id++; iterate(id); console.log(id); } })

Check exam

What fraction of a day is 6 hours?

Choose 1 answer