Question
public static void Main(string[] args)
{
int i = 546;
object o = i;
int n =(int) o;
o = 70;
System. Console. WriteLine("The value-type value = {0}", n);
System. Console. WriteLine("The object-type value = {0}", o);
Console. ReadLine();
}
a.
546, 0
b.
546, 546
c.
546, 70
d.
70, 546
Posted under C# programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. Correct output for the following set of code is :
Similar Questions
Discover Related MCQs
Q. What is the need for ‘Conversion of data type’ in C#?
View solution
Q. Types of ‘Data Conversion’ in C#?
View solution
Q. Implicit Conversion' follows the order of conversion as per compatibility of datatype as :
View solution
Q. Subset of ‘int’ datatype is :
View solution
Q. Type of Conversion in which compiler is unable to convert the datatype implicitly is ?
View solution
Q. Disadvantages of Explicit Conversion are ?
View solution
Q. Correct order of priorities are :
View solution
Q. The correct way of incrementing the operators are :
View solution
Q. Which of the following is/are not Relational operators in C#.NET ?
View solution
Q. Select the relevant output for the set of code :
m = 5;
int y;
1. y = m++;
2. y = ++m;
View solution
Q. Which of the following options is not a Bitwise Operator in C#?
View solution
Q. Which among the following is a conditional operator ?
View solution
Q. Arrange the operators in the increasing order as defined in C#:
!=, ?:, &, ++, &&
View solution
Suggested Topics
Are you eager to expand your knowledge beyond C# programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!