Answer:
Algorithm:
1. Declare an integer variable N.
2. Read the value N from user.
3.While(N):
3.1 find r=N%10;
3.2 print r in new line.
3.3 Update N as N=N/10.
4.end program.
Implementation in C++.
// header
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variable
int N;
cout<<"Enter an Integer:";
cin>>N;
// find the digits of number
while(N)
{
// last digit
int r=N%10;
// print last digit
cout<<r<<endl;
// update the number
N=N/10;
}
return 0;
}
Output:
Enter an Integer:329
9
2
3
Answer:
3
Explanation:
MOD means the remainder after a division calculation.

The remainder is 3
Answer:
A hot spot
Explanation:
Q:
The range of an area where users can access the Internet via high frequency radio signals transmitting an Internet signal from a wireless router is known as a _____. A) HotspotB) PAN…
A:
A) hotspot Bluetooth is for short distance and pan is Personal area networks (PANs) connect an individual's personal devices
A word processor is a computer program or device that provides for input, editing, formatting and output of text, often with additional features.