ASP.NET Interview questions
If you are going to appear for ASP.Net Interview , make sure you practice out the free tests at Skill-Guru
ASP.Net Chart Control Interview questions
And if you are looking for tutorials
|
||||||||||
|
||||||||||
If you are going to appear for ASP.Net Interview , make sure you practice out the free tests at Skill-Guru
ASP.Net Chart Control Interview questions
And if you are looking for tutorials
This post is in continuation of my last post C++ cheat sheet – Part 1. So do not be surprised to see the numbers starting from 21.
21. In the include directive, we do NOT use .h. It is just the name of the identifier <iostream>, <vector>, <fstream> etc. No .h.
22. Default return type of a function is not int. Specify explicitly.
23. By default all the items/members inside a class are private.
24. A non-static member of a class can NOT have an initializer.
Read more…
Here are some notes I prepared in C++ while preparing for the C++ interviews. Hope you find them helpful
1. There are 5 implicit methods defined for a class by the compiler:
2. A constructor that takes just 1 argument is called CONVERSION constructor.
3. New and Delete call constructor and destructor respectively besides allocation and deallocating the memory for the object. However, malloc and free just deal with memory allocation and deallocation respectively. New and Delete can be overloaded whereas malloc and free can’t. Read more…
This is in part 2 of the tutorial Beginner’s Tutorial for programming with ASP.NET – Part 1. Please go through this before you continue further.
Creating the Database Table
Here we will create a table called ‘LoginTable’ in our SQL Server. Please have a look at Figure-22 for the design structure of the table. This table contains two columns ‘Name’ and ‘Password’.

Figure-22: Structure of the ‘LoginTable’
Now we will add the following data in this table Read more…
Introduction
The term .Net gives us a feeling that it is something to do only with the Internet or network related applications. Though .Net provides strong environment for creating such applications, it is also possible to create many other types of applications (Windows form based applications, Console applications, Windows custom controls etc.)
.Net is Microsoft’s development model in which software becomes platform and device independent and data becomes available over the Internet. The .Net framework is the heart of .Net. Central to the .Net framework is its runtime execution environment known as the Common Language Runtime (CLR) and the code running under the control of the CLR is often termed as Managed Code.
In this tutorial we will show how to create a dynamic data driven web application in .Net environment and we also focus on understanding basic ASP.Net components for web application. Read more…
After .Net Interview questions, C# interview questions has been added on skill-guru. Take the test and please give your feedback.