Variable types, Variable Scopes and
Naming Conventions
Types of variables and Scopes of Variables
Types of variables Scopes of Variables
● Local variables ● Method Level Scope
● Instance variables ● Object Level Scope
● Class/Static variables ● Class Level Scope
Naming conventions
Naming Conventions Programming Case Types
● Packages ● camelCase
● Classes ● PascalCase
● Interfaces ● snake_case
● Methods ● kebab-case
● Variables ● MACRO_CASE
● Constants ● Train-Case
Oracle Documentation
Interview Questions