SlideShare a Scribd company logo
Question C# for Exam Prepared By: Eng Kakada
Page 1
C# Programming :: Datatypes
1. Which of the following statements are correct about data types?
1. If the integer literal exceeds the range of byte, a compilation error will occur.
2. We cannot implicitly convert non-literal numeric types of larger storage size to byte.
3. Byte cannot be implicitly converted to float.
4. A char can be implicitly converted to only int data type.
5. We can cast the integral character codes.
A. 1, 3, 5
B. 2, 4
C. 3, 5
D. 1, 2, 5
2. Which of the following is an 8-byte Integer?
A. Char
B. Long
C. Short
D. Byte
E. Integer
3. Which of the following is NOT an Integer?
A. Char
B. Byte
C. Integer
D. Short
E. Long
4. Which of the following statements is correct?
A. Information is never lost during narrowing conversions.
Question C# for Exam Prepared By: Eng Kakada
Page 2
B. The CInteger() function can be used to convert a Single to an Integer.
C. Widening conversions take place automatically.
D. Assigning an Integer to an Object type is known as Unboxing.
E. 3.14 can be treated as Decimal by using it in the form 3.14F.
5. Which of the following are value types?
1. Integer
2. Array
3. Single
4. String
5. Long
A. 1, 2, 5
B. 1, 3, 5
C. 2, 4
D. 3, 5
6. Which of the following does not store a sign?
A. Short
B. Integer
C. Long
D. Byte
E. Single
7. What is the size of a Decimal?
A. 4 byte
B. 8 byte
C. 16 byte
D. 32 byte
8. What will be the output of the following code snippet when it is executed?
Question C# for Exam Prepared By: Eng Kakada
Page 3
int x = 1;
float y = 1.1f;
short z = 1;
Console.WriteLine((float) x + y * z - (x += (short) y));
A. 0.1 B. 1.0
C. 1.1 D. 11
9. Which of the following statements is correct about the C#.NET code snippet given below?
short s1 = 20;
short s2 = 400;
int a;
a = s1 * s2;
A. A value 8000 will be assigned to a.
B. A negative value will be assigned to a.
C.
During arithmetic if the result exceeds the high or low value of the range the value wraps around till the other
side of the range.
D. An error is reported as widening conversion cannot takes place.
E. An overflow error will be reported since the result of the multiplication exceeds the range of a Short Integer.
10. Which of the following is the correct size of a Decimal datatype?
A. 8 Bytes
B. 4 Bytes
C. 10 Bytes
D. 16 Bytes
E. None of the above.
11. Which of the following statements are correct?
1. We can assign values of any type to variables of type object.
2. When a variable of a value type is converted to object, it is said to be unboxed.
3. When a variable of type object is converted to a value type, it is said to be boxed.
4. Boolean variable cannot have a value of null.
5. When a value type is boxed, an entirely new object must be allocated and constructed.
A. 2, 5
Question C# for Exam Prepared By: Eng Kakada
Page 4
B. 1, 5
C. 3, 4
D. 2, 3
12. Which of the following is the correct ways to set a value 3.14 in a variable pi such that it cannot be modified?
A. float pi = 3.14F;
B. #define pi 3.14F;
C. const float pi = 3.14F;
D. const float pi; pi = 3.14F;
E. pi = 3.14F;
13. Which of the following statements are correct about data types?
1. Each value type has an implicit default constructor that initializes the default value of that type.
2. It is possible for a value type to contain the null value.
3. All value types are derived implicitly from System.ValueType class.
4. It is not essential that local variables in C# must be initialized before being used.
5. Variables of reference types referred to as objects and store references to the actual data.
A. 1, 3, 5
B. 2, 4
C. 3, 5
D. 2, 3, 4
14. Which of the following are the correct way to initialise the variables i and j to a value 10 each?
1. int i = 10; int j = 10;
2. int i, j;
3. i = 10 : j = 10;
4. int i = 10, j = 10;
5. int i, j = 10;
6. int i = j = 10;
A. 2, 4
B. 1, 3
Question C# for Exam Prepared By: Eng Kakada
Page 5
C. 3, 5
D. 4, 5
15. Which of the following statement correctly assigns a value 33 to a variable c?
byte a = 11, b = 22, c;
A. c = (byte) (a + b);
B. c = (byte) a + (byte) b;
C. c = (int) a + (int) b;
D. c = (int)(a + b);
E. c = a + b;
16. Which of the following statements are correct about datatypes in C#.NET?
1. Every datatype is either a value type or a reference type.
2. Value types are always created on the heap.
3. Reference types are always created on the stack.
4. Mapping of every value type to a type in Common Type System facilitates Interoperability in C#.NET.
5. Every reference type gets mapped to a type in Common Type System.
A. 1, 3
B. 2, 5
C. 1, 4
D. 3, 4
17. Which of the following is the correct default value of a Boolean type?
A. 0 B. 1
C. True D. False
E. -1

More Related Content

PDF
Type Conversion in C++ and C# Arithmetic Expressions
PPT
C after correction
PPT
Fundamentals of c language
PDF
The Differences Between C and C++
PDF
Assignment
PDF
201506 CSE340 Lecture 17
PDF
[Question Paper] Network Security (Revised Syllabus) [October / 2012]
Type Conversion in C++ and C# Arithmetic Expressions
C after correction
Fundamentals of c language
The Differences Between C and C++
Assignment
201506 CSE340 Lecture 17
[Question Paper] Network Security (Revised Syllabus) [October / 2012]

What's hot (20)

DOCX
Ppl home assignment_unit2
PDF
201505 CSE340 Lecture 04
DOCX
C language
PDF
201505 CSE340 Lecture 03
DOC
Project 2 the second project involves/tutorialoutlet
PPTX
C Interview Basic Q&A- 1
DOCX
Complete c programming presentation
PDF
Undefined behavior is closer than you think
PDF
Blueprints: Introduction to Python programming
PDF
Pcd201516
PDF
201505 - CSE340 Lecture 01
PPT
Introduction to Python
PDF
Digital Logic & Design
PDF
E9
PDF
C++11 and 64-bit Issues
PDF
Network Security (75:25 Pattern) [QP / April - 2017]
PPT
1 arithmetic
ODP
(2) cpp imperative programming
PDF
Fy secondsemester2016
PDF
Fy secondsemester2016
Ppl home assignment_unit2
201505 CSE340 Lecture 04
C language
201505 CSE340 Lecture 03
Project 2 the second project involves/tutorialoutlet
C Interview Basic Q&A- 1
Complete c programming presentation
Undefined behavior is closer than you think
Blueprints: Introduction to Python programming
Pcd201516
201505 - CSE340 Lecture 01
Introduction to Python
Digital Logic & Design
E9
C++11 and 64-bit Issues
Network Security (75:25 Pattern) [QP / April - 2017]
1 arithmetic
(2) cpp imperative programming
Fy secondsemester2016
Fy secondsemester2016
Ad

Similar to C# programming datatypes (20)

PDF
C++ How to Program Early Objects Version 9th Edition Deitel Test Bank
PDF
C Language MCQ Programming Theory Questions
DOCX
Technical questions
PDF
Redo midterm
PPTX
Java Quiz
PDF
C & C++ 1 WORD MCQ with ANSWER - AI & DS.pdf
PDF
LDCQ paper Dec21 with answer key_62cb2996afc60f6aedeb248c1d9283e5.pdf
PDF
C and CPP Interview Questions
PDF
Computer programming mcqs
PDF
C# programming constructors
PDF
CBSE 12 ip 2018 sample paper
DOC
C Programming
PDF
Introduction to Java Programming Comprehensive Version 10th Edition Liang Tes...
DOCX
Java Questioner for
PPTX
Chap1 language fondamentale of java ( scjp /ocjp)
PDF
Fffgggggfffffffggggggggggggggggggile.pdf
PDF
Java Programming.pdf
PPTX
Memory management of datatypes
DOC
Ques c++ minhnd
DOCX
Consider this code using the ArrayBag of Section 5.2 and the Locat.docx
C++ How to Program Early Objects Version 9th Edition Deitel Test Bank
C Language MCQ Programming Theory Questions
Technical questions
Redo midterm
Java Quiz
C & C++ 1 WORD MCQ with ANSWER - AI & DS.pdf
LDCQ paper Dec21 with answer key_62cb2996afc60f6aedeb248c1d9283e5.pdf
C and CPP Interview Questions
Computer programming mcqs
C# programming constructors
CBSE 12 ip 2018 sample paper
C Programming
Introduction to Java Programming Comprehensive Version 10th Edition Liang Tes...
Java Questioner for
Chap1 language fondamentale of java ( scjp /ocjp)
Fffgggggfffffffggggggggggggggggggile.pdf
Java Programming.pdf
Memory management of datatypes
Ques c++ minhnd
Consider this code using the ArrayBag of Section 5.2 and the Locat.docx
Ad

Recently uploaded (20)

PDF
Web App vs Mobile App What Should You Build First.pdf
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Zenith AI: Advanced Artificial Intelligence
PPTX
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
PPTX
SOPHOS-XG Firewall Administrator PPT.pptx
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
A Presentation on Touch Screen Technology
PDF
Encapsulation theory and applications.pdf
PDF
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
PDF
Hybrid model detection and classification of lung cancer
PDF
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
PPTX
1. Introduction to Computer Programming.pptx
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
NewMind AI Weekly Chronicles - August'25-Week II
Web App vs Mobile App What Should You Build First.pdf
Assigned Numbers - 2025 - Bluetooth® Document
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
Group 1 Presentation -Planning and Decision Making .pptx
Digital-Transformation-Roadmap-for-Companies.pptx
Building Integrated photovoltaic BIPV_UPV.pdf
Zenith AI: Advanced Artificial Intelligence
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
Programs and apps: productivity, graphics, security and other tools
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
SOPHOS-XG Firewall Administrator PPT.pptx
Encapsulation_ Review paper, used for researhc scholars
A Presentation on Touch Screen Technology
Encapsulation theory and applications.pdf
From MVP to Full-Scale Product A Startup’s Software Journey.pdf
Hybrid model detection and classification of lung cancer
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
1. Introduction to Computer Programming.pptx
gpt5_lecture_notes_comprehensive_20250812015547.pdf
NewMind AI Weekly Chronicles - August'25-Week II

C# programming datatypes

  • 1. Question C# for Exam Prepared By: Eng Kakada Page 1 C# Programming :: Datatypes 1. Which of the following statements are correct about data types? 1. If the integer literal exceeds the range of byte, a compilation error will occur. 2. We cannot implicitly convert non-literal numeric types of larger storage size to byte. 3. Byte cannot be implicitly converted to float. 4. A char can be implicitly converted to only int data type. 5. We can cast the integral character codes. A. 1, 3, 5 B. 2, 4 C. 3, 5 D. 1, 2, 5 2. Which of the following is an 8-byte Integer? A. Char B. Long C. Short D. Byte E. Integer 3. Which of the following is NOT an Integer? A. Char B. Byte C. Integer D. Short E. Long 4. Which of the following statements is correct? A. Information is never lost during narrowing conversions.
  • 2. Question C# for Exam Prepared By: Eng Kakada Page 2 B. The CInteger() function can be used to convert a Single to an Integer. C. Widening conversions take place automatically. D. Assigning an Integer to an Object type is known as Unboxing. E. 3.14 can be treated as Decimal by using it in the form 3.14F. 5. Which of the following are value types? 1. Integer 2. Array 3. Single 4. String 5. Long A. 1, 2, 5 B. 1, 3, 5 C. 2, 4 D. 3, 5 6. Which of the following does not store a sign? A. Short B. Integer C. Long D. Byte E. Single 7. What is the size of a Decimal? A. 4 byte B. 8 byte C. 16 byte D. 32 byte 8. What will be the output of the following code snippet when it is executed?
  • 3. Question C# for Exam Prepared By: Eng Kakada Page 3 int x = 1; float y = 1.1f; short z = 1; Console.WriteLine((float) x + y * z - (x += (short) y)); A. 0.1 B. 1.0 C. 1.1 D. 11 9. Which of the following statements is correct about the C#.NET code snippet given below? short s1 = 20; short s2 = 400; int a; a = s1 * s2; A. A value 8000 will be assigned to a. B. A negative value will be assigned to a. C. During arithmetic if the result exceeds the high or low value of the range the value wraps around till the other side of the range. D. An error is reported as widening conversion cannot takes place. E. An overflow error will be reported since the result of the multiplication exceeds the range of a Short Integer. 10. Which of the following is the correct size of a Decimal datatype? A. 8 Bytes B. 4 Bytes C. 10 Bytes D. 16 Bytes E. None of the above. 11. Which of the following statements are correct? 1. We can assign values of any type to variables of type object. 2. When a variable of a value type is converted to object, it is said to be unboxed. 3. When a variable of type object is converted to a value type, it is said to be boxed. 4. Boolean variable cannot have a value of null. 5. When a value type is boxed, an entirely new object must be allocated and constructed. A. 2, 5
  • 4. Question C# for Exam Prepared By: Eng Kakada Page 4 B. 1, 5 C. 3, 4 D. 2, 3 12. Which of the following is the correct ways to set a value 3.14 in a variable pi such that it cannot be modified? A. float pi = 3.14F; B. #define pi 3.14F; C. const float pi = 3.14F; D. const float pi; pi = 3.14F; E. pi = 3.14F; 13. Which of the following statements are correct about data types? 1. Each value type has an implicit default constructor that initializes the default value of that type. 2. It is possible for a value type to contain the null value. 3. All value types are derived implicitly from System.ValueType class. 4. It is not essential that local variables in C# must be initialized before being used. 5. Variables of reference types referred to as objects and store references to the actual data. A. 1, 3, 5 B. 2, 4 C. 3, 5 D. 2, 3, 4 14. Which of the following are the correct way to initialise the variables i and j to a value 10 each? 1. int i = 10; int j = 10; 2. int i, j; 3. i = 10 : j = 10; 4. int i = 10, j = 10; 5. int i, j = 10; 6. int i = j = 10; A. 2, 4 B. 1, 3
  • 5. Question C# for Exam Prepared By: Eng Kakada Page 5 C. 3, 5 D. 4, 5 15. Which of the following statement correctly assigns a value 33 to a variable c? byte a = 11, b = 22, c; A. c = (byte) (a + b); B. c = (byte) a + (byte) b; C. c = (int) a + (int) b; D. c = (int)(a + b); E. c = a + b; 16. Which of the following statements are correct about datatypes in C#.NET? 1. Every datatype is either a value type or a reference type. 2. Value types are always created on the heap. 3. Reference types are always created on the stack. 4. Mapping of every value type to a type in Common Type System facilitates Interoperability in C#.NET. 5. Every reference type gets mapped to a type in Common Type System. A. 1, 3 B. 2, 5 C. 1, 4 D. 3, 4 17. Which of the following is the correct default value of a Boolean type? A. 0 B. 1 C. True D. False E. -1