Signup/Sign In

Answers

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

This should have ben easy:
***
let cars=["Lexus", "Jeep", "Audi", "BMW"];

cars[0] = cars[2];

console.log(cars);
***
3 weeks ago
fmt package is generally used for formatted input and output. Hence this is the most used package in Golang.
3 weeks ago
Here is the answer:
***
// write your code here

var myVar;
console.log(myVar);

var myVar=null;
console.log(myVar);
***
3 weeks ago
Here is the answer:
***



CSS Syntax



Welcome to Studytonight




***
3 weeks ago
Sorry for the delay. Here is the answer:
***
package main
import (
"fmt"
"bufio"
"os"
"log"
)

func main() {
fmt.Println("Which programming language are you learning here:")
reader := bufio.NewReader(os.Stdin)
input, err := reader.ReadString('\n')
if err != nil {
log.Fatal(err)
}
fmt.Println(input)
}
***
3 weeks ago
Is it in the interactive course? Please share the level number and lesson number
one month ago
Please share the level number and lesson number.
one month ago
Can you please share the level number?
2 months ago
Try this:
***
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)
}
***
Sorry for the delay.
2 months ago
Here is the correct code:
***
let txt1 = 'Yokozuna';
let txt2 = 'Yokohama';

if(txt1.length == txt2.length) {
console.log("Both are same");
}
***
2 months ago
Your answer is correct, its just that our system is a little strict. This should work:
***
let x = true;
let y = false;

// apply AND operator
console.log(x && !y)

// apply OR operator
console.log(!x || y)
***
2 months ago
Can you share the level number and lesson number so that I can help you.
2 months ago