Skip to main content

questions

1.            What is server?
The main computer which provides services to the other computers in a network environment is called server.
                                 
2.            What is workstation?
A workstation is a computer where a user can work and takes services, access shared data and software to the client computer.

3.            What is repeater?
A repeater is a device of a network that regenerates a signal.

4.            What is network operating system?
A group of programs which are used to manage the resources on the network is called network operating system.

5.            What is protocol?
Protocols are used to send and receive data in the computer network.

6.            What is computer network?
A group of computer that are connected together to share information, data, software and hardware is called computer network.

7.            List any four advantages of computer network.
The four advantages of computer network are:
*  Computer network make communication between different user easier and faster.
*  Computer network allows user to share data and software at the same time.
*  Different network user can share peripheral devices such as printer, scanner, CD-Drive, etc.
*  It is easy for user to backup important data and information.

8.            What is LAN?
LAN is a network system which covers very small area.

9.            What is MAN?
MAN is a network within a town or city to share data ,information and other resources  .

10.    What is WAN?
WAN is a network system, which connects to or more networks or two different computers connected together in a large geographical area.

11.    Different between client/server and peer to peer network .
S.N.
 Client/server
Peer to peer network
1
Client /server is one of the popular models which consists of at least one server and one or more clients/work stations.
Peer to peer network is a group of computers which function equally as server and workstation.
2
It is suitable for a large organization.
It is suitable for small offices or school.


12.    What is communication?
Communication means sending data from one device to another.

13.    What is telecommunication? Give examples.
Telecommunication is sending data over a long distance. Example: television, radio, newspaper, etc.

14.    What is information?
The processed data provided by the computer system is called information.

15.    What is ICT?
The combination of information technology and telecommunication technology is called ICT.

16.    List the four uses of ICT?
The four uses of ICT are:-
*  We can listen and read latest news using ICT.
*  We can get information from a remote server using ICT.
*  We can telephone our friends and relatives using ICT.
*  We can attend a virtual class using the internet through ICT.
                                                                                        

17.    How many of headings are there in HTML?
There are six levels of heading in HTML.

18.    What is internet?
Internet is a network of networks.

19.    What is HTML?

HTML is a markup language which is used to develop web pages.

Comments

Popular posts from this blog

QBASIC Solutions

Q.1) WAP to change degree Celsius into degree Fahrenheit.   => CLS        INPUT "Enter degree celsius value" ; D        F = ( 9 * C / 5 ) + 32        PRINT "Degree Fahrenheit value = "; F        END Q.2) WAP to change dollar into Nepali currency.   => CLS       INPUT "Enter Dollar value"; USD        NRS = USD * 100       PRINT "Nepali currency value = "; NRS       END Q.3) WAP to change Indian currency into Nepali currency. => CLS                   INPUT "Enter Indian currency value"; IC       NRS = IC * 1.6        PRINT "Nepali currency value = "; NRS   ...

17 QBASIC Programming

1. Create a sequential file "std.dat" to store name and marks obtained in English, Math and Science subjects for a few students. (74 set 1) OPEN   “std.dat”   FOR OUTPUT   AS   #1 DO CLS INPUT “Enter name “; N$ INPUT   “Enter English marks”; E INPUT “Enter Math's marks"; M INPUT "Enter Science marks"; S WRITE #1, N$, E, M, S INPUT "Do you want to continue (Y/N)";CH$ LOOP WHILE UCASE$ (CH$) "Y" CLOSE #1 END 4.   WAP to add some more   records in a data file “ABC.DAT” having following fields : patient’s name, address and age.  OPEN   “ABC.DAT”   FOR OUTPUT   AS   #1 DO CLS INPUT “Enter Patients name “; N$ INPUT   “Enter patients address”; A$ INPUT “Enter Patient's age "; A WRITE #1, N$, A$, A INPUT "Do you want to continue (Y/N)";CH$ LOOP WHILE CH$="Y" OR CH$="y" CLOSE #1 END       6.WAP to store records regarding the information of book’s number, name and author’s ...

SLC Examination 2070

SLC Examination 2070 (2014) RE 1. Answer the following questions. a) What is network topology ? Write any one advantage of star topology. => The arrangement or connection pattern of computers or nodes and other devices of the network is called network topology. Advantage of star topology is it is easy to detect errors . b) Give any two advantages of e-mail over traditional mail. => Advantages It is very fast compare to traditional mail. It allows to send and receive message across the world. c) List any two main aims of formulating cyber law in Nepal. => Two main aims of formulating cyber law in Nepal are: Provides punishment who conducts cyber crime Provides legal status for various banking transaction through electronic media, which will be instrumental in boosting economic activities throughout the world via internet. d) Give any two symptoms of virus attack. => Two symptoms of virus attack  Program takes long...