Networking [Match the Following] 1. a) Wi-Fi =============== Network within a building b) Linear Bus =========== Topology c) BNC =============== Media connector d) Device Driver ========= Software component 2. a) Protocol ============= Rules to exchange data. ...
Posts
Showing posts from June, 2016
- Get link
- X
- Other Apps
QBASIC Programming 1. Using function procedure WAP to check whether the given number is Armstrong or not. Ans: DECLARE FUNCTION CHECK$(N) CLS PRINT ''DOLKAR'' PRINT INPUT''ENTER ANY NUMBER'';N PRINT ''THE GIVEN NUMBER IS '';CHECK$(N) END FUNCTION CHECK$(N) A=N WHILE N< >0 R=N MOD 10 S=S+R^3 N=N\10 ...