C# Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 741 Page Views: 

What will be the result of this code Console.WriteLine(3/4 == 3.0/4.0);



Posted By: Avi Date: 15 October 2010 07:40:47 AM
 Answer:

answer is 'false'


Posted By: kumar


Date: 2 August 2011 06:43:51 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image MRnvow
Related Questions
C# : .int keyword of C# maps with which .Net type?

.int keyword of C# maps with which .Net type?

a) System.Int16 b) System.Int32 c) System.Int64 d) System.Int128
Category: C# Date: 10/1/2010 11:39:31 AM
C# : What is meant by an Iterator?

What is meant by an Iterator?

Iterator is a method, get accesor or an operator which performs custom iterations over an array or ....
Category: C# Date: 10/1/2010 11:38:31 AM
C# : Is there any way tp prevent a class being inherited , so that it can't act as a base class to some other class?

Is there any way tp prevent a class being inherited , so that it can't act as a base class to some o....

Yes, it is possible. This can be done with the help of the sealed keyword. It can be done as follows....
Category: C# Date: 10/1/2010 11:37:31 AM
C# : Why an error occurs when one tries to declare a method without specify its return type?

Why an error occurs when one tries to declare a method without specify its return type?

If the return type is not included at the time of declaration of the method, the compiler thinks it ....
Category: C# Date: 10/1/2010 11:36:31 AM
C# : In one Try block what is the need of multiple  Catch Blocks?

In one Try block what is the need of multiple Catch Blocks?

If there is one catch block in the try block then it will catch every exception but it will not be c....
Category: C# Date: 10/1/2010 11:35:31 AM