Signup/Sign In

Answers

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

Here is a possible solution:

***
package main
import "fmt"

func main() {
var length float64 = 3.5
var width int = 4
var area int
area = int(length)*width
fmt.Println("Area is:", area)
}
***
one year ago
here is a possible solution to this exercise:
***



My Webpage Title


Do you know?


The human brain takes in 11 million bits of information every second but is aware of only 40.




***
one year ago
Here is a detailed article on const keyword used in C++
https://www.studytonight.com/cpp/const-keyword.php
one year ago
Hi, please specify the level you need help with.
one year ago
Hi there, You can check out our react-js series here
https://www.studytonight.com/react-js/

or use the search bar from top navigation bar, to find appropriate article.
one year ago
Here is a possible solution to this:
***
console.log(typeof doYoga);
***
one year ago
Hi, Please visit this page to learn more about Interactive Course Application - https://www.studytonight.com/code/
one year ago
Hi, here is a possible solution to step4:

***



Table with Borders












***
one year ago
As the instructions suggest, you need to use x as interpreter:
***
let course = {
name: "JS Course",
duration : "15 hours",
price: 499,
discount: "100%"
};

for(x in course)
{
console.log(`${x} is ${course[x]}`);
}
***
one year ago
That is actually a great question, Rahul.
Here is the link of detailed article on difference between HTML and HTML5 - https://www.studytonight.com/difference-between/html-vs-html5
one year ago
Here is a possible solution:

***
let x = 0;

while(x < 10)
{
console.log(x);
if(x == 5) {
break;
}
x++;
}
***
one year ago