A robot is a machine. It is often, or almost always, automatic, which means that it is able to perform activities on its own without the aid of external variables, like humans. It moves in the way that it was originally programmed, or designed to act. These actions are described as 'intents' of its own.
Answer:
The volume up to cylindrical portion is approx 32355 liters.
Explanation:
The tank is shown in the attached figure below
The volume of the whole tank is is sum of the following volumes
1) Hemisphere top
Volume of hemispherical top of radius 'r' is

2) Cylindrical Middle section
Volume of cylindrical middle portion of radius 'r' and height 'h'

3) Conical bottom
Volume of conical bottom of radius'r' and angle
is

Applying the given values we obtain the volume of the container up to cylinder is
Hence the capacity in liters is 
Answer:
Answer to both the parts A and B are provided in the word document attached.
Explanation:
The explanation of the programs is provided in the attached file along with the screenshot of ATM application output.
Chicken nugget baby sauce
Answer:
#include<iostream>
Using namespace std;
int main()
{
int n, qty;
double price, amount;
cout<<"Number of items ";
cin>>n;
cout<<"ITEM<<"\t"<<"QUANTITY"<<"\t"<<"PRICE"<<"\t"<<"ITEM TOTAL";
for(int i= 1; I<= n; i++)
{
cin>>qty;
cin>>price;
amount = qty * price;
cout<<i<<"\t "<<qty<<"\t"<<price<<"\t"<<amount;
}
}
Explanation
The above program is written in C++ programming language
5 variables are declared and used in the program
n is declared as an integer to represent the total number of items
qty is declared as integer to represent the total quantity of each item
price is declared as double to represent the amount of each individual item
amount is declared as double to represent the total amount of an item; it is gotten by qty * price
i is declared as integer to iterated between each items
The amount of each item is calculated within the iteration and also printed immediately