Gadgets

Showing posts with label enum. Show all posts
Showing posts with label enum. Show all posts

Thursday, 18 February 2016

enum interview questions and answers

enum is introduced in J2SE-5 version, we can represent a group of named constants by using enum. The main objective of enum is to define our own datatypes.

                         enum Week
                         {
                                      SUN,MON,TUS,WED,THU,FRI,SAT;
                         }