Qtr No. 213, New Town Yehlanka Indore 454775
What will be the output of the below code?
public class Tester {
public static void main(String[] args) {
for(Directions dir : Directions.values())
{
System.out.print(dir.toString());
System.out.print(dir.ordinal());
System.out.println();
}
}
enum Directions{
EAST(1), WEST(2), NORTH(3), SOUTH(4);
int value;
private Directions(int value) {
this.value = value;
}
}
}
EAST0
WEST1
NORTH2
SOUTH3
EAST1
WEST2
NORTH3
SOUTH4
East0
West1
North2
South3
East1
West2
North3
South4
To get all Infosys Certified Java SE8 Developer Exam questions Join Group https://bit.ly/infy_premium_group
We're passionate about offering best placement materials and courses!! A one stop place for Placement Materials. We daily post Offcampus updates and Placement Materials.
Qtr No. 213, New Town Yehlanka Indore 454775
admin@prepflix.in