B. After incorporation but before capital subscription
C. After incorporation but before commencement of business
D. After commencement of business
Right Answer is: A
SOLUTION
During the promotion of the company, promoters enter into certain contracts with third parties on behalf of the company. These contracts are called preliminary contracts. Preliminary contracts are signed before the incorporation of the company.
Q. 193802 ABC Ltd, a recently incorporated company can notify their registered office to the Registrar within____________.
A. 30 days of incorporation
B. 30 days of commencement
C. 90 days of incorporation
D. 90 days of commencement
Right Answer is: A
SOLUTION
The exact address of the registered office is not required at the initial stage while submitting the documents to the registrar but the same must be notified to the Registrar within thirty days of the incorporation of the company.
Q. 193803 Choose from the following, the first stage of formation of a private company.
A. Promotion
B. Capital subscription
C. Commencement of business
D. Incorporation
Right Answer is: A
SOLUTION
Formation of a company is a complex activity involving different stages. Promotion is the first stage of forming any type of company.
Q. 193804 Certificate to commence business is required by a________________.
A. Public limited company
B. Private limited company
C. Private Company
D. Company wholly funded by Government
Right Answer is: A
SOLUTION
A public company can commence business after obtaining certificate to commence business.
Q. 193805 The object clause, specifying the objectives of a company, is stated in___________________.
A. Article of Association
B. Certificate of Incorporation
C. Memorandum of Association
D. Partnership deed
Right Answer is: C
SOLUTION
Memorandum of Association contains various clauses, one of them is object clause which specifies the objects of a company. It is the most important clause.
Q. 193806 What is the document issued by a company to invite public to purchase its debentures known as?
A. Article of Association
B. Certificate of Incorporation
C. Memorandum of Association
D. Prospectus
Right Answer is: D
SOLUTION
Prospectus is issued by a company to invite public to purchase its shares or debentures or to receive deposits from the public.
Q. 193807 A company comes into existence from the date of__________________.
A. promotion
B. subscription of Capital
C. commencement of business
D. incorporation
Right Answer is: D
SOLUTION
Incorporation of a company means the registration of company as a corporate body under the provisions of the Companies Act.
Q. 193808 The work of the promoter starts__________________.
A. after the formation of a company
B. before the formation of a company
C. at the time of issuing of prospectus
D. at the time of formation of Memorandum
Right Answer is: B
SOLUTION
A promoter is the person who does the required work before the formation of the company for its incorporation. A promoter plans and organizes the business and fulfills all the legal formalities.
Q. 193809 Who issues the Certificate of Incorporation?
A. SEBI
B. Stick Exchange
C. Registrar of Companies
D. Promoters
Right Answer is: C
SOLUTION
A Certificate of Incorporation is a certificate issued by the Registrar of Companies, which is a proof that company is registered.
Q. 193810 Which of these can be associated with the Certificate of commencement?
A. a Birth Certificate of a company
B. Is an evidence that copany is entitled to carry out operations
C. A return submitted to Registrar for issue of shares of a company
D. Certificate of approval from SEBI before issue of shares by a company
Right Answer is: B
SOLUTION
Certificate of Commencement of Business is mandatory for public companies with share capital. The company can start its functioning after getting the Certificate of Commencement of Business.
Q. 193811 What is the limit of minimum subscription according to SEBI?
A. 95%
B. 90%
C. 60%
D. 80%
Right Answer is: B
SOLUTION
According to SEBI guidelines minimum subscription has been fixed at 90% of the entire issue.
Q. 193812 ________________is the statement consisting of all the details related to the allotment of shares.
A. Issue of shares
B. Return on allotment
C. Allotment of shares
D. Prospectus
Right Answer is: B
SOLUTION
Return on Allotment is a statement consisting of all the details related to the allotment of shares It is signed by directors.
Q. 193813 Complete the following sentence:
The contract signed before incorporation is________________.
A. Preliminary contract
B. Provisional contract
C. Social Contract
D. Personal contract
Right Answer is: A
SOLUTION
These are the contracts entered into by the promoters on the behalf of the company before its incorporation with the third company. These are signed before incorporation by the promoters.
Q. 193814 How many values are associated with a variable?
Right Answer is:
SOLUTION
There are two values associated with a variable: lvalue and rvalue.
Q. 193815 Define the term ‘function’.
Right Answer is:
SOLUTION
A function is a named part of a program that can be invoked from other parts of the program.
Q. 193816 Name some User Defined Data Types.
Right Answer is:
SOLUTION
Some user defined data types are: Class, Structure, Union and Enumeration.
Q. 193817 Name the keyword whose value remains same throughout the program.
Right Answer is:
SOLUTION
The keyword ‘const’ can be initialised at the time of declaration. Its value remains same throughout the program and it can never be changed during program run.
Q. 193818 Which keyword is used for declaring and creating a union?
Right Answer is:
SOLUTION
Union
Q. 193819 What do you mean by the term ‘class’?
Right Answer is:
SOLUTION
A class represents a group of similar objects.
Q. 193820 Into how many types can the data types be classified?
Right Answer is:
SOLUTION
In C++, data types can be classified into two types:
Fundamental types and Derived types.
Q. 193821 Name the variable that holds the memory address.
Right Answer is:
SOLUTION
Pointer
Q. 193822 Define the term ‘data type’?
Right Answer is:
SOLUTION
In a programming language, data type can be defined as a set of data with values having predefined characteristics.
Q. 193823 What is the difference between 24L and 24?
Right Answer is:
SOLUTION
L or l suffix indicates it is long integer constant. Thus, 24L is a long integer constant and 24 is an integer constant.
Q. 193824 What is Union in C++ ?
Right Answer is:
SOLUTION
A union is a memory location that is shared by two or more different variables generally of different types at different times. The keyword Unionis used for declaring and creating union.
Q. 193825 What is a floating type number ?
Right Answer is:
SOLUTION
A number having a fractional part ie a decimal part is a floating point number.
Q. 193826 Define fundamental data type. Name five fundamental data types.
Right Answer is:
SOLUTION
Fundamental data types are those that are not composed of other data types. Five fundamental data types are: int data type (for integers), char data type (for characters), float data type (for floating-point numbers), double data type (for double-precision floating point numbers), void data type (for empty set of values and non returning functions)
Q. 193827 What are ‘enumerations’?
Right Answer is:
SOLUTION
An enumeration is a user-defined type consisting of a set of named constants.
Definition of enumerated type:
enum [tag] [: type] {enum-list} [declarator];
Declaration of variable of type tag:
enum tag declarator;
Q. 193828 Differentiate between a class and a structure?
Right Answer is:
SOLUTION
In a structure, all the data types are public, but in a class they are private. A structure stores only members of different data types, whereas a class stores both variables and members.
Q. 193829 Differentiate between a structure and a union.
Right Answer is:
SOLUTION
In a structure, all the members can be accessed at once, whereas in union, only one member can be used at a time. In a structure, each member has its own memory space, whereas in union, one block is used by all the members of the union.
Q. 193830 What are derived data types? Name the derived data types in C++.
Right Answer is:
SOLUTION
Data types that are composed of fundamental data types are called derived data types. Following are the various derived data types: Arrays, Functions, Pointers, Structures and Unions.
Q. 193831 In how many ways a variable can be declared?
Right Answer is:
SOLUTION
In C++, a variable can be declared in the following three ways:
(1) Declare a variable
int val;
(2) Declare and Initialize a variable
int val = 10;
(3) Declare and Dynamic Initialization of variable
int val = (b*c) – p;
Q. 193832 Differentiate between structure and an array?
Right Answer is:
SOLUTION
An array can hold multiple elements of same data type, whereas a structure can hold multiple elements of different data types. The component element of an array is referenced by the array name and the index value, whereas the component element of a structure is referenced by the structure name and the element name.
Q. 193833 Explain the term ‘Reference’.
Right Answer is:
SOLUTION
It is another name for an object. A reference variable provides an alias for a previously defined variable.
Q. 193834 What is Memorandum of Association of a company? Explain its clauses.
Right Answer is:
SOLUTION
Memorandum of Association is the fundamental document which defines the objects for which a company is incorporated. It is the charter of the company.
Its clauses are :
Name Clause-Under this clause the corporate name of the company is stated with the name “Limited” or “Private Limited” as the last word in its name. The name should not be similar to the name of any registered company. No company can be registered by the name which is not desired by the Central Government.
Domicile Clause: Under this clause the company is required to mention the state in which registered office of the company is situated. The exact address of the registered office is not required at the primary stage but it must be notified to the registrar within thiry days of the incorporation of the company.
Objects Clause: It defines the scope of operations of the company’s activities by enumerating a long series of objects and purposes for which a company is started. The object clause must contain the main objects of the company and the other objects related with it for the completion of main objects. The company is not entitled to carry any of the business which is not mentioned in the object clause.
Liability Clause: This clause states that the liability of members is limited to the amount unpaid on their shares. If a shareholder has purchased 100 shares of 10 each and has already paid 8 per share on his shares. Now his liability is limited upto the unpaid amount that is 2 per share.
Capital Clause: It shows the amount of share capital with which the company is going to be registered and its division into number of shares. This capital is called registered capital and a company cannot issue shares more than the registered capital in its lifetime unless making change into capital caluse.
Association Clause: This clause signifies the desire of the signatories to form themselves into a body corporate. All the signatories give their consent to purchase qualification shares also.
Q. 193835 What do you mean by promotion? What are the functions of promoters?
Right Answer is:
SOLUTION
Promotion refers to the process of establishing new business enterprises. It is grabbing a business opportunity & converting it into a new company. Promotion includes the preliminary work incidental to formation of a company.
A promoter performs all the necessary functions for the incorporation of a company. Promoter has a unique legal position in a company.
The functions of promoters are:
Identification of Business Opportunity- It is the first and vary important function of a promoterm to identify an opportunity. The opportunity should be in respect of producing some new product or service or making some innovation having an investment opportunity.
Detailed Investigation- Having identified a business opportunity the promoters undertake detailed examination to satisfy them regarding profitability of the proposition. Because it may not be feasible or profitable to convert all indentified business opportunitites into real projects.
Naming a Company- The promoters have to select a name of the company in such a manner that it is not identical to the name of other company. After selecting the name an application to the registrar of companies of the state in which the registered office of the company is to be situated, for its approval. The name may be approved if it is not considered undesirable.
Fixing up Signatories- Promoters have to decide that who will be signing the Memorandum of Association of the proposed company. The people who sign memorandum are called the first directors of the company. There written consent to act as directors and to take up the qualification shares in the company is necessary.
Entering into preliminary contracts - The promoters enter into contracts with different parties before incorporation of company. Certain professionals such as mercantile bankers, auditors etc., are appointed by the promoters to assist them in the preparation of necessary documents which are required to submit to the registrar of companies.
Preparing Preliminary Documents- The promoters take steps to prepare the necessary documents required for obtaining the certificate of incorporation and certificate of commencement of business. After preparing these documents are to be submitted to the office of the registrar of the companies. These documents include Memorandum of Association, Articles of Association and Prospectus.
Q. 193836 Distinguish between Memorandum of Association & Article of Association.
Right Answer is:
SOLUTION
BASIS OF DISTINCTION
MEMORANDUM OF ASSOCIATION
ARTICLE OF ASSOCIATION
MEANING
It is a charter of a company. It sets the constitution. It defines limits, powers and objects of the company.
It contains rules and regulation for the internal management of the company.
OBJECTIVES
It governs relationship with the external world i.e. creditors, sellers, buyers & debtors.
It governs internal relationship between the company and its members.
STATUS
It is the primary document. It is the foundation of the company.
It is the supplementary document & it is based on the memorandum of association.
COMPULSION
It is a compulsory document for all the companies.
It is compulsory for private companies, unlimited companies and companies limited by guarantee.
ALTERATION
Alteration of Memorandum is a lengthy process. Alteration can only be done by the permission of court.
Can be altered by passing a special resolution by the members.
Ultra Vires Actions
It lays down the boundaries beyond which a company cannot work. All such acts are illegal & they are called ultra vires acts.
The articles are controlled by the memorandum. Within it the shareholders and the directors may make such regulations as they feel fit for internal management.
Q. 193837 Interactive combination of text, graphics, images, audio etc. is known as
A. data.
B. information.
C. multimedia.
D. internet.
Right Answer is: C
SOLUTION
Multimedia is media and content that uses a combination of different content forms. Multimedia includes a combination of text, audio, still images, animation, video and interactivity content forms.
Q. 193838 A man can find information on Web with the help of
A. graphics.
B. protocols.
C. modem.
D. internet.
Right Answer is: D
SOLUTION
Internet is used for finding information and communication.
Q. 193839 Term used to refer usage of combination of text and video is
A. Protocols.
B. Multimedia.
C. URL.
D. Internet.
Right Answer is: B
SOLUTION
Multimedia refers to usage of multiple media such as text, graphics, video and audio at the same time.
Q. 193840 Web administer can connect to dissimilar networks with the help of
A. gateway.
B. web page.
C. hypertext.
D. backbone.
Right Answer is: A
SOLUTION
Gateways regulate traffic between two dissimilar networks. They are usually a combination of both hardware and software. A gateway can connect entirely dissimilar networks or it can connect dissimilar systems on the same network.
Q. 193841 A web portal is
A. central connected structure.
B. set of programs.
C. a web site hosting other web sites.
D. a web site hosting other web sites.
Right Answer is: C
SOLUTION
A web portal is a web site hosting many other web sites.
Q. 193842 A hyperlink is a
A. very fast internet connection.
B. word or an image that gives reference other electronic files.
C. type of error message.
D. video game.
Right Answer is: B
SOLUTION
A hyperlink is an icon, graphic or a word in a file, which when clicked with the mouse opens another file for viewing or takes the user to another location in the file. The most common example of hypertext today is the World Wide Web where web pages contain hyperlinks to other documents and web pages.
Q. 193843 This URL tells about the source http://vos.Summervilla.edu, which is
A. associated with an educational institution.
B. an English teacher’s personal home page.
C. an article from a magazine.
D. from a directory.
Right Answer is: A
SOLUTION
The three letter suffix .edu is known as an extension. Extensions can provide clues about the source of a site. The extension .edu in this URL means that the site is associated with an educational institution. Other common extensions include .com, .org and .gov.
Q. 193844 The Internet was originally developed by
A. computer hackers.
B. a corporation.
C. the U.S. Department of Defense.
D. the University of Michigan.
Right Answer is: C
SOLUTION
Researchers for the Department of Defense developed what was then called Arpanet, developed Internet to allow communication between university research computers. This network was designed so that it could function even if individual locations were destroyed by nuclear or military attack.
Q. 193845 The term used by Web browsers to locate Internet resources is
A. Hypertext.
B. Frames.
C. URL.
D. Bookmarks.
Right Answer is: C
SOLUTION
A Uniform Resource Locator (URL) is a Uniform Resource Identifier (URI) that specifies where an identified resource is available and the mechanism for retrieving it.
Q. 193846 In the URL http://www.microsoft.com, http is a
A. host name.
B. protocol name.
C. server name.
D. directory name.
Right Answer is: B
SOLUTION
Here, it specifies that microsoft.com web site should be fetched using HTTP protocol. The protocol is always followed by ”://”.
Q. 193847 Rahul has taken permits for file uploading and downloading with other computers on Internet, from
A. Telnet.
B. FTP.
C. IM.
D. Webcasting.
Right Answer is: B
SOLUTION
FTP or File Transfer Protocol is a standard that allows users to transfer files from one computer to another using a modem and telephone lines. Like HTTP, FTP is a protocol that provides a way of uploading and downloading files.
Q. 193848 The “ http " type at the beginning of any site's address stands for
A. HTML Transfer Technology Process.
B. Hyperspace Techniques and Technology Progress.
C. Hyperspace Terms and Technology Protocol.
D. Hyper Text Transfer Protocol.
Right Answer is: D
SOLUTION
Hyper Text Transfer Protocol is a set of rules and conventions describing how data can be transferred between two devices.
Q. 193849 All the computers use a communication standard called
A. FTP.
B. TELNET.
C. RSS.
D. HTTP.
Right Answer is: D
SOLUTION
HTTP is a request-response standard typical of client-server computing. In HTTP, web browsers act as clients, while an application running on the computer hosting the web site acts as a server.
Q. 193850 The Web is a computer network all over the
A. world.
B. country.
C. continent.
D. state.
Right Answer is: A
SOLUTION
Web is a collection of interconnected documents and other resources, linked by hyperlinks and URLs all over the world.
Q. 193851 In URL., http://www.hcl.com/printers/main.htm, the component that identifies the protocol is
A. http.
B. main.htm.
C. www.hcl.com.
D. /printers/main.htm.
Right Answer is: A
SOLUTION
Hyper Text Transfer Protocol is a set of rules and conventions describing how data can be transferred between two devices.
Q. 193852 Hyperlinks are used to
A. search for web pages.
B. attach a file to an email.
C. send an email message to more than one person.
D. move from one web page to another.
Right Answer is: D
SOLUTION
Hyperlink refers to a dynamic link upon clicking at which a new web page or a program can be opened.
Q. 193853 A search engine is used to
A. check for new emails.
B. search for files on a CDROM.
C. connect to the Internet.
D. find web pages.
Right Answer is: D
SOLUTION
A web search engine is designed to search for information on the World Wide Web. The information may consist of web pages, images, information and other types of files.
Q. 193854 How many type of functions are there?
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
Functions are of two types:
(1) Build-in function: These functions are part of the compiler.
(2) User-defined function: These functions are created by programmer.
Q. 193855 What is Dynamic Initializon ?
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
Process of initialization of the variable at run time is known as dynamic initialization.
Q. 193856 How is structure differ from a class ?
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
class are private by default, whereas members of a struct are public by default. Inheritance between classes is also private by default, and inheritance between structs is public by default.
Q. 193857 How is Structure different from an Array ? Mention briefly.
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
An array can hold multiple elements of the same data type whereas a structure can hold multiple elements of different data types.
Q. 193858 Briefly mention what is a structure ?
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
A structure is a collection of variables of different data types under one name. The keyword struct is used to construct a structure.
Q. 193859 Briefly mention the use of function ?
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
A function is a subprogram that acts on data and often used to return a value.
Q. 193860 In this 2 dimensional array, state the elements?
int a[2][3]
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
Array refers to a named list of a finite number of elements of similar data types.
Q. 193862 Give some examples where unsigned type can be used as the quantities and can never be negative?
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
Sports scores, Population, Inventory count etc.
Q. 193863 How letters and symbol are represented in memory?
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
Letters, symbols etc are represented in memory by associated number codes.
Q. 193864 How are integers represented in c++ ?
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
They are represented by data type 'int'.
Q. 193865 What is the difference between char and string Data Type?
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
(1) char: - This data type is used to represent single character.
(2) string: - This data type is used to represent set of character.
Q. 193866 What do you mean by data and data types?
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
Data is of various forms and this data can be handled by data types.
Q. 193867 Name the two data types?
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
Data types are of the following two types:-
(1) Fundamental data type and
(2) Derived data type
Q. 193868 Define the term ‘variable’. Name the two values associated with the symbolic variable.
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
A variable is a storage location that can contain any number or characters. The two values associated with the symbolic variable are:
1.rvalue: It is the data value stored at some location in memory. 2. lvalue: It is the location value, i.e., the address in memory at which its data value is stored.
Q. 193869 Write a program to find an ASCII value of the given character.
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
The program to find an ASCII value of the given character is as follows:
#include< iostream.h >
#include< stdio.h >
#include< conio.h >
int main()
{
clrscr();
int number;
char character;
cout<<"Type a character.n";
cin>>character;
number = character;
cout<<"Character"<< character;
cout<<"is represented as "<< number;
getch();
return 0;
}
Q. 193870 Give the rules for assigning data types.
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
The rules for assigning data types are as follows:
• Assign short, int or long data types when we are sure that a variable is an integer. • Assign float or double when fractional numbers. • Assign char if the variable always contains one character of data. This means only one letter (or character).
Q. 193871 Write a program to check whether a given number is even or odd.
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
A program to check whether a given number is even or odd:
#include< iostream.h>
#include< stdio.h>
#include< conio.h>
int main()
{
int number;
cout<< "Enter a number";
cin>>number;
if (number%2==0)
cout<< number<<"is even";
else
cout<< number<<"is odd";
getch();
return 0;
}
Q. 193872 List all categories of Derived Data Types?
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
These are the derived data types:
i)Array ii) Functions iii) Pointers iv) reference v) structures vi) unions and vii) enumerations
Q. 193873 Write a definition for class student that can hold information like student id, name, marks, subject etc.
A. check for new emails. B. search for files on a CDROM. C. connect to the Internet. D. find web pages.
Right Answer is:
SOLUTION
class student
{
int stu_id;
char name[20];
int marks;
char subject;
}
Q. 193874 Below mentioned URL tells about the source that it is
http://vos.ucsb.edu
A. associated with an educational institution.
B. an English teacher’s personal home page.
C. an article from a magazine.
D. from a directory.
Right Answer is: A
SOLUTION
The three letter suffix .edu is known as an extension. Extensions can provide clues about the source of a site. The extension .edu in this URL means that the site is associated with an educational institution. Other common extensions include .com, .org and .gov.
Q. 193875 The World Wide Web is
A. a computer game.
B. a software program.
C. the part of the Internet that enables information-sharing via interconnected pages.
D. another name for the Internet.
Right Answer is: C
SOLUTION
The World Wide Web is a subset of the Internet. Specifically, the Web is a collection of documents and applications residing on Internet servers around the world.
Q. 193876 A server is a
A. computer that stores and delivers electronic files.
B. software program.
C. hardware device for a laptop.
D. person that takes order at a dinner.
Right Answer is: A
SOLUTION
A server is a computer program that delivers (serves) content such as web pages, using the Hypertext Transfer Protocol (HTTP), over the World Wide Web.
Q. 193877 What role does gateway plays in networking?
A. computer that stores and delivers electronic files. B. software program. C. hardware device for a laptop. D. person that takes order at a dinner.
Right Answer is:
SOLUTION
In Internet, most of the computers are not connected directly to the Internet; rather they are connected in small networks, which in turn are connected through gateways to Internet backbone. The gateway is the ISP that connects the user to the internet.
Q. 193878 How is Internet connected through leased lines?
A. computer that stores and delivers electronic files. B. software program. C. hardware device for a laptop. D. person that takes order at a dinner.
Right Answer is:
SOLUTION
Leased lines are direct cables laid from our computer to ISP server. It is a direct connection to Internet and is available for 24 hours.
Q. 193879 Which document is referred as home page?
A. computer that stores and delivers electronic files. B. software program. C. hardware device for a laptop. D. person that takes order at a dinner.
Right Answer is:
SOLUTION
The top-level web page on web site that gets displayed upon opening a web-site is called home page.
Q. 193880 What do you mean by Web browser?
A. computer that stores and delivers electronic files. B. software program. C. hardware device for a laptop. D. person that takes order at a dinner.
Right Answer is:
SOLUTION
Web Browser is software that navigates through World Wide Web and display web pages.
Q. 193881 Explain ARPANET?
A. computer that stores and delivers electronic files. B. software program. C. hardware device for a laptop. D. person that takes order at a dinner.
Right Answer is:
SOLUTION
Advanced Research Projects NETwork, is a network established in 1969 to connect computers at different universities and U.S.Defense.
Q. 193882 What does http in URL specify?
A. computer that stores and delivers electronic files. B. software program. C. hardware device for a laptop. D. person that takes order at a dinner.
Right Answer is:
SOLUTION
The http specifies the type of server in which the file is located.
Q. 193883 What is HTTP.
A. computer that stores and delivers electronic files. B. software program. C. hardware device for a laptop. D. person that takes order at a dinner.
Right Answer is:
SOLUTION
Hypertext Transfer Protocol (HTTP) is a protocol used by WWW to create, display and link hypertext files.
Q. 193884 Name three parts of URL.
A. computer that stores and delivers electronic files. B. software program. C. hardware device for a laptop. D. person that takes order at a dinner.
Right Answer is:
SOLUTION
URL is divided into three parts:
1.The protocol ("http")
2.The server name ("www.msn.com")
3.The file name ("web-server.htm")
Q. 193885 What is a Server?
A. computer that stores and delivers electronic files. B. software program. C. hardware device for a laptop. D. person that takes order at a dinner.
Right Answer is:
SOLUTION
Those machines that provide services (like Web servers or FTP servers) to other machines are servers.
Q. 193886 What is a protocol?
A. computer that stores and delivers electronic files. B. software program. C. hardware device for a laptop. D. person that takes order at a dinner.
Right Answer is:
SOLUTION
A protocol is a set of rules governing an operation or an application.
Q. 193887 What is multimedia?
A. computer that stores and delivers electronic files. B. software program. C. hardware device for a laptop. D. person that takes order at a dinner.
Right Answer is:
SOLUTION
Multimedia refers to usage of multiple media such as text, photographs, graphics, video and audio at the same time. A multimedia file is a combination of media like text, graphics, video and audio.
Q. 193888 What do you understand by URL?
A. computer that stores and delivers electronic files. B. software program. C. hardware device for a laptop. D. person that takes order at a dinner.
Right Answer is:
SOLUTION
The full form of URL is Uniform Resource Locator. A URL refers to an address on the internet. Billions of documents/ multimedia files can be accessed on Internet through their URLs.
Q. 193889 What is a network?
A. computer that stores and delivers electronic files. B. software program. C. hardware device for a laptop. D. person that takes order at a dinner.
Right Answer is:
SOLUTION
Network is a group of devices linked to one another, e.g., network of trains, cable network.
Q. 193890 What is a hyperlink?
A. computer that stores and delivers electronic files. B. software program. C. hardware device for a laptop. D. person that takes order at a dinner.
Right Answer is:
SOLUTION
The link between Web pages is known as hyperlink. It is the link that leads from one document to another.
Q. 193891 How does Dial-up connection connects Internet.
A. computer that stores and delivers electronic files. B. software program. C. hardware device for a laptop. D. person that takes order at a dinner.
Right Answer is:
SOLUTION
A dial-up connection is a temporary connection which is set between computer and ISP server. It is established using a modem, which uses the telephone line to dial up the number of ISP server.
Q. 193892 Differentiate between gateway and backbone.
A. computer that stores and delivers electronic files. B. software program. C. hardware device for a laptop. D. person that takes order at a dinner.
Right Answer is:
SOLUTION
A gateway is a device that connects dissimilar networks, whereas a Backbone is a central interconnecting structure that connects one or more networks.
Q. 193893 What is Client-Server Computing?
A. computer that stores and delivers electronic files. B. software program. C. hardware device for a laptop. D. person that takes order at a dinner.
Right Answer is:
SOLUTION
Client/server is a computational architecture that involves client processes requesting service from server processes. Client programs request service from a server by sending it a message.Server programs process client requests by performing the tasks requested by clients.
Q. 193894 Internet Explorer is most commonly used
A. operating system.
B. browser.
C. network service.
D. World Wide Web.
Right Answer is: B
SOLUTION
Internet Explorer is still the most commonly used Web browser. It has been the most widely used Web browser since 1999.
Q. 193895 Majority of the Web sites use the
A. TELNET.
B. FTP.
C. HTTP.
D. RSS.
Right Answer is: C
SOLUTION
HTTP is used on the WWW for transferring web pages and files of various websites.
Q. 193896 Web browsers often provide a/an
A. graphical interface.
B. interface.
C. way.
D. operating system.
Right Answer is: A
SOLUTION
Web browsers often provide a graphical interface that let users click icons, buttons and menu options to view and navigate webpages.
Q. 193897 It is a client program that initiates requests to a
A. Network server.
B. World Wide Web.
C. Web server.
D. Operating system.
Right Answer is: C
SOLUTION
A client computer uses its software programs to make requests from server computers over a network. The server computers then process the request and handle delivery back to the client.
Q. 193898 An E-mail is the acronym for
A. Elective Mail.
B. Exchange Mail.
C. Environmental Mail.
D. Electronic Mail.
Right Answer is: D
SOLUTION
Electronic mail, most commonly abbreviated as email or e-mail, is a method of exchanging digital messages.
Q. 193899 A Web browser access the webpage from a Web server by a
A. request.
B. response.
C. interrupts.
D. normal messages.
Right Answer is: A
SOLUTION
A Web browser access the webpage from a Web server by a request or query generated by the client or user.
Q. 193900 All the computers use a communication standard called
A. FTP.
B. TELNET.
C. RSS.
D. HTTP.
Right Answer is: D
SOLUTION
HTTP is a request-response standard typical of client-server computing. In HTTP, web browsers act as clients, while an application running on the computer hosting the web site acts as a server.