Question: Given the following code, what is printed to the console? animal - cat cost - 1 0 if if ( animal = = dog )

Given the following code, what is printed to the console?
animal - "cat"
cost -10
if
if (animal == "dog"){
print("You own a dog")
} else if (animal == "horse"){
print("You own a horse")
} else {
print("You own a different animal")
}
} else {
print("You don't own an animal")
}
You own a dog
You own a different animal
You own a horse
You don't own an animal
 Given the following code, what is printed to the console? animal

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!