answersLogoWhite

0


Best Answer

A Chauffeur is a person that drives a private car for someone.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Someone who is paid to drive a private car is?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How much does an car engineer get paid?

a car engineer would get paid fom £30,000 - £200,000 depending on how high in the ranks you are


Which is a better car - the one with the engine in front or rear?

A car with the engine in the rear should have rear/all wheel drive. A car with the engine in the front should have front/all wheel drive.


Why do people need cars?

Umm, they really dont drive?? people drive them, you need to learn to drive then you can drive the car... it's quite obvious really......


What is method overriding in java?

Method overriding is when a child class redefines the same method as a parent class, with the same parameters. For example, the standard Java class java.util.LinkedHashSet extends java.util.HashSet. The method add() is overridden in LinkedHashSet. If you have a variable that is of type HashSet, and you call its add() method, it will call the appropriate implementation of add(), based on whether it is a HashSet or a LinkedHashSet. This is called polymorphism. Method overloading is defining several methods in the same class, that accept different numbers and types of parameters. In this case, the actual method called is decided at compile-time, based on the number and types of arguments. For instance, the method System.out.println() is overloaded, so that you can pass ints as well as Strings, and it will call a different version of the method. Overriding is an example of run time polymorphism. The JVM does not know which version of method would be called until the type of reference will be passed to the reference variable. It is also called Dynamic Method Dispatch. Overloading is an example of compile time polymorphism.


What is overriding in java?

Providing a declaration which matches another declaration of the same name, thereby hiding the existing declaration.In terms of object-oriented programming, overriding is the ability of a subclass to "override" and replace the functionality of a method.Example:class A {f(){print "A"}}class B extends A {// Function f is overridden.// When B.f() is called, it will call this function instead of A.f()f() {print "B"}}