Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 623 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 623 Bytes

Java

This repo contain concepts of Java and Design pattern implemented in Java and Their Code

Java Output Questions GFG

Java Naming Conventions

  • Class and Interface Start with capital and each internal world is capital

Method and Variable

  • If the name contains multiple words, start it with the lowercase letter followed by an uppercase letter i.e camelCase

Package

  • It should be a lowercase letter such as java, lang.
  • If the name contains multiple words, it should be separated by dots (.) such as java.util,java.lang.