answersLogoWhite

0

Classroom: la classe

desk: le bureau/ les bureaux

chair: la chaise, les chaises

blackboard: le tableau noir

chalk: la craie, les craies

book: le livre, les livres

pencil: le crayon, les crayons

pen: le stylo, les stylos

lesson: la leçon, les leçons

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What kind of method is applied to all objects of a class rather than individual?

A class static method can be applied to all objects of a class.


Are all objects liquid at room temperature?

no


What is class?

It is where you leave school or otherwise find a way to avoid going to that particular class.


What may be different for all objects in a class and what remains the same in C plus plus programming?

The only things that may be different for all objects of a class are their member variables. They represent the object's data. The only things that remain the same are the static members -- they are akin to global variables, but are local to all objects of the class type.


What is terminal cleaning of the operating room?

terminal cleaning usually include removing all detachabale objects in the room


What is a class and object of a class?

A class (public) holds objects and methods (actions that can be imported and used by other objects and classes. An object is a thing that holds behavior and attributes. For example, take the scientific group of Mammal. This would be a class. Dogs, cats, 60 Minutes cohost Morley Safer, and Wooly Mammoths are all objects inside the class Mammal.


Why is the Size of an empty class 1 byte?

In order that unique objects have unique addresses, it is necessary for all objects to consume some memory. normally this is not a problem, unless the struct/class contains no data...


What do you get for answering all the class room questions right on Build-a-Bearville?

When you get all the BABV class questions in all the grades right, you get a certificate and a special dance move.Hope this helped! :)


How schools have chance sense 1909?

before schools were small mostly with only one class room now there is about 15 to 50 class rooms per school and each class room has kids about the same age and before kids of all ages were mixed in one room


What should you make static in Java?

Static keyword signals something that is shared among all objects of the same class: i.e. a variable that all objects of the class can reference to, or method that all objects of the class can access. Usually, class constants are made static since it is the same in all objects of the same class thus it saves space not having to have variables for the same data for each class. But usually private instances should not be made static since it creates some strange situations, i.e. if you modify the data of one object, the data of the other object of the same class is also changed. Statics methods are common in main classes, in fact the main method itself is static, meaning it does not need a object to call it. The helper methods in a main class is usually static, since main classes are non-instantiable.


Do all schools have class room pets?

no at All Saints School for example half of the class rooms do not have pets like ms. Witte's classroom Meghan O.


What are static objects?

Static objects in programming refer to variables, properties, or methods that belong to the class itself rather than to instances of the class. They are shared among all instances of the class and are accessed using the class name rather than an instance of the class. Static objects are defined with the static keyword in many programming languages.