Signup/Sign In

Answers

All questions must be answered. Here are the Answers given by this user in the Forum.

Assuming you are talking about the Level 8 Lesson 1, here is the code:
***
function teaBreak(){
console.log("Start making tea");
console.log("Tea ready");
console.log("Enjoy the tea");
}

let teaHour;

for(teaHour=1; teaHour<=12; teaHour++)
{
if(teaHour%4 == 0)
{
teaBreak();
}
}
***
7 months ago
This is the correct code:
***


Javascript with HTML



Some Page Heading





***
7 months ago
Please share the level number and lesson number.
7 months ago
Hey, try this:
***



My Webpage Title


Do you know?

Tim Berners-Lee coined the phrase 'World Wide Web' in 1990.




***
7 months ago
Please mention the level number too.
7 months ago
The correct code is:
***
package main

import "fmt"

func main() {
fmt.Println("Ahoy!", "Studytonight")
}
***
7 months ago
Here is the correct answer:
***



My Webpage Title


Taj Mahal is the first Wonder of World


It is located in Agra




***
7 months ago
Please share the level number and lesson number.
7 months ago
Sorry! We will work on adding more test cases.
7 months ago
Correct answer:
***
let marks = 35;
// add logic here
if(marks >= 33) {
console.log("Examination Passed")
}
***
7 months ago
Are you using the app on Mobile phone? If yes, then click on the Lesson Tab and you will see the Run and Submit options to operate the app.
7 months ago
Can you please check it again, because it is working fine at our end.
7 months ago