Explanation:
I dont have Instagram....
The three real-life objects that are instances of each of the following classes are given below:
a.<u> Song:</u>
The song Believe in yourself is an instance of song class
The song Where do broken hearts go is an instance of song class.
The song Ambition is an instance of song class
b. <u>CollegeCourse</u>
The College course Engineering is an instance of College course class
The College course Accounting is an instance of College course class
The College course Medicine is an instance of College course class
c. <u>Musician:</u>
The musician Rihanna is an instance of musician class.
The musician Sean Paul is an instance of musician class.
The musician Wyclef is an instance of musician class.
Real-life objects refer to the things that are characterized together as they share common qualities. The assignment simply wants you to name examples under the categories given.
Read related link on:
brainly.com/question/16699733
I’m sorry I do not speak that
Answer:
#include<iostream>
using namespace std;
int main (){
int n1, n2;
cout<<"Enter 1st number";
cin>>n1;
cout<<"Enter 2nd number";
cin>>n2;
if(n1<n2){
cout<<"The 1st number is the smallest"<<endl<<" is= "<<n1;
}
else{
cout<<"The 2nd number is the smallest"<<endl<<" is= "<<n2;
}
}
return 0;