Signup/Sign In

Answers

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

Please WhatsApp on +919354261828 for better support.
8 months ago
Please share the level number and lesson number.
8 months ago
Please share the level number and lesson number.
8 months ago
This should have ben easy:
***
let cars=["Lexus", "Jeep", "Audi", "BMW"];

cars[0] = cars[2];

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

var myVar;
console.log(myVar);

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



CSS Syntax



Welcome to Studytonight




***
8 months 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)
}
***
8 months ago
Is it in the interactive course? Please share the level number and lesson number
9 months ago
Please share the level number and lesson number.
9 months ago
Can you please share the level number?
9 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.
9 months ago