Signup/Sign In

Answers

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

Here is the correct answer:
***



Adding breakpoint according to device



Resize the browser window to see how the background color of this paragraph change on different screen sizes.




***
11 months ago
Here is the code:
***



My Login Form

Login Form










***
12 months ago
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();
}
}
***
12 months ago
This is the correct code:
***


Javascript with HTML



Some Page Heading





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



My Webpage Title


Do you know?

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




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

import "fmt"

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



My Webpage Title


Taj Mahal is the first Wonder of World


It is located in Agra




***
12 months ago
Please share the level number and lesson number.
12 months ago
Sorry! We will work on adding more test cases.
12 months ago
Correct answer:
***
let marks = 35;
// add logic here
if(marks >= 33) {
console.log("Examination Passed")
}
***
12 months ago