Answer:
Explanation:
The basic concept of virtual reality is that they are a pair of lenses in a headset that allows you to visualize a virtual 3D world and become immersed within it. To do the exercises correctly Anna would need to follow the following basic steps.
Put the virtual glasses over her eyes, complete the exercises in the virtual world, take the virtual glasses off
The headset/glasses need to fit comfortably on her eyes and around her head so that she can clearly see the image on the lenses and so that the headset/glasses do not fall off while she is completing her exercises. Once she is done with her exercises Anna can simply take off her virtual glasses and put them away.
Answer:
D. Neither Technician A nor B.
Explanation:
D. Neither Technician A nor B.
The electrolyte is a chemical medium that allows the flow of electrical charge between the cathode and anode. When a device is connected to a battery — a light bulb or an electric circuit — chemical reactions occur on the electrodes that create a flow of electrical energy to the device.
Answer:
The pseudocode is as follows
1. Input Steps
2. Input Day
3. Miles = Steps/2000
4. Calories = 65 * Miles
5. Print Calories
6. Stop
Explanation:
This line gets the number of steps for the day
1. Input Steps
This line gets the current day
2. Input Day
The line calculates number of miles
3. Miles = Steps/2000
This line calculates the calories lost
4. Calories = 65 * Miles
This line prints the calories lost
5. Print Calories
The pseudocode ends here
6. Stop
Answer:
// program that implement the algorithm to find the change.
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variables
int cost,q,d,n,p;
cout<<"Enter the cost of item between 25 cents and a dollar, in 5 increments (25, 30, 35, … , 90, 95, or 100):";
// read the cost
cin>>cost;
// find the change
int change=100-cost;
// find quarter
q=change/25;
change=change%25;
// find the dimes
d=change/10;
change=change%10;
// find the nickels
n=change/5;
// find the pennies
p=change%5;
// print the change
cout<<"Your change is: "<<q<<" quarter,"<<d<<" dimes,"<<n<<" nickels and "<<p <<" pennies."<<endl;
return 0;
}
Explanation:
Read the cost of item from user and assign it to variable "cost".Then find the change to be returned to user.Then find the quarter by dividing the change with 25.Update the change and then find the dimes by dividing change with 10.Then update the change and find nickels and then find the pennies.Print the change to be returned.
Output:
Enter the cost of item between 25 cents and a dollar, in 5 increments (25, 30, 35, … , 90, 95, or 100):45
Your change is: 2 quarter,0 dimes,1 nickels and 0 pennies.