Core Java Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 811 Page Views: 

What is the type of error in this statement int a = 3.5;?



Posted By: Avi Date: 4 November 2010 11:43:47 AM
 Answer:

Compilation error.


Posted By: avibtech


Date: 4 November 2010 11:43:47 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image zNPNoq
Related Questions
Core Java : What is the difference between the JDK 1.02 event model and the event-delegation  model introduced with JDK 1.1?

What is the difference between the JDK 1.02 event model and the event-delegation model introduced w....

The JDK 1.02 event model uses an event inheritance or bubbling approach. In this model, components a....
Category: Core Java Date: 11/5/2010 3:09:54 AM
Core Java : Why do we use finalization?

Why do we use finalization?

We use finalization to give an unreachable object the opportunity to perform any cleanup processing ....
Category: Core Java Date: 11/5/2010 2:48:48 AM
Core Java : What is a compilation unit?

What is a compilation unit?

A compilation unit is a Java source code file.
Category: Core Java Date: 11/5/2010 2:48:47 AM
Core Java : How are this and super used?

How are this and super used?

this is used to refer to the current object instance. super is used to refer to the variables and me....
Category: Core Java Date: 11/5/2010 2:15:46 AM
Core Java : What is numeric promotion?

What is numeric promotion?

Numeric promotion is the conversion of a smaller numeric type to a larger numeric type, so that inte....
Category: Core Java Date: 11/5/2010 1:20:55 AM