Answer:
// here is code in c++.
// include header
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variables to read input
int userNum,x;
cout<<"enter the value of userNum and x :";
// read the input from user
cin>>userNum>>x;
// divide the userNum with x 4 times
for(int a=0;a<4;a++)
{
userNum=userNum/x;
cout<<userNum<<" ";
}
cout<<endl;
return 0;
}
Explanation:
Declare two variables "userNum" and "x". Read the value of these. Run a for loop 4 time and divide the "userNum" with "x" and print the value of "userNum".
<u>Output:</u>
enter the value of userNum and x :2000 2
1000 500 250 125
Answer:
hardware-initiated reset
Explanation:
Once in protected mode, the 80286 is designed to remain there until it is reset by hardware.
__
External hardware can be designed so that software can cause such a reset. In the 1984 PC/AT, such hardware combined with code in the BIOS allowed real mode re-entry and returned execution control to the program that caused the reset.
Answer:
We need to have binary numbers because that is how computers process data.
Explanation:
Answer:
Ping the interface using the cmd or terminal
Explanation:
Explanation:
The requirements would be that the receptionist robot detects the incoming person and speak;
<em>Good morning (based on time), Welcome to XYZ organization. How can i help you. Do you need to visit HR, finance, marketing, sales, engineering etc representative or other function?</em>
Now based on that a visitee information is printed out.
Limitation
A person comes who does not understand what robot speaks
Interaction with existing dialogue would be made possible through speech recognition system
The system will work well as speech recognition has now been used in many functions and robots have also now become quite advanced