- Q who was the first person to classsify plants?
- Q What is quality audit?
- Q What are important features of Servlet 3
- Q What is the difference between a server, a container, and a connector?
- Q What is heart block
- Q A Money Bill passed by the Lok Sabha can be delayed by the Rajya Sabha for a maximum period of
- Q Who elects the member of Rajya Sabha?
- Q Which gas is produced from bleaching powder?
- Q How is NEXT SENTENCE and CONTINUE different?
- Q If you are truncated using JDBC, How can you know ..that how much > > > data is truncated
- Q How does arp resolve an ip address to an ethernet mac address?
Answers
In a switch statement, default case is executed when no other switch condition matches. Default case is an optional case .
It can be declared only once all other switch cases have been coded.
In the below example, when score is not 1 or 2, default case is used.
Java
public class switchExample {
int score=4;
public static void main(String args[]) {
switch (score) {
case 1:
System.out.println("Score is 1");
break;
case 2:
system.out.println("Score is 2");
break;
default:
System.out.println("Default Case");
}
}
} 1234567891011121314151617
public class switchExample {int score=4;public static void main(String args[]) {switch (score) {case 1:System.out.println("Score is 1");break;case 2:system.out.println("Score is 2");break;default:System.out.println("Default Case");} } }
Your Comment
It can be declared only once all other switch cases have been coded.
In the below example, when score is not 1 or 2, default case is used.
Java
public class switchExample {
int score=4;
public static void main(String args[]) {
switch (score) {
case 1:
System.out.println("Score is 1");
break;
case 2:
system.out.println("Score is 2");
break;
default:
System.out.println("Default Case");
}
}
} 1234567891011121314151617
public class switchExample {int score=4;public static void main(String args[]) {switch (score) {case 1:System.out.println("Score is 1");break;case 2:system.out.println("Score is 2");break;default:System.out.println("Default Case");} } }
Your Comment
- 0
- 0
- New Answer
- Contributors: *,
More Software,Java Questions..
What is the inputsplit in map reduce software?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
Can variables be used in Java without initialization?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Java,
What is the difference between java bean and enterprise java bean?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Java,
What is software configuration management?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
How does the java database connectivity (jdbc) work?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Java,
What are the advantages of threads in java?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 0 )
- Tags: Java,
What Is Java Api For Xml-based Rpc (jax-rpc)?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
How can you implement fine-grained auditing?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What is IBM’s simple explanation for Big Data’s four critical features?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What is static synchronized method in JDBC API? Give an example?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
What does the NULLIF function do?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What happens if a start method is not invoked and the run method is directly invoked?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
Should we override finalize method
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
what is the difference between mysql_fetch_array and mysql_fetch_object?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
How will XML affect my document links?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What is object cloning in Java?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 0 )
- Tags: Java,
Why to use Style Sheets?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What are Filters in MVC?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
Can you explain Application layer in OSI model?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
How to define new testplan attributes?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,