By admin | December 21, 2006
Explain the life cycle of an ASP .NET page.
Explain the .NET architecture.
What are object-oriented concepts?
How do you create multiple inheritance in c# and .NET?
When is web.config called?
Posted in .NET, Web dev |
By admin | February 4, 2006
State True or False: If you set AutoGenerateColumns=True and still provide custom column definitions, the DataGrid will render both
TrueFalse
The data from an XSL Transform with XmlReader can be returned in one of the following ways
objReader = objXslT.Transform(objNav, nothing)objXslT.Transform(objNav, nothing)objReader = objXslT.Transform(objNav, nothing, objWriter)objXslT.Transform(objNav, nothing, objWriter)
Pick the command line that would result in the C# compiler [...]
Posted in .NET, Web dev |
By admin | February 3, 2006
A structure in C# can be derived from one or more
classinterfacebothnone
State True or False: Static method cannot be overridden
TrueFalse
The Equivalent HTML Control for the <input type=”button”> tag is
HtmlInputHtmlButtonHtmlPushButtonHtmlInputButton
The Equivalent Html Control for the <input type=”checkbox”> tag is
HtmlCheckBoxHtmlInputChkBoxHtmlInputCheckBoxHtmlInputTypeChkBox
Posted in .NET, Web dev |
By admin | February 2, 2006
Which of the following languages is NOT included in the default .NET Framework installation?
C#VB.NETJScript.NETVBScript.NET
What are the different types of serialization supported in .NET Framework
XmlSerializerSoapFormatterXPathNavigator HttpFormatter
The CLR uses which format for assembly version numbers
Major:Minor:Revision:BuildMajor:Build:Minor:RevisionMajor:Revision:Minor:BuildMajor:Minor:Build:Revision
What tool is used to manage the GAC?
GacMgr.exeGacSvr32.exeGacUtil.exeRegSvr.exe
Posted in .NET, Web dev |
By admin | January 31, 2006
How did you first get interested in Computer Science?
What do you like to do best related to computers now (programming, administration, testing, manage projects, etc)? What is it about that area that you specifically enjoy?
What is your strongest programming language (Java, ASP, C, C++, VB, HTML,C#, etc.)?
When is the last time you [...]
By admin | January 28, 2006
What is a static class?
What is static member?
What is static function?
What is static constructor?
How can we inherit a static variable?
How can we inherit a static member?
Can we use a static function with a non-static variable?
How can we access static variable?
Why main function is static?
By admin | August 18, 2005
Reader Vinay Solanki faced these questions from Microsoft recruiter, who apparently was hiring straight out of college.
How did you first get interested in Computer Science?
What do you like to do best related to computers now (programming, administration, testing, manage projects, etc)? What is it about that area that you specifically enjoy?
What is your strongest [...]
These questions are asked by Microsoft at one of their international locations.
What is an interface and what is an abstract class? Please, expand by examples of using both. Explain why.
What is serialization, how it works in .NET?
What should one do to make class serializable?
What exactly is being serialized when you perform serialization?
Posted in .NET, Web dev |
A reader recently interviewed for C# position at Wipro and sent the following questions:
Difference between directcast and ctype.
An example of a ctype and directcast.
ctype(123.34,integer) - should it throw an error? Why or why not?
directcast(123.34,integer) - should it throw an error? Why or why not?
Difference between a sub and a function.
By admin | February 24, 2005
Submitter said questions were asked in a US company hiring a Web developer.
Explain the .NET architecture.
How many languages .NET is supporting now? - When .NET was introduced it came with several languages. VB.NET, C#, COBOL and Perl, etc. The site DotNetLanguages.Net says 44 languages are supported.
How is .NET able to support multiple languages? - a [...]
Posted in .NET, Web dev |
By admin | December 18, 2004
The following set was set in by a reader of the site:
Following are the questions from an interview I attended for in C#, ASP.NET, XML and Sql Server. I will try to add some more as soon as I recollect. Hope these questions will be useful for people attending interviews in this area.
What is the [...]
By admin | November 2, 2004
Useful for preparation, but too specific to be used in the interview.
Is it possible to inline assembly or IL in C# code? - No.
Is it possible to have different access modifiers on the get/set methods of a property? - No. The access modifier on a property applies to both its [...]