1Z0-811 Object-Oriented Programming • 10 Questions
10 1Z0-811 Object-Oriented Programming practice questions with answers and explanations. Free, no signup.
A developer writes a class 'Vehicle' with a method 'move()' that prints 'Vehicle moves'. A subclass 'Car' overrides 'move()' to print 'Car moves'. Given: Vehicle v = new Car(); v.move(); What is the output?