Answer:
23 ,21,10,63,13
Explanation:
We have to convert binary to decimal
10111 corresponding decimal number is
10101 corresponding decimal number is
01010 corresponding decimal number is
111111 corresponding decimal number is
001111 corresponding decimal number is
My sister would what’s your id
Answer: food poisning
Explanation:
either the food wasnt
cooked properly or the food was out of date and went bad
Answer:
See explaination
Explanation:
#include <iostream>
using namespace std;
class Circle{
// private member variable named radius
private:
double radius;
// get function for radius
public:
double getRadius(){
return radius;
}
// set function for radius
void setRadius(double rad){
radius=rad;
}
// returning area = 3.14159 * radius * radius
double getArea(){
return (3.14159 * radius * radius);
}
};
// Sample run
int main()
{
// Declaring object of Circle
Circle myCircle;
myCircle.setRadius(5);
// printing radius of circle
cout<<"Radius of circle is: "<<(myCircle.getRadius())<<endl;
// printing area of circle
cout<<"Area of circle is: "<<(myCircle.getArea())<<endl;
return 0;
}