A. base case is left out.
B. recursive call is left out.
C. subtraction is left out.
D. local variable declarations are left out.
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.
A. 35abc.
B. age16.
C. _students.
D. $rules.
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.
A. same as derived data types.
B. arrays, functions and pointers.
C. float, int, void.
D. unions and enumerations.
There are 5 fundamental data types in C++: char, int, float, double and void.
A. high level language.
B. low level language.
C. middle level language.
D. assembly language.
C++ is a middle level language. It has features of a high-level language and low-level language.
A. r value.
B. l value.
C. i+r values.
D. by writing memory address
lvalue is a location value and is used to represent memory address.
A. cannot be used interchangably.
B. can be used interchangeably.
C. there can be a reference to a reference.
D. no reference.
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.
A. clumsy.
B. rarely used.
C. not understood well by experienced programmers.
D. all of the above.
Pointer are difficult to understand by the programmes thus programmers rarely used pointers.
A. array.
B. structure.
C. functions.
D. char
C++ provides five fundamental data types : int, char, float, double and void.
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.
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.
A. variables.
B. constants.
C. files.
D. modifiers.
Modifiers are used to alter the meaning of the base type to fit various situations more precisely.
A. appear after data type.
B. appear before data type.
C. appear before data.
D. appear after data.
Modifiers are used to alter the meaning of the base type and is placed befors these base types.
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.
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.
A. 4 bytes.
B. 8 bytes.
C. 16 bytes.
D. 24 bytes.
Double data type occupies 8 bytes.
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.
The value of a constant is fixed during the program execution.
A. two.
B. three.
C. four.
D. five.
The three ways in which a variable can be declared are: uninitialized variable, initialized variable, dynamic initialized.
A. floating point modifier.
B. atomic data type.
C. pointer variable.
D. double float variable.
A pointer is a variable that holds a memory address. It is declared as int *a; Here a is pointer to int data type.
A. 0 to 255.
B. 1 to 255.
C. -128 to 127.
D. 255
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.
A. appear after data type.
B. appear before data type.
C. appear before data.
D. appear after data.
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;
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;
enumeration is used to name integer constants, using keyword enum. By default, enum values are assigned increasing from 0, 1, 2 ..... and so on.
A. rvalue.
B. lvalue.
C. rvalue+ lvalue.
D. rvalue- lvalue.
The location at which data value is stored is called rvalue. It is pronounced as "are-value"
A. integer code.
B. float code.
C. decimal code.
D. hexadecimal code.
Letters,symbols etc are represented in the memory by number codes.
A. slower.
B. larger.
C. both larger and slower.
D. faster.
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).
A. character string.
B. complex array.
C. integer.
D. character.
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.
A. 266 characters.
B. 255 characters.
C. 256 characters.
D. 265 characters.
A. floating point modifier.
B. atomic data type.
C. pointer variable.
D. double float variable.
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.
A. 215.
B. 250.
C. 256.
D. 253.
Characters refer to letters, digits, symbols, nongraphic characters etc.
A. void data type.
B. int data type.
C. float data type.
D. char data type.
Floating point numbers have fractional parts. The decimal point signals the floating point number. It can also be written in exponent notation.
A. integer constant.
B. float constant.
C. long integer constant.
D. double.
We use long(l or L) data types when large integers are to be used.
A. one.
B. two.
C. three.
D. four.
The three floating-point types are: (1) float (2) double (3) long double
A. long data type.
B. short data type.
C. Double Data Type.
D. none of the above.
Data type double holds twice as large memory with larger range and precision.
A. member classes.
B. derived data types.
C. fundamental (atomic) data type.
D. sub classes.
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).
‘void’ data type is used for empty set of values.
A. Internet Service Provider.
B. Web Browser.
C. Presentation.
D. Anti-virus.
We can view web pages using a web browser. A web browser is a WWW client that navigates through WWW and displays web pages.
A. Few Trade Practice.
B. File Transfer Protocol.
C. Film Transmission Protocol.
D. File Traffic protocol.
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.
A. FA
A.
B. Department of Defense.
C. NATO.
D. CI
A.
The seeds of Internet were planted in 1969, when US department of Defense sponsored a project named ARPANET.
A. Hypertext Transfer Protocol.
B. High Task Termination Procedure.
C. Harvard Teletext Proof.
D. High type text protocol.
Hypertext Transfer Protocol is an access method for interacting with Internet. It is responsible for accessing hypertext documents on World Wide Web.
A. ten nodes.
B. six nodes.
C. four nodes.
D. five nodes.
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.
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.
Hyperlinks refer to a dynamic link upon clicking at which a new web page opens.
A. 1920
B. 1947.
C. 1969.
D. 1990.
Internet came into existence when US Department of Defense sponsored a project named APRANET in 1969.
A. web document.
B. web page.
C. web interface.
D. web site.
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).
A. path.
B. file name.
C. URL.
D. URI.
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.
A. requests, interprets and displays Web pages.
B. works as a tool to design Web pages.
C. delivers Web pages.
D. runs gateway programs.
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.
A. client.
B. master.
C. host.
D. slave.
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.
A. URL.
B. HTTP.
C. URI.
D. IP address.
Web servers locate specific Web pages with Internet Protocol (IP) addresses, which are written out as a series of numbers.
A. Uniform Resource Locator.
B. Universal Routing Link.
C. Useless Reference Line.
D. United Radio League.
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.
A. World Wide Web.
B. Hyper Text Transfer Protocol.
C. Hyper Text Markup Language.
D. Uniform Resource Locator.
The World Wide Web is a global information medium that users can read and write via computers connected to the Internet.
A. a URL.
B. an access code.
C. a directory.
D. a server.
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.
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.
URL stands for Uniform Resource Locator. It is an address for a specific document found on the Web.
A. Macromedia Flash.
B. Google.
C. Netscape.
D. Librarian’s Index to the Internet.
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.
A. computer hackers.
B. a corporation.
C. the U.S. Department of Defense.
D. the University of Michigan.
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.
A. type of error message.
B. neurological disease.
C. very fast Internet connection.
D. word or image that gives reference to other electronic files.
A hyperlink refers to a dynamic link upon clicking at which a new web pages or words open.
A. stores video clips.
B. identifies the location of an electronic file.
C. prevents viruses from spreading.
D. transmits live webcam pictures.
Each web site has a unique address called URL (Uniform Resource Locator), which identifies the location of file on server.
A. secondary.
B. Ultra vires.
C. Illegal.
D. legal.
The activity which is outside the scope of activities is called Ultra Vires activity.
A. Memorandum of association
B. Articles of Association
C. Certificate of Incorporation
D. Certificate to commence business
The internal rules and regulations are framed to carry the objects of the company as stated in the Memorandum of Association.
A. Memorandum of association
B. Articles of Association
C. Certificate of Incorporation
D. Certificate to commence Business
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.
A. Directors
B. Company
C. Promoters
D. Employees
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.
A. finding the business idea
B. feasibility study
C. entering into preliminary contracts
D. incorporation of the company
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.
A. Directors of the company
B. Auditors of the company
C. Bankers of the company
D. Underwriters to the company
The directors of the company subscribe the qualification shares as a person needs to purchase these shares to become the director of the company.
A. Executive Directors
B. Stock Exchange
C. SEBI
D. Registrar of Companies
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.
A. Professional Promoter
B. Occasional Promoter
C. Entrepreneur Promoter
D. Financier Promoter
Entrepreneur Promoters are not promoters by occupation but they help in promotion and take part in the management of company after the incorporation.
A. 14 days
B. 30 days
C. 20 days
D. 90 days
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.
A. Memorandum of Association
B. Article of Association
C. Certificate of Incorporation
D. Certificate to commence business
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.
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
Provisional contracts are contracts signed after the incorporation but before commencement of business by a company.
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.
The application for approval of the name of the new company is made to the Registrar of Companies.
Memorandum of Association is known as the charter of the company.
Prospectus is issued by a company to invite public to purchase its shares.
The directors of the company subscribe to the qualification shares.
Memorandum of Association specifies the objects of the company.
A public company can commence business after obtaining the Certificate of Commencement of Business.
A private company can commence business after obtaining Certificate of Incorporation.
Two members are required to sign the Memorandum of Association of a private company.
Seven members are required to sign the Memorandum of Association of a public limited Company.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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. |
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.
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.
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:
To commence a public company following documents have to be filled with the registrar of the companies:
The five fundamental data types are as follows:
#include< stdio.h>
#include< conio.h>
#include< iostream.h>
int main()
{
clrscr();
cout<< "Welcome to C++";
getch();
return 0;
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();
}
A. Secretary’s declaration
B. Directors declaration
C. Statutory declaration
D. Preliminary declaration
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.
A. a partnership business
B. a public company
C. a private company
D. a cooperative society