For the given struct, which of the following are incorrect initialization of struct instances (Select only two options)?

type Car struct{
    model string
    brand string
    yearOfProd int
    isInsured bool
    status string
} 

carOne := Car{"Nissan", "Silvia S15", 1996, true, "Salvage Title"}

carTwo := Car{model:"Silvia S15", brand:"Nissan", isInsured:"true", yearOfProd:1996}

carThree := Car{model:"Silvia S15", brand:"Nissan", yearOfProd:1996}

carFour := Car{"Nissan", "Silvia S15", 1996, "Salvage Title", true}

Verified Answer
Correct Option - bd

To get all Go Programming Language - Assessment Exam questions Join Telegram Group https://rebrand.ly/lex-telegram-236dee

Telegram