IndiaBIX.com
Arithmetic Aptitude Data Interpretation
Logical Reasoning Verbal Reasoning Non Verbal Reasoning
General Knowledge
Sudoku Number puzzles Missing letters puzzles Logical puzzles Playing cards puzzles Clock puzzles
C Programming C++ Programming C# Programming Java Programming
Microbiology Biochemistry Biotechnology Biochemical Engineering
Civil Engineering Mechanical Engineering Chemical Engineering Networking Database Questions Computer Science Basic Electronics Digital Electronics Electronic Devices Circuit Simulation Electrical Enigneering Engineering Mechanics Technical Drawing
Placement Papers Group Disucssion HR Interview Technical Interview Body Language
Aptitude Test Verbal Ability Test Verbal Reasoning Test Logical Reasoning Test C Programming Test Java Programming Test Data Interpretation Test General Knowledge Test
Data Structures Operating Systems Networking DATABASE Database Basics SQL Server Basics SQL Server Advanced SQL Server 2008 JAVA Core Java Java Basics Advanced Java UNIX Unix File Management Unix Memory Management Unix Process Managemnt C Interview Questions The C Language Basics .NET Interview Questions .NET Framework ADO.NET ASP.NET Software Testing

C# Programming - Datatypes

@ : Home > C# Programming > Datatypes > General Questions

Exercise

  • General Questions
"Hold a true friend with both hands."
- (Proverb)
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?

    int x = 1; 
    float y = 1.1f;
    short z = 1;
    Console.WriteLine((float) x + y * z - (x += (short) y));

A. 0.1B. 1.0
C. 1.1D. 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.



© 2008-2013 by IndiaBIX™ Technologies. All Rights Reserved | Copyright | Terms of Use & Privacy Policy

Contact us: info@indiabix.com     Follow us on twitter!