Question
static void Main(string[] args)
{
double a = 345.09;
byte c = (byte) a;
Console.WriteLine(c);
Console.ReadLine();
}
a.
98
b.
89
c.
88
d.
84
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. What is the output for the following set of code ?
Similar Questions
Discover Related MCQs
Q. Which statement is correct about following c#.NET code ?
int[] a= {11, 3, 5, 9, 6};
View solution
Q. What is the advantage of using 2D jagged array over 2D rectangular array?
View solution
Q. Which statement is correct about following set of code ?
int[, ]a={{5, 4, 3},{9, 2, 6}};
View solution
Q. Which is the correct way of defining and initializing an array of 3 integers?
View solution
Q. Choose selective differences between an array in c# and array in other programming languages.
View solution
Q. Which of the following string() method are used to compare two strings with each other?
View solution
Q. Choose the base class for string() method :
View solution
Q. Which of the following statement is correct about a string in C#.NET?
View solution
Q. Correct way to find if contents of two strings are equal ?
View solution
Q. Which of the following statements are correct ?
View solution
Q. Which of these operators can be used to concatenate two or more String objects?
View solution
Q. The Method use to remove white space from string?
View solution
Q. What is the String in C# meant for?
View solution
Q. What does the term ‘immutable’ means in term of string objects?
View solution
Q. To perform comparison operation on strings supported operations are :
View solution
Q. Correct way to convert a string to uppercase using string class method()?
View solution
Q. Which of these methods of class String is used to compare two String objects for their equality?
View solution
Q. Which of these methods is used to compare two strings such that after comparison output returns different integer values as ( 0 for false, 1 for true)?
View solution
Q. Which of these methods of class String is used to check whether a substring exists at the beginning of the particular string?
View solution
Q. Which of these methods returns the string such that some characters which are specified to be removed from the end of strings are removed from string by mentioning the number of characters to be removed?
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!