An abstract method in Java has no method body - just the signature followed by a semicolon. Option B shows the correct syntax for an abstract method declaration. Option A incorrectly includes a method body with curly braces, which would make it a concrete method. Option C uses semicolon incorrectly with braces.