B is your answer meteoroids are small space rocks they are usually pieces of asteroids or comets
Answer:
Answer below.
Explanation:
You are creating an object of bird "b" with a talon strength of 5 and a beak of 5.
public Hawk(int talon, int beak)
{
super(beak);
talonStrength = talon;
}
Please mark brainliest if this is the answer you were looking for
Please mark brainliest if this is the answer you were looking for
Answer:
Explanation:
a. In this scenario, the best solution would have an Object of Traditional Books, CD, Music, Bookstore and Customer.
b. All five objects would be able to be called by the main program loop and the Customer Object would call upon and use either the Books or CD object, While the Bookstore object would call upon all of the other objects.
c. Both the Bookstore object and Customer object will "have" other objects as the Bookstore needs to hold information on every Book or CD in the Inventory. While the Customer object would call upon the Book and CD object that they are purchasing.
d. The Music Object will extend the CD object and use information on the CD object as its parent class.
e. Since the Music Object extends the CD object it is also considered a CD since it is in CD format like the Books on CD and therefore is both objects.
in c++
...
for(auto& el:hourlyTemp){
std::cout<<el<<", ";
}
...
This is called Range-based loop or for each loop