Answer: A central wireless access point (AP)
Explanation:
A central wireless access point (WAP) is a hardware device which can be configured on a local area network connecting WLAN to the wired network.
These APs have built in routers which enables wireless devices to connect with it. Mostly they are hardwired to devices such as in network switches or modems.
These access points are found in many institutions, organisations, enterprises which enables devices to be connected to them and provides access to the internet and resources.
There are also public access points which enables people travelling by public transport to connect through them and in many business organisation there are closed APs for use only by the employees of them which enables file sharing and information processing.
 
        
             
        
        
        
Answer:
I try to search the answer but I couldn't find it
 
        
             
        
        
        
Answer:
#include <iostream>
using namespace std;
int main() {
   int k;
double d;
string s;
cin >> k >> d >> s;
cout << s << " " << d << " " << k << "\n" << k << " " << d << " " << s; }
                                                                    
Explanation:
k is int type variable that stores integer values.
d is double type variable that stores real number.
s is string type variable that stores word.
cin statement is used to take input from user. cin takes an integer, a real number and a word from user. The user first enters an integer value, then a real number and then a small word as input. 
cout statement is used to display the output on the screen. cout displays the value of k, d and s which entered by user. 
First the values of k, d and s are displayed in reverse order. This means the word is displayed first, then the real number and then the integer separated again by EXACTLY one space from each other. " " used to represent a single space.
Then next line \n is used to produce a new line. 
So in the next line values of k, d and s are displayed in original order (the integer , the real, and the word), separated again by EXACTLY one space from each other.
The program along with the output is attached. 
 
        
             
        
        
        
Answer: False 
Explanation:
  The given statement is false, as it is not compulsory that the default case is require in switch selection statement. If the default case are not properly specified in the statement then, there will be no execution occur in the switch selection statement. 
It is sometimes good to have default case in switch selection statement, but it is not mandatory. The default case only executed when the correct case is present and none of the case matches in the given statement.