CBSE - MCQ Question Banks (के. मा. शि. बो . -प्रश्नमाला )

PreviousNext

Q. 193701 A recursive function would result in infinite recursion, if the


A. base case is left out.

B. recursive call is left out.

C. subtraction is left out.

D. local variable declarations are left out.

Right Answer is: A

SOLUTION

A base case refers to the statements that decide the termination of recursive call. For a function to calculate factorial of a number, the base case includes defining the factorial of 0 and 1 initially.


Q. 193702 The invalid identifier is


A. 35abc.

B. age16.

C. _students.

D. $rules.

Right Answer is: A

SOLUTION

Identifier 35abc is invalid as, it starts with a number. An identifier is a sequence of characters. _ and $ are legal identifiers in c++ but 0,1,2 are not.


Q. 193703 Fundamental data types in C++ are


A. same as derived data types.

B. arrays, functions and pointers.

C. float, int, void.

D. unions and enumerations.

Right Answer is: C

SOLUTION

There are 5 fundamental data types in C++: char, int, float, double and void.


Q. 193704 C++ is a general purpose programming language. It is also called


A. high level language.

B. low level language.

C. middle level language.

D. assembly language.

Right Answer is: C

SOLUTION

C++ is a middle level language. It has features of a high-level language and low-level language.


Q. 193705 Memory address is given by


A. r value.

B. l value.

C. i+r values.

D. by writing memory address

Right Answer is: B

SOLUTION

lvalue is a location value and is used to represent memory address.


Q. 193706 As a reference variable int &sum = 500;


A. cannot be used interchangably.

B. can be used interchangeably.

C. there can be a reference to a reference.

D. no reference.  

Right Answer is: B

SOLUTION

A reference variable is an alias name for a previously defined variable, in this same data object can be refered to by two names thus can be used as interchangeably.


Q. 193707 Pointers to c++ member functions are


A. clumsy.

B. rarely used.

C. not understood well by experienced programmers.

D. all of the above.

Right Answer is: D

SOLUTION

Pointer are difficult to understand by the programmes thus programmers rarely used pointers.


Q. 193708 Fundamental data types of C++ is


A. array.

B. structure.

C. functions.

D. char

Right Answer is: D

SOLUTION

C++ provides five fundamental data types : int, char, float, double and void.


Q. 193709 Reference  with & variable is a


A. it is not an alternate name for an object.

B. alternate name for a previously defined variable (alias).

C. A reference declaration does not consist of base class.

D. it is a name of a class.

Right Answer is: B

SOLUTION

A reference variable is an alias name for a previously defined variable, in this same data object can be refered to by two names thus can be used as interchangeably.


Q. 193710 Meaning of data type can be changed by


A. variables.

B. constants.

C. files.

D. modifiers.

Right Answer is: D

SOLUTION

Modifiers are used to alter the meaning of the base type to fit various situations more precisely.


Q. 193711 Data type modifiers


A. appear after data type.

B. appear before data type.

C. appear before data.

D. appear after data.

Right Answer is: B

SOLUTION

Modifiers are used to alter the meaning of the base type and is placed befors these base types.


Q. 193712 An unsigned int


A. is smaller than signed int.

B. can be twice as large as signed int.

C. is a float variable.

D. is a char variable.

Right Answer is: B

SOLUTION

signed integer is same as int i.e. -32768 to 32767  Unsigned integer is 0 to 65,535 i.e. just double of signed integer.


Q. 193713 Type double occupies


A. 4 bytes.

B. 8 bytes.

C. 16 bytes.

D. 24 bytes.

Right Answer is: B

SOLUTION

Double data type occupies 8 bytes.


Q. 193714 If I declare const int abc=15; then variable abc


A. can change value in the program during compile time.

B. can change value during runtime.

C. becomes constant throughout the program.

D. can vary again and again.

Right Answer is: C

SOLUTION

The value of a constant is fixed during the program execution.


Q. 193715 The number of ways in which a variable can be declared are


A. two.

B. three.

C. four.

D. five.

Right Answer is: B

SOLUTION

The three ways in which a variable can be declared are: uninitialized variable, initialized variable, dynamic initialized.


Q. 193716 The code *a is a


A. floating point modifier.

B. atomic data type.

C. pointer variable.

D. double float variable.

Right Answer is: C

SOLUTION

A pointer is a variable that holds a memory address. It is declared as int *a; Here a is pointer to int data type.


Q. 193717 Unsigned char represents the range


A. 0 to 255.

B. 1 to 255.

C. -128 to 127.

D. 255

Right Answer is: A

SOLUTION

A single byte can represent the whole range of 256 known characters The unsigned char represents the range 0 to 255 and signed char represents the range -128 to 127.


Q. 193718 Data type modifiers


A. appear after data type.

B. appear before data type.

C. appear before data.

D. appear after data.

Right Answer is: B

SOLUTION

Data type modifiers change the meaning of base type. There are four data type modifiers available: signed, unsigned, long, and short.These modifiers are used before data types. For example: signed int a;


Q. 193719 enum type (poor, good) means


A. const int poor=0; const int good=0;

B. const int poor=1; const int good=1;

C. const int poor=1; const int good 0;

D. const int poor=0; const int good=1;

Right Answer is: D

SOLUTION

enumeration is used to name integer constants, using keyword enum. By default, enum values are assigned increasing from 0, 1, 2 ..... and so on.


Q. 193720 Data value of a variable is stored in its


A. rvalue.

B. lvalue.

C. rvalue+ lvalue.

D. rvalue- lvalue.

Right Answer is: A

SOLUTION

The location at which data value is stored is called rvalue. It is pronounced as "are-value"


Q. 193721 Char is equivalent to


A. integer code.

B. float code.

C. decimal code.

D. hexadecimal code.

Right Answer is: A

SOLUTION

Letters,symbols etc are represented in the memory by number codes.


Q. 193722 Type double compared to float is


A. slower.

B. larger.

C. both larger and slower.

D. faster.

Right Answer is: C

SOLUTION

double requires more storage space than a float (thus it is larger), also it will take lot of time to read the data (thus it is slower).


Q. 193723 A character array is also known as


A. character string.

B. complex array.

C. integer.

D. character.

Right Answer is: A

SOLUTION

In C++, a string of characters is stored in successive elements of a character array and is terminated by the NULL character. Therefore a character array is also known as character string.


Q. 193724 8 bits can represent


A. 266 characters.

B. 255 characters.

C. 256 characters.

D. 265 characters.

Right Answer is: C

SOLUTION

Here we have 8 bits...
00000000 or 11111111 or anything in between.
If we have 11111111 this is essentially 1 + 2 + 4 + 8 + 16 + 32 + 64 + 128
This adds up to 255. But wait....0 can represent something as well...255 + 1 = 256


Q. 193725 *a is


A. floating point modifier.

B. atomic data type.

C. pointer variable.

D. double float variable.

Right Answer is: C

SOLUTION

A pointer declaration consist of base type, an *(asterisk), and a variable name. The general form of declaring a pointer variable is: type *ptr; Thus *a is pointer variable.


Q. 193726 Total number of ASCII codes for characters are


A. 215.

B. 250.

C. 256.

D. 253.

Right Answer is: C

SOLUTION

Characters refer to letters, digits, symbols, nongraphic characters etc.


Q. 193727 3.56 is an example of


A. void data type.

B. int data type.

C. float data type.

D. char data type.

Right Answer is: C

SOLUTION

Floating point numbers have fractional parts. The decimal point signals the floating point number. It can also be written in exponent notation.


Q. 193728 35L is a


A. integer constant.

B. float constant.

C. long integer constant.

D. double.

Right Answer is: C

SOLUTION

We use long(l or L) data types when large integers are to be used.


Q. 193729 The number of floating-point types available in C++ are


A. one.

B. two.

C. three.

D. four.

Right Answer is: C

SOLUTION

The three floating-point types are: (1) float (2) double (3) long double


Q. 193730 For double precision, floating numbers used are called


A. long data type.

B. short data type.

C. Double Data Type.

D. none of the above.

Right Answer is: C

SOLUTION

Data type double holds twice as large memory with larger range and precision.


Q. 193731 Int, char, float,double and void are


A. member classes.

B. derived data types.

C. fundamental  (atomic) data type.

D. sub classes.

Right Answer is: C

SOLUTION

Fundamental data types are those that are not composed of other data types. There are five fundamental data types ( int , char, float, double and void).


Q. 193732 Name any one data type modifier?
A. member classes.
B. derived data types.
C. fundamental  (atomic) data type.
D. sub classes.

Right Answer is:

SOLUTION

A modifier is used to alter the meaning of the base type. A data type modifier that can be applied to integer base type is 'signed'. 


Q. 193733 What is the use of void data type?
A. member classes.
B. derived data types.
C. fundamental  (atomic) data type.
D. sub classes.

Right Answer is:

SOLUTION

‘void’ data type is used for empty set of values.


Q. 193734 The type of software use to look at web pages on the Internet is


A. Internet Service Provider.

B. Web Browser.

C. Presentation.

D. Anti-virus.

Right Answer is: B

SOLUTION

We can view web pages using a web browser. A web browser is a WWW client that navigates through WWW and displays web pages.


Q. 193735 The expansion of the acronym FTP is


A. Few Trade Practice.

B. File Transfer Protocol.

C. Film Transmission Protocol.

D. File Traffic protocol.

Right Answer is: B

SOLUTION

File Transfer Protocol (FTP) is a standard network protocol used to copy a file from one host to another over a TCP/IP-based network.


Q. 193736 ARPANET, the precursor to the Internet, was developed by


A. FA
A.

B. Department of Defense.

C. NATO.

D. CI
A.

Right Answer is: B

SOLUTION

The seeds of Internet were planted in 1969, when US department of Defense sponsored a project named ARPANET.


Q. 193737 The abbreviation " http " stand for


A. Hypertext Transfer Protocol.

B. High Task Termination Procedure.

C. Harvard Teletext Proof.

D. High type text protocol.

Right Answer is: A

SOLUTION

Hypertext Transfer Protocol is an access method for interacting with Internet. It is responsible for accessing hypertext documents on World Wide Web.


Q. 193738 The first " internet " consisted of


A. ten nodes.

B. six nodes.

C. four nodes.

D. five nodes.

Right Answer is: C

SOLUTION

The network was constructed in 1969, linking four nodes: University of California at Los Angeles, SRI (in Stanford), University of California at Santa Barbara and University of Utah.


Q. 193739 Hyperlinks


A. allow us to move between web pages.

B. allow us to see pictures.

C. allow us to book a flight.

D. is linking of flights.

Right Answer is: A

SOLUTION

Hyperlinks refer to a dynamic link upon clicking at which a new web page opens.


Q. 193740 Internet was born in


A. 1920

B. 1947.

C. 1969.

D. 1990.

Right Answer is: C

SOLUTION

Internet came into existence when US Department of Defense sponsored a project named APRANET in 1969.


Q. 193741 A location on web server is called a


A. web document.

B. web page.

C. web interface.

D. web site.

Right Answer is: D

SOLUTION

A location on Web server is called a Web site. It is a collection of related Web pages. The pages of a Website are usually accessed from a simple Uniform Resource Locator (URL).


Q. 193742 Each web site has a unique address called


A. path.

B. file name.

C. URL.

D. URI.

Right Answer is: C

SOLUTION

URL (Uniform resource locator) is an address of a file on Internet. It specifies where an identified resource is available and the mechanism for retrieving it.


Q. 193743 A Web browser


A. requests, interprets and displays Web pages.

B. works as a tool to design Web pages.

C. delivers Web pages.

D. runs gateway programs.

Right Answer is: A

SOLUTION

A Web browser is a computer program (also known as a software application) that knows how to communicate with a Web server on the Internet and request a Web page. It is also able to interpret the markup language in order to properly display a Web page on a computer screen.


Q. 193744 The term for a machine that contacts a server for information is


A. client.

B. master.

C. host.

D. slave.

Right Answer is: A

SOLUTION

A machine asking for information from a server is a client. Machines can act as both clients and servers, depending on what action they're performing at the time.


Q. 193745 The series of numbers representing a Web address are better known as


A. URL.

B. HTTP.

C. URI.

D. IP address.

Right Answer is: D

SOLUTION

Web servers locate specific Web pages with Internet Protocol (IP) addresses, which are written out as a series of numbers.


Q. 193746 URL is


A. Uniform Resource Locator.

B. Universal Routing Link.

C. Useless Reference Line.

D. United Radio League.

Right Answer is: A

SOLUTION

URLs specify the location of a resource in the Internet. We can type or paste a URL into the location window in the browser and then connect to it. The URL shows the type of item and its basic address and path.


Q. 193747 A repository of information linked together from points all over the world is


A. World Wide Web.

B. Hyper Text Transfer Protocol.

C. Hyper Text Markup Language.

D. Uniform Resource Locator.

Right Answer is: A

SOLUTION

The World Wide Web is a global information medium that users can read and write via computers connected to the Internet.


Q. 193748 http://www.extramarks.com is an example of


A. a URL.

B. an access code.

C. a directory.

D. a server.

Right Answer is: A

SOLUTION

A URL is an address for a specific document found on the Web. It is made up of several components: a domain name, the directories and subdirectories of the site and the extension.


Q. 193749 A URL is


A. a computer software program.

B. a type of UFO.

C. the address of a document or " page " on the World Wide Web.

D. an acronym for Unlimited Resources for Learning.

Right Answer is: C

SOLUTION

URL stands for Uniform Resource Locator. It is an address for a specific document found on the Web.


Q. 193750 Example of a search engine is


A. Macromedia Flash.

B. Google.

C. Netscape.

D. Librarian’s Index to the Internet.

Right Answer is: B

SOLUTION

A search engine is a program that searches for Web documents with keyword(s) we specify. Yahoo!, Google and AltaVista are just three examples of search engines that have been created to help you find information on the Web.


Q. 193751 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 where APRA stands for Advanced Research Projects Agency, which allowed 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. 193752 A hyperlink is a


A. type of error message.

B. neurological disease.

C. very fast Internet connection.

D. word or image that gives reference to other electronic files.

Right Answer is: D

SOLUTION

A hyperlink refers to a dynamic link upon clicking at which a new web pages or words open.


Q. 193753 A URL


A. stores video clips.

B. identifies the location of an electronic file.

C. prevents viruses from spreading.

D. transmits live webcam pictures.

Right Answer is: B

SOLUTION

Each web site has a unique address called URL (Uniform Resource Locator), which identifies the location of file on server.


Q. 193754 Any act of the company outside the scope of activities as laid down in the Memorandum is said to be


A. secondary.

B. Ultra vires.

C. Illegal.

D. legal.

Right Answer is: B

SOLUTION

The activity which is outside the scope of activities is called Ultra Vires activity.


Q. 193755 ____________________ has the rules & regulation for the internal management of the company.


A. Memorandum of association

B. Articles of Association

C. Certificate of Incorporation

D. Certificate to commence business

Right Answer is: B

SOLUTION

The internal rules and regulations are framed to carry the objects of the company as stated in the Memorandum of Association.


Q. 193756 Table F can be adopted by a company in place of_________.


A. Memorandum of association

B. Articles of Association

C. Certificate of Incorporation

D. Certificate to commence Business

Right Answer is: B

SOLUTION

A public company may adopt Table F which is a model set of articles given in the Companies Act. If a company adopts Table F, there is no need to prepare separate Articles of Association.


Q. 193757 Who signs preliminary contracts?


A. Directors

B. Company

C. Promoters

D. Employees

Right Answer is: C

SOLUTION

Preliminary contracts are the contracts entered into by the promoters on behalf of the company before its incorporation. These are legally not binding upon the company even after it comes into existence. These are signed by promoters as these are made before the incorporation of the company.


Q. 193758 A company comes into existence immidiately after______________.


A. finding the business idea

B. feasibility study

C. entering into preliminary contracts

D. incorporation of the company

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.A company comes into existence from the date of incorporation.


Q. 193759 Who subscribes the qualification shares?


A. Directors of the company

B. Auditors of the company

C. Bankers of the company

D. Underwriters to the company

Right Answer is: A

SOLUTION

The directors of the company subscribe the qualification shares as a person needs to purchase these shares to become the director of the company.


Q. 193760 Statement in lieu of Prospectus is filed with_______________________.


A. Executive Directors

B. Stock Exchange

C. SEBI

D. Registrar of Companies

Right Answer is: D

SOLUTION

A statement in lieu of prospectus is drafted in accordance with the particulars of the companies Act. It is filed with the Registrar. This is issued when the company has not issued prospectus to the public for inviting them to subscribe for shares.


Q. 193761 Choose from the following, an entrepreneur who promotes a company and manages affairs after incorporation.


A. Professional Promoter

B. Occasional Promoter

C. Entrepreneur Promoter

D. Financier Promoter

Right Answer is: C

SOLUTION

Entrepreneur Promoters are not promoters by occupation but they help in promotion and take part in the management of company after the incorporation.


Q. 193762 Complete the following sentence: Return of allotment is filed by a company with the registrar within________.


A. 14 days

B. 30 days

C. 20 days

D. 90 days

Right Answer is: B

SOLUTION

After allotment of shares, a Return of Allotment, signed by a director or secretary is filed with the registrar of companies within 30 days of allotment.


Q. 193763 What is the document containing capital and object clause of a company?


A. Memorandum of Association

B. Article of Association

C. Certificate of Incorporation

D. Certificate to commence business

Right Answer is: A

SOLUTION

Memorandum of association is the most important document of a company. It contains the fundamental on which a company is incorporated. It contains various clauses of the company such as object clause, liability clause, capital clause, etc.


Q. 193764 When are provisional contracts signed?


A. Before incorporation of a company

B. Before the commencement of a company.

C. After commencement of a company

D. Before filing of Memorandum of Association of a company

Right Answer is: B

SOLUTION

Provisional contracts are contracts signed after the incorporation but before commencement of business by a company.


Q. 193765 Who conceives the idea of forming a company?
Right Answer is:

SOLUTION

Promoters are the persons who conceive a business idea, decide to form a company, take decisions about size, type and structure, take preliminary steps for its formations and assume associated risk.


Q. 193766 Which document contains the byelaws of the company?
Right Answer is:

SOLUTION

Articles of Association.


Q. 193767 To whom is the application for approval of the name of the new company is made?
Right Answer is:

SOLUTION

The application for approval of the name of the new company is made to the Registrar of Companies.


Q. 193768 Which clause of memorandum defines the object of formation of the company?
Right Answer is:

SOLUTION

Object clause.


Q. 193769 Which document is known as the charter of the company?
Right Answer is:

SOLUTION

Memorandum of Association is known as the charter of the company.


Q. 193770 Which document is issued by a company to invite public to purchase its shares?
Right Answer is:

SOLUTION

Prospectus is issued by a company to invite public to purchase its shares.


Q. 193771 By whom are the qualification shares subscribed to?
Right Answer is:

SOLUTION

The directors of the company subscribe to the qualification shares.


Q. 193772 Which document specifies the objectives of a company?
Right Answer is:

SOLUTION

Memorandum of Association specifies the objects of the company.


Q. 193773 When can a public company commence business?
Right Answer is:

SOLUTION

A public company can commence business after obtaining the Certificate of Commencement of Business.


Q. 193774 When can a private company commence business?
Right Answer is:

SOLUTION

A private company can commence business after obtaining Certificate of Incorporation.


Q. 193775 How many signatories are required for the Memorandum of Association of a Private Company?
Right Answer is:

SOLUTION

Two members are required to sign the Memorandum of Association of a private company.


Q. 193776 How many signatories are required for the Memorandum of Association of a public Limited Company?
Right Answer is:

SOLUTION

Seven members are required to sign the Memorandum of Association of a public limited Company.


Q. 193777 Explain the objects clause of memorandum of association of the company?
Right Answer is:

SOLUTION

It is the most important clause of memorandum of association of a company. It defines the purpose for which the company is formed. It contains the main objects and other objectives which the company may pursue. It defines the scope and limitations of the company. A company is not legally entitled to undertake an activity, which is beyond the objectives stated in this clause. This clause is divided into two sub-clauses named main objects and other objects.


Q. 193778 Explain liability clause.
Right Answer is:

SOLUTION

A clause which defines the liability of the members of the company. In case of a company limited by shares, liability is limited to unpaid value of shares. In case of a company limited by guarantee liability is limited to the amount guaranteed by a member. In India companies are limited by shares only. Suppose a share of 10 is held by a member on which he has paid 9. In this case the liability of the member towards the company is limited to 1 only.


Q. 193779 Explain the function of name approval, discharged by a promoter of a company.
Right Answer is:

SOLUTION

Once it is decided to form a company, the promoters have to decide a name for it and submit an application for its approval to the Registrar of Companies of the state in which the registered office of the company is to be situated. The name so selected should not be undesirable and should not be similar to the name of an existing company or misleading. Three names have to given in the application. In case the proposed name is not acceptable, one of the alternative names may be approved.


Q. 193780 What do you mean by economic feasibility of a project?
Right Answer is:

SOLUTION

A project may be technically and financially beasible but it may not be profitable at the same time. Profitability of a project is called economical feasibility. If some project is not economically feasible the idea may have to be abondoned. Promoters usually take the help of experts to conduct these studies. It may be noted that these experts do not become promoters just because they are assisting the promoters in these studies.


Q. 193781 What is meant by Incorporation of a company?
Right Answer is:

SOLUTION

 

Incorporation of a company means the registration of company as a corporate body under the provisions of Companies Act. A company comes into existence from the date of incorporation. After completing formalities, promoters make an application for the incorporation of the company. When the registrar is satisfied about the completion of formalities for registration, a certificate of incorporation is issued to the company, which signify the birth of the company.

 


Q. 193782 What is Prospectus?          
Right Answer is:

SOLUTION

Prospectus is any document that invites deposits or offers from public for the subscription or purchase of any shares or debentures of a body corporate. It is an invitation to the general public to apply for shares or debentures of the company or to make deposits in the company. Since the investors decide to invest in a company on the basis of information contained in the prospectus, there should not be any mis-statement, rather all important information should be disclosed.


Q. 193783 What is certificate of Incorporation?
Right Answer is:

SOLUTION

Certificate of Incorporation is the conclusive evidence of the legal existence of the company. A company is legally born on the date printed on the Certificate of Incorporation. It becomes a separate legal entity with perpetual succession on such date. A private company can start its business after receiving certificate of incorporation and does not need certificate for commencement of business.


Q. 193784 Who is a promoter of a company?          
Right Answer is:

SOLUTION

A promoter is the person who does the required work before the formation of the company for its incorporation. A promoter plans and organises the business and fulfills all the legal formalities so that new company can come into existence. It may be an individual, a group of individuals or a company.


Q. 193785 Discuss the importance of Memorandum of association.
Right Answer is:

SOLUTION

It is the foundation of a business. It contains the powers and objectives of the company. It is constitution of a company which relates with the outside world. No company is allowed to tamper with its contents without the sanction of Central Government or court of law. Any act of the company outside the scope of activities as laid down in the memorandum is said to be ultra vires and non binding on it.


Q. 193786 Describe the legal status of a promoter.
Right Answer is:

SOLUTION

Promoters are entrusted with the responsibility to get the company registered and get it to the position of commencement of business. They are neither the agent nor the trustees of the company as it is yet to be incorporated. They stand in a fiduciary relationship with the company which is based on trust and faith. They must surrender and disclose any secret profit made during the promotion of the company. They are personally liable for all the contracts entered by them before the incorporation of the company.


Q. 193787 What are the documents which are required to submit for the issue of Certificate of Commencement of Business?
Right Answer is:

SOLUTION

If capital of a company has been raised by issue of shares, a company applies to the registrar of companies for the issue of certificate of commencement of business. Follwing documents are needed to submit:

1. A declaration that shares have been subscribed by the public and allotted upto minimum subscription amount mentioned in the prospectus;

2. A declaration that every director has paid the application and allotment money on his shares in cash in the same proportion as others;

3. A declaration that no money is liable to become payable to the applicants because of the failure of the company to either apply for or obtain permission to deal in its securities on a stock exchange; and

4. A statutory declaration that the above requirements have been complied with. This declaration can be signed by a director or secretary of the company.

 


Q. 193788 What is the difference between Certificate of Incorporation and Certificate of Commencement of Business?
Right Answer is:

SOLUTION

Certificate of Incorporation is the conclusive evidence of the legal existence of the company. A company is born on the date mentioned on Certificate. It becomes a separate legal entity on such date. It can enter into contract with any party.

On the other hand, the Certificate of Commencement of Business is conclusive evidence that a company is entitled to do business. The company can start its functioning after getting certificate of commencement.


Q. 193789 What is the difference between preliminary contracts and provisional contracts?
Right Answer is:

SOLUTION

Preliminary contracts are signed with the third parties before the incorporation of the company. Provisional Contracts are signed after incorporation but before commencement of business.

BASIS

PRELIMINARY CONTRACT

PROVISIONAL CONTRACT

TIME

These are contracts signed before incorporation.

These are signed after the incorporation but before commencement of business.

Sign

These are signed by the promoters.

These are signed by the company.

Binding

These are not binding on the company, but binding on the promoters.

These are binding on the company.

 


Q. 193790 Explain the term “Minimum Subscription”.
Right Answer is:

SOLUTION

 

According to the  Companies Act, no allotment shall be made of any share capital of a company offered to the public for subscription, unless the amount stated in the prospectus as the minimum amount has been subscribed. This amount is known as “Minimum Subscription” According to SEBI guidelines minimum subscription has been fixed at 90% that should be received within 120 days from the date of issue. It has been done to prevent companies from commencing business with inadequate resources. Thus if applications received for the shares are for an amount less than 90% of the issue size, the allotment cannot be made and the application money received must be returned to the applicants within next 10 days.

 


Q. 193791 What is Article of Association?
Right Answer is:

SOLUTION

Articles of Association contains the rules & regulations for the internal management of the company. These rules and regulations are framed to carry the objects of the company as stated in the memorandum of association. Articles of association contains the matters related to issue of shares, forfeiture of shares, meetings & maintenance of books. The articles are subordinate to Memorandum and hence, should not contradict anything stated in the memorandum.


Q. 193792 Define a prospectus and state its main clauses.
Right Answer is:

SOLUTION

According to the Companies act “A prospectus may be defined as a document that invites deposits or offers from public for the subscription or purchase of any shares or debenture of a body corporate”. The contents of a prospectus should be such that prospective investors can evaluate a company. A prospectus is any document described or issued as a prospectus including any notice, circular, advertisement or other document inviting deposits from the public or inviting offers from the public for the subscription or purchase of any shares or debentures of, a body corporate. It is necessary for a public company to issue prospectus to raise money form public. However, a private company can raise funds by filing a Statement in Lieu a Prospectus.

Usually the following are contents of prospects:


Q. 193793 Mention the documents to be submitted to the registrar of companies.
Right Answer is:

SOLUTION

To commence a public company following documents have to be filled with the registrar of the companies:

  1. Memorandum of Association: It is the most important document of the company. It defines the objectives of the company for which the company is formed. No company can legally undertake activities that are not contained in its Memorandum of Association.
  2. Articles of Association: It is the second important document of the company to be filed to registrar. It contains the rules regarding internal management of a company. All the rules stated in it are subsidiary to Memorandum of Association and hence should not contradict or exceed anything stated in the Memorandum of Association.
  3. Consent of Proposed Directors: Along with the Memorandum of Association and the Articles of Association, a written consent of the proposed directors is also submitted to the registrar. In this consent each person named as a director is required confirming that he is agree to act in that company and is ready to buy qualification shares.
  4. Agreement: If any agreement is made with any party or individual as agreement for appointment as Managing Director or a whole time Director or Manager, such agreements are also required to be submitted along with other important documents.
  5. Statutory Declaration: It is the declaration stating that all the legal requirements have been done for getting the company registered under the act. This statement can be signed by an advocate of High Court or Supreme Court or by a Chartered Accountant in full time practice or by a person named in the articles as a director or manager or secretary of the company.


Q. 193794 What is the difference between a reference variable and a pointer variable?
Right Answer is:

SOLUTION

A pointer can be reassigned any number of times, whereas a reference cannot be reassigned after initialisation. A pointer can point to null, whereas reference can never point to null.


Q. 193795 Explain all the five fundamental data types.
Right Answer is:

SOLUTION

The five fundamental data types are as follows:

(1) int data type: Integers are whole numbers such as 5, 39 etc. They have no fractional parts. Integers are represented in C++ by int data type.

(2) char data type: Characters can store any number of the C++ basic character set. An identifier declared as char becomes a character variable.

(3) float data type: A number having a fractional part is called a floating point number. For example, 3.14 is a floating point number.

(4) double data type: The double data type is used for handling double precision floating-point numbers. 

(5) void data type: The void type specifies an empty set of values. It is used as the return type for functions that do not return a value.  


Q. 193796 Write a program in C++ to print a string.
Right Answer is:

SOLUTION

#include< stdio.h>

#include< conio.h>

#include< iostream.h>

int main()

{

    clrscr();

    cout<< "Welcome to C++";

    getch();

    return 0;

}


Q. 193797 Write a program to find the area of a triangle.
Right Answer is:

SOLUTION

The program to find the area of a triangle:

#include< iostream.h>

#include< iomanip.h>

#include< math.h>

#include< conio.h>

void main()

{

float a, b, h;

cout<<"Please enter the base of the triangle";

cin>>b;

cout<<"Please enter the height of the triangle";

cin>>h;

a=0.5*(b*h);

cout<<"Area is"<< a;

getch();

}


Q. 193798 Write a program in C++ to swap two numbers using pointers.
Right Answer is:

SOLUTION

#include< iostream.h>

#include< stdio.h>

#include< conio.h>

  

void swap(int *d3, int *d4)

{

      int temp;

      temp=*d3;

      *d3=*d4;

      *d4=temp;

}

void main()

{

     int  c,d;

     clrscr();

     cout<<"Enter a number c: ";

     cin>>c;

     cout<<"Enter a number d: ";

     cin>>d;

     swap(&c,&d);

     cout<< "c contain" << c;

     cout<<"n d contain" << d;

     getch();

}


Q. 193799 __________________is the declaration to be submitted to the Registrar, stating that all the legal requirements pertaining to registration have been complied with.


A. Secretary’s declaration

B. Directors declaration

C. Statutory declaration

D. Preliminary declaration

Right Answer is: C

SOLUTION

Statutory declaration stating that all the legal requirements pertaining to registration have been complied with is submitted to the Registrar with other documents for getting the company registered under the law.


Q. 193800 The four stages Promotion, Incorporation, Capital Subscription and Commencement of Business are the stages of formation of_________________.


A. a partnership business

B. a public company

C. a private company

D. a cooperative society

Right Answer is: B

SOLUTION

The process of forming a public company is done under four separate stages i.e. Promotion, Capital Subscription and Commencement of Business.


PreviousNext