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

Data Types

- - 0 comments
Data Types


What is the range of byte data type?

Can we store double value in byte data type?

Can we store String value in byte data type?

What is the range of short data type?

What is the range of int data type?

What is the output of this program?

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); } } ...