Public deckpublic

Java Classes and Modifiers

by venky · shared Aug 10, 2026
10
Questions
~6m
To complete
0
Times taken
Programming Languages
Subject
Deck intelligence

What this deck covers

Focus
Programming Languages
Practice shape
Quick check
Question mix
4 multiple choice · 6 written
Coverage
3 study sections
JavaClass ModifiersAccess ModifiersFinal ClassAbstract ClassNested Classes
Try this deck →

One-shot · self-check · no signup

Save to my library

Copy, edit, practice, and export

Sneak peek · question 1

What is the function of the 'public' modifier in Java classes?

4 choices · multiple choice
    Question 02

    What is the role of class modifiers in Java?

    Question 03

    What does a class define in Java?

    Question 04

    What is the purpose of the final modifier in Java?

    Question 05

    How many public classes can be present in a single Java source file?

    • A)
      Zero
    • B)
      One
    • C)
      Two
    • D)
      Any number
    Question 06

    What is the purpose of class modifiers in Java?

    Question 07

    What is the access level provided by the protected modifier in Java classes for subclasses in different packages?

    • A)
      Access is denied
    • B)
      Access is allowed
    • C)
      Access is limited to constructors
    • D)
      Access is restricted to methods
    Question 08

    Which of the following is NOT considered a main class member in Java?

    • A)
      Fields (Variables)
    • B)
      Methods
    • C)
      Interfaces
    • D)
      Nested Classes
    Question 09

    What access does the protected modifier provide to class members in Java?

    Question 10

    Can a top-level class in Java be declared static?