🎴 Flashcard Mode

Caché/ObjectScript Programming Quiz

Card1 / 19
Mastered0
Review0
QuestionClick to flip

Which of the following is correct syntax for an Abstract class ?

AnswerClick to flip back
A
abstract double area();
💡 Explanation:

An abstract method declares a method signature without implementation. It ends with a semicolon and has no body (no braces). Option C shows the correct syntax with semicolon and no braces.

Change Mode