An Array is a collection of values of a similar data type. Array can be declared as – <data type>[] […]
Updated on Kisan Patel
The do…while loop statement is a post-test loop, which means it executes a statement first then checks if the condition […]
Updated on Kisan Patel
The while loop statement executes until the while condition is true. The basic structure of a while loop is- while(condition) […]
Updated on Kisan Patel
The for loop statement is one of the most widely used control statement. The for loop executes a statement in […]
Updated on Kisan Patel
The switch statement executes one or more of a series of cases, based on the value of a controlling expression. […]
Updated on Kisan Patel
The if…else statement allows you to test whether or not a certain condition is fulfilled. If the condition is fulfilled, […]
Updated on Kisan Patel
The dynamic data type is a new data type that supports the late binding. This implies that all the member […]
Updated on Kisan Patel
Checked and Unchecked statements are used to check the memory overflow exceptions. The checked keyword is used to check the […]
Updated on Kisan Patel
The null coalescing operator ?? is mostly used with the nullable value types and reference types. int? i = null; […]
Updated on Kisan Patel
You can assign the normal range of values as well as a null value to a nullable type. These values […]
Updated on Kisan Patel