What are the choices to choose from
Answer:D.Social interaction.
Explanation: Social interaction is the term used to explain the social exchanges taking place between two or more people. Through social interaction people design rules,regulations, institutions and systems within which they live their lives.
In late adulthood,social interaction is very vital to help the person to develop a good self esteem, the LPN/LVN(licensed vocational nurse/license practical nurse) plan should include social interaction to help the client.
Answer: C
<span>Explanation: C) Mobile users read messages one screen at a time; therefore, divide your message into small "chunks" of information.</span>
Explanation:
in c++
#include<iostream.h>
#using namespace std;
main()
{ float x,y,z,r, phi, theta;
cout<<" enter the value of x";
cin>>x;
cout<<" enter the value of y";
cin>>y;
cout<<" enter the value of z";
cin>>z;
r = (sqrt(pow(x,2) + pow(y, 2) + pow(z, 2)));
phi = (asinf(y/r)*180.0f)/PI;
theta = (asinf(-x/(r*cosf(phi)))*180.0f)/PI;
cout<<"The radius r= "<<r;
cout<<"The phi angle= "<<phi;
cout<<"The theta angle= "<<theta;
return 0;
}