What is the output of this program
Menu
Home
Home
Language Fundamental
Identifiers
Reserved Words
Data Types
Literals
Variables
Var Arg Method
Main Method
Command Line Argument
OOPS
Enum
Inner Classes
Inheritance
Polymorphism
Exception Handling
Assertion
Multithreading
Serialization
Internationalization
Package
Collections
Array
Collection Framework
Generics
JVM Architecture
Contact
Multithreading
-
-
0 comments
0 comments:
Home
Subscribe to:
Posts (Atom)
Search
Follow us
Java Topics
Home
Programs List
Arrays
Command Line Argument
Data Types
Identifier
Literals
Main Method
Reserved words
Var-Arg Method
Variables
Search This Blog
()
Can we call same method with different numbers of parameter?
class VarArgMethod1 { public static void m1(int...x) { System.out.println("var-arg method"); } public static void mai...
How many Reserved words/Keywords are available in Java?
In Java, There are 53 reserved words are available to represent some meaning or functionality such type of words are called as reserved wo...
What is the output of this program?
class Variable6 { public static void main(String[] alt) { int i=0; for(int j=0;j<5;j++) i=i+j; System.out.printl...
0 comments: