What is significance of ” * ” ?
The symbol “*” tells the computer that you are declaring a pointer. Actually it depends on context. In a statement like int *ptr; the ‘*’... Read more »
The symbol “*” tells the computer that you are declaring a pointer. Actually it depends on context. In a statement like int *ptr; the ‘*’... Read more »
A data structure is a group of data elements grouped together under one name. These data elements, known as members, can have different types and different lengths.... Read more »
Yes, a pointer is a variable and can be used as an element of a structure and as an attribute of a class in some programming languages such as C++, but not Java.... Read more »
There are two main parts, variable identifier and data type and the third type is optional which is type qualifier like signed/unsigned. Read more »
Memory is reserved using data type in the variable declaration. A programming language implementation has predefined sizes for its data types. For example, in C#... Read more »
Sign of the number is the first bit of the storage allocated for that number. So you get one bit less for storing the number. For example if you are storing an 8-bit... Read more »
Precision refers the accuracy of the decimal portion of a value. Precision is the number of digits allowed after the decimal point. Read more »
NULL can be value for pointer type variables. VOID is a type identifier which has not size. NULL and void are not same. Example: void* ptr = NULL; Read more »
STACK follows LIFO. Thus the item that is first entered would be the last removed. In array the items can be entered or removed in any order. Basically each member... Read more »
Visual Basic .NET has many new and improved language features — such as inheritance, interfaces, and overloading that make it a powerful object-oriented programming... Read more »
Using pagination option in DataGrid control. We have to set the number of records for a page, then it takes care of pagination by itself. Read more »
Client side validation is done by default. Server side validation is also possible. We can switch off the client side and server side can be done. Read more »
We can Validate the controls in an ASP.NET page by using special validation controls that are meant for this. We have Range Validator, Email Validator. Read more »
The cursor position is maintained when the page gets refreshed due to the server side validation and the page gets refreshed. Read more »
A language should comply with the Common Language Runtime standard to become a .NET language. In .NET, code is compiled to Microsoft Intermediate Language (MSIL... Read more »