Answer:
The answer is option a
Explanation:
Nonverbal interaction refers to gestures, body movements, manner of speech, interaction of the eye, gestures of the body, expression, and other ways people can interact without using words. and other options are not correct that can be defined as:
- In option b Continuous feedback is characterized as a system from which an employee accepts continuous feedback.
- In option c ambiguous interpretation is part of the mathematics it is not used in nonverbal communication.
- In option d It is less finite and static than speech is nonverbal interaction.
Answer: the answer would be the "Rom chip"
Explanation:
The rom chip controls all aspects of the computer, this is also known as "BIOS" or "basic input/output system"
The more the
Instructions
Also referred to as clock rate, clock
speed is that speed the microprocessor executes each instruction. The CPU
requires a number of cycles to execute an instruction. Thus, the faster the
clock speed, the faster the CPU and the faster it can execute instructions in a
second.
Answer:
I'm positive memo is "allows inserting a large amount of text including numbers" i just took the test on Plato and got everything wrong but that one
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;
}