✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Which is the output of the following code in GO
package mainimport ( "fmt")func main() { a:=[4]int{10,12,14,16} b:=a b[1]=100 fmt.Println(a)}