What is the output of this program

Menu
  • 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

Identifiers

- - 0 comments
Identifiers


Can we use "@" symbol as identifier?

Can any identifier be start with digit?

Identifiers are case sensitive or not?

Upto how long characters we can take identifiers?

Can we use Reserved words as identifiers?

Can we use Reserved literals as identifier?

Can we use predefined Class/Interface name as identifier?

Which of the following are valid identifiers?

0 comments:

Home
Subscribe to: Posts (Atom)

Copyright © 2013 What is the output of this program

| Distributed By Altaf

Back to Top

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

  • ()
  • 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 DataType6 { public static void main(String[] args) { float f=5.5; System.out.println(f); } } /* Output:- CE[possible ...
  • Can we use instance variable before initializing?
    class Variable2 { int x; public static void main(String[] alt) { Variable2 v=new Variable2(); System.out.println(v.x); } } ...