InterviewSolution
Saved Bookmarks
| 1. |
‘Implicit Conversion’ follows the order of conversion as per compatibility of data type as:(a) float < char < int(b) char < int < float(c) int < char < float(d) float < int < charI had been asked this question in examination.The above asked question is from Type Conversion in Expressions topic in portion Data Types, Variables and Operators of C# |
|
Answer» The CORRECT choice is (B) char < int < float |
|