Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Challenge: Creating a Structure | Intro to Structs & Maps
course content

Course Content

Introduction to GoLang

Challenge: Creating a StructureChallenge: Creating a Structure

Task

Create a structure named Car with fields company, owner, miles, and year in the same order. Assign appropriate data types to them based on the provided code.

go

index.go

Create a structure called Car with fields company, owner, miles and year in the same order, and assign appropriate data types to them based on the given code.

package main
import "fmt"

// Write code below this line
type Car struct {
    company string
    owner string
    miles float32
    year int
}
// Write code above this line

func main() {
    var car1 Car

    car1.company = "Tesla"
    car1.owner = "Tegmark"
    car1.miles = 10.7
    car1.year = 2021

    fmt.Println(car1)
}
      

What is the data type assigned to the miles field in the Car structure?

Select the correct answer

Everything was clear?

Section 6. Chapter 8
course content

Course Content

Introduction to GoLang

Challenge: Creating a StructureChallenge: Creating a Structure

Task

Create a structure named Car with fields company, owner, miles, and year in the same order. Assign appropriate data types to them based on the provided code.

go

index.go

Create a structure called Car with fields company, owner, miles and year in the same order, and assign appropriate data types to them based on the given code.

package main
import "fmt"

// Write code below this line
type Car struct {
    company string
    owner string
    miles float32
    year int
}
// Write code above this line

func main() {
    var car1 Car

    car1.company = "Tesla"
    car1.owner = "Tegmark"
    car1.miles = 10.7
    car1.year = 2021

    fmt.Println(car1)
}
      

What is the data type assigned to the miles field in the Car structure?

Select the correct answer

Everything was clear?

Section 6. Chapter 8
some-alt