What is the use of parse function in java?
No Answer is Posted For this Question
Be the First to Post Answer
What is character in data type?
What do you know about the garbage collector in java?
Can a final variable be initialized in constructor?
What is aggregation and composition ?
What are static blocks in java ?
What is the base class of all exception classes?
Suppose i have two threads t1 and t2 are running.How the main thread will know that the two threads t1,t2 execution has completed?
What will happen inside init() in servlet. my interviewer asked servlet lifecycle. i said "once servlet is loaded in to memory init() will be called which performs servlet initialization " . Again interview asked what values will be initialized . what is difference between init() and init(ServletConfig config).
2 Answers Infinite Computer Solutions, TCS,
What are operators and its types?
Is int a class in java?
What is difference between pointer and reference?
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..