Posts

Showing posts from June, 2016
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.                                                                               b) LAN  ===============     Network within a building. c) MAN ===============     Network within a city. d) Coaxial  =============    BNC e) Cat 5  ===============    RJ-45 f) Hub    ===============    Central device for star topology. 3. a) Radio Wave  ==========    Wireless media b) Cyber ethics  ==========    Professionally guided principles                       c) Spike guard ===========    Power protection device   d) Gateway =============    Device to connect network having different  technology                                                    
Image
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          WEND          IF A=S THEN          CHECK$=''ARMSTRONG''          ELSE          CHECK$=''NOT ARMSTRONG''          END IF          END FUNCTION             2. Using sub procedure WAP to check whether the given number is palindrome or not. Ans: DECLARE SUB CHECK(N)         CLS         PRINT ''DOLKAR''         PRINT         INPUT ''ENTER ANY NUMBER'';N         CALL CHEC