what is for datainputstream?
Answer / sudhir
it is available in java.io.* and it is a class reading
method from specified location.
| Is This Answer Correct ? | 3 Yes | 0 No |
What is map in java?
What are the two types of java?
What is a layout manager?
What's the purpose of using break in each case of switch statement?
What is parsing in grammar?
What is method with example?
what are the different access specifiers that can be used by interfaces and abstract classes? can anyone give me detailed description on this
11 Answers IBM, L&T,
Explain creating threads by extending thread class ?
What is a concrete classes? Is Java object class is concrete class?
solve this is my problem byte a=40,byte b=50 both add value is 90 this is with in range of byte... byte range is -128to 127.... why this pgm gives error like type mismatch.... package javapgms; public class byte1 { public static void main(String args[]) { byte a=40,b=50; byte c=a+b; System.out.println(c); } } note : dont use int k... a,b,c are in byte range... mind it..
Howmany classes that package java.applet.* contains?
What are instance variables?