answersLogoWhite

0

Class's = the possessive form of the singular noun class.

Classes' = the possessive form of the plural noun classes.

Examples:

The class's pet frog was called Robert. (one class had a pet frog called Robert)

All of the classes' students were at the assembly. (the students from all classes were at the assembly)

User Avatar

Wiki User

9y ago

What else can I help you with?

Related Questions

What is the difference between classes of IP addresses?

difference between ip address and class


What is the difference between economy and business class airfare?

The difference between the two classes may depend on the airline. Originally, business class was developed as a medium between economy and first-class flights. Some airlines have adopted business class as the same as first-class. If you are looking to evaluate the difference in price between two classes, your best bet is to visit the airline's website.


What is the difference between association class and abstract class in software designing?

Association class is describing the relationship between classes. An abstract class is just 1 class, provides some abstraction behaviors that may be (but do not have to) derived, overridden from.


What difference between package class and object?

A package is a grouping of similar classes. A class is a blue print for making an object. An object is, well, an object.


What is the difference between the direct and indirect base class?

Direct base classes are those that are specified in a derived class' inheritance declaration. Indirect base classes are those that are inherited via the direct base classes. class A{}; class B : public A{}; class C : public B{}; With respect to C, B is direct while A is indirect. With respect to B, A is direct.


What is the difference between classes and object in C?

An object is an INSTANCE of a class. Human is a class, while YOU are a person, an instance of Human class, but YOU do not represent the entire human class. Or, a class provides the abstraction, and an object is a typical example of that abstraction. Classes provide a blue print to build a real instance of an object.


Does structure support polymorphism?

Yes. The only difference between a struct and a class is that a struct's members and inheritance is public by default, while a class' members and inheritance are private by default. Structs can derive from classes and classes can derive from structs. As such, they are polymorphic.


What is the difference betwen class and interface?

classes can be extended and interfaces can be implemented.


What's the difference between Classes 375 377 and 379?

The difference between the Classes 375 377 and 379 is the services that are provided to the customer.


What's the difference between the Class 365 and Class 465 466?

The difference between the Class 365 and Class 465, 466 is basically the cost.


Difference between exclusive or inclusive class intervals?

difference between inclusive and exclusive class interval


What is the difference between friend function and normal member function?

We can access a Friend function from any other class in which friend function is introduced or declared even if the other class is not a member of first class. But when we use normal member function, we can have its access only in the derived classes of the first class. This is the basic difference between a friend function and a normal member function.