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

What will be the result of this code: Console.WriteLine(1==0?”true” : “false”);



Posted By: Avi Date: 14 October 2010 10:20:31 AM
 Answer:

false on output screen


Posted By: avibtech


Date: 14 October 2010 10:20:31 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image VBXKQz
Related Questions
C# : How does VB.NET/C# achieve polymorphism?

How does VB.NET/C# achieve polymorphism?

By using Abstract classes/functions.
Category: C# Date: 2/5/2010 1:47:04 PM
C# : What is "out" keyword in C#?

What is "out" keyword in C#?

The "out" keyword causes arguments to be passed by reference. This is similar to the ref k....
Category: C# Date: 12/5/2009 12:09:31 AM
C# : What is the difference between Close() and Dispose() methods in C#?

What is the difference between Close() and Dispose() methods in C#?

The main difference between Close() and Dispose() method is, when Close() method is called, any mana....
Category: C# Date: 12/4/2009 11:14:47 PM
C# : Does C# support multiple inheritance?

Does C# support multiple inheritance?

C# does not support multiple inheritance. But C# allows to implement multiple inheritence using inte....
Category: C# Date: 11/30/2009 2:36:09 PM
C# : Explain the difference between override and new in C#?

Explain the difference between override and new in C#?

When a virtual method is called on an object reference, the actual type of that object is used to de....
Category: C# Date: 11/30/2009 4:45:28 AM