Business Definition for: class
class
- securities having similar features. Stocks and bonds are the two main classes; they are subdivided into various classes-for example, mortgage bonds and debentures, issues with different rates of interest, common and preferred stock, or Class A and Class B common. The different classes in a company's capitalization are itemized on its balance sheet.
- options of the same type-put or call-with the same underlying security. A class of option having the same expiration date and
exercise price
is termed a series.
class
- securities issued as part of a group, or having similar characteristics, such as bonds issued under the same
indenture
. Synonymous with
tranche
.
- one of several types of stock issued by a corporation, for example, Class A or Class B. Usually only one class has voting rights.
- group of creditors in a bankruptcy case, ranked by seniority of claim. For example, secured creditors holding liens or mortgages.
class
class
- group of people who meet together for an educational purpose (e.g., elementary school class) or students or alumni who share a certain year of graduation (e.g., ABC College Class of 2005).
- securities having similar features. Stocks and bonds are the two main classes; they are subdivided into various classes-for example, mortgage bonds and debentures, issues with different rates of interest, common and preferred stock, and Class A and Class B common. The different classes in a company's capitalization are itemized on its balance sheet.
- group of people who meet certain specified criteria, as in a
class action
suit.
class
group of insureds with the same characteristics, established for rate-making purposes. For example, all wood-frame houses within 200 feet of a fire plug in the same geographical area would have similar probabilities of incurring a total loss.
See also
rate making
class
- U.S. Postal Service designation for a level of service and priority given a type of mail; also called mail classification. First-Class mail is restricted to personal letter mail and invoices. Periodicals class is for news and information publications, such as magazines and newsletters published at least four times a year. Recipients must be subscribers or requesters. Standard Mail (A) is also called bulk mail or promotional mail and is the primary vehicle of the direct-mail industry. Standard Mail (B) is used to ship catalogs, books, and merchandise parcels. Each class of mail has its own regulations for size, weight, preparation, postage, and delviery. First-Class receives the highest level of service with delivery standards of one to five days, as well as the highest postage rates.
- in print media, grouping of people by their interests. For example, people whose interest is photography will be classified as individuals likely to purchase magazines dealing with photography.
- sociological grouping of people, by income, education, lifestyle, residence, and occupation, as lower class, middle class, or upper class. See also
upscale
.
Related Terms:
a programming methodology in which the programmer can define not only data types, but also methods that are automatically associated with them.Ageneral type of an object is called a class. Once a class has been defined, specific instances of that class can be created.
The same name can be given to different procedures that do corresponding things to different types; this is called polymorphism. For example, there could be a "draw" procedure for circles and another for rectangles.
Some uses for object-oriented programming include the following:
- Graphical objects. A program that manipulates lines, circles, rectangles, and the like can have a separate "draw" and "move" procedure for each of these types.
- Mathematical objects. In order to work with vectors, matrices, or other special mathematical objects, the programmer has to define not only data structures for these objects, but also operations such as addition, inversion, or finding a determinant.
- Input-output devices. The procedure to draw a line might be quite different on a printer or plotter than on the screen. Object-oriented programming provides a simple way to ensure that the right procedure is used on each device.
- Simulation. In a program that simulates traffic flow, for example, cars, trucks, and buses might be types of objects, each with its own procedures for responding to red lights, obstructions in the road, and so forth. This, in fact, is what object-oriented programming was invented for. The first object-oriented programming language was Simula, introduced in 1967.
- Reusable software components. Object-oriented programming provides a powerfulway to build and use components out of which programs can be built. For example, a programmer might use a predefined object class such as "sorted list" (a list that automatically keeps itself in order) rather than having to write procedures to create and sort a list.
Here is an example of object-oriented programming in Java. Imagine a program that manipulates points, lines, and circles. A point consists of a location plus a procedure to display it (just draw a dot). So the programmer defines a class called pointtype as follows:
The class pointtype is defined to include two integer variables (x and y) and one method (draw). (The class also would include a constructor - a method called when a new object of that class is created.)
Now variables of type pointtype can be declared, for example:
pointtype: a,b;
Here the objects a and b each contain an x and a y field; x and y are called instance variables. In addition, a and b are associated with the draw procedure. Here's an example of how to use them:
a.x = 100;
a.y = 150:
a.draw(g);
This sets the x and y fields of a to 100 and 150, respectively, and then calls the draw procedure that is associated with a (namely pointtype.draw). (The g stands for graphics.)
Now let's handle circles. A circle is like a point except that in addition to x and y, it has a diameter. Also, its draw method is different. We can define circletype as another type that includes a pointtype, and it adds an instance variable called diameter and substitutes a different draw method. Here's how it's done:

Your program would create a new object of class circletype (call it c), define values for the variables, and then call the method circletype.draw to display the circle on the screen. See the book's web page, www.termbook.com, for an example.
It is important to remember that instance variables belong to individual objects such as a, b, and c, but methods (procedures) belong to object types (classes). One advantage of object-oriented programming is that it automatically associates the right procedures with each object: c.draw uses the circle draw procedure because object c is a circle, but a.draw uses the point draw procedure because object a is a point.
The act of calling one of an object's methods is sometimes described as "sending a message" to the object (e.g., c.draw "sends a message" to c saying "drawyourself").All object-oriented programming systems allow one class to inherit from another, so the properties of one class can automatically be used by another class. For example, there is a standard Java class called Applet which contains the code needed to display an applet on the web. When you write your own applet, it will inherit from (extend) this class, so you don't need to recreate that code yourself.
process of calculating a premium so that it is (1) adequate-sufficient to pay losses according to expectedfrequency and severity, thereby safeguarding against the insurance company becoming insolvent; (2) reasonable-the insurance company should not be able to earn an excessive profit; and (3) not unfairly discriminatory or inequitable. Theoretically, it can be said that each insurance applicant should pay a unique premium to reflect a different expectation of loss, but this would be impractical. Instead, classifications are established for applicants to be grouped according to similar expectation of loss. Statistical studies of a large number of nearly homogeneous exposures in each underwriting classification enable the projection of losses after adjustments for future inflation and statistical irregularities. The adjusted statistics are used to calculate the pure cost of protection, or pure premium, to which the insurance company adds on loads for agent commissions, premium taxes, administrative expenses, contingency reserves, other acquisition costs, and profit margin. The result is the gross premium to be charged to the insured.
Referring Terms:
Copyright © 2006, 2003, 1998, 1995, 1991, 1987, 1985 by Barron's Educational Series, Inc. Reprinted by arrangement with Publisher.
Copyright c 2006, 2000, 1997, 1993, 1990 by Barron's Educational Series, Inc. Reprinted by arrangement with Publisher.
Copyright © 2006, 2003, 2000, 1998, 1996, 1995, 1992, 1989, 1986 by Barron's Educational Series, Inc. Reprinted by arrangement with Publisher.
Copyright © 2007, 2000, 1997, 1987, by Barron's Educational Series, Inc. Reprinted by arrangement with Publisher.
Copyright © 2000, 1995, 1991, 1987 by Barron's Educational Series, Inc. Reprinted by arrangement with Publisher.
Copyright c 2000, 1994, 1987 by Barron's Educational Series, Inc. Reprinted by arrangement with Publisher.