TechInterviews.com will pay you for your interview questions

TechInterviews.com will pay you for quality submissions. Over the months we’ve developed a pretty good bank of questions and a lot of people volunteered their own. Recruiters and job seekers around the world use TechInterviews.com as good resource for compiling their own interview question banks.

What we will pay for. Quality submission of 25-40 questions with answers provided on any topic related to tech company interviews.

How much will we pay? $5 for a single set of questions with answers. $5 is payable via Paypal or Amazon.com gift certificate.

What will not be paid? Plagiarized submissions. Submissions with incorrect answers. Submissions with questions already covered on TechInterviews.com (hint: use the search engine). Submissions violating copyrights.

Where do I start? Send an e-mail with the question-answer set to moskalyuk@gmail.com. Within a week you will get an answer from me, basically saying yes or no. After some editing job your set will be posted on TechInterviews.com. The question set must stay on the site for a month, and then you will be sent the Paypal payment or Amazon.com gift certificate. Having the set published for a month allows me to make sure it’s not plagiarized and I don’t get nasty lawyer calls for violating someone’s copyright. After a month, check out your inbox, a Paypal payment or Amazon.com gift certificate will arrive at that address.

Can I promote my submission? This site’s revenue is being dependent on advertising. Tell your friends and colleagues about the site, ask them to visit it more, and this way the revenues will be increased.

Disclaimer: I reserve the right to stop this program at any time, which would basically happen when I run out of money, i.e. will have the site bring in less revenue than I pay out to submitters. Currently I can handle 5-6 submissions a month, so be sure to send yours early.

This entry was posted in General. Bookmark the permalink. Post a comment or leave a trackback: Trackback URL.

4 Comments on TechInterviews.com will pay you for your interview questions

  1. Posted 6/14/2004 at 9:28 am | Permalink

    it would be nice if you post interview questions on javascript

  2. Posted 6/15/2004 at 1:10 am | Permalink

    Take a look at http://www.IAdea.com/hire.html for a couple interesting interview questions.

  3. MANISH SONI
    Posted 12/21/2005 at 6:48 am | Permalink

    18. What is Static Class ? Explain by an example.
    Ans:

    19. What is Static member ? Explain by an example.
    Ans:

    20. What is Static function ? Explain by an example.

    21. What is Static constructor ? Explain by an example.

    22. How can we Inherit static variable ? Explain by an example.

    23. How can we Inherit static member ? Explain by an example.

    24. Can we use static function in non-static variable ? Explain by an example.

    25. How can we access static variable ? Explain by an example.

    26. Why main function is static ? Explain by an example.

    29. How will you load dynamic assembly ? How will create assesblies at run time ? Explain by an example.

    30. What is Reflection ? Explain by an example.

    31. If I have more than one version of one assemblies, then how will I use old version (how/where to specify version number?) in my application ? Explain by an example.

    32.How do you create threading in .Net ? What is the namespace for that ? Explain by an example.

    33. What do you mean by Serialize and MarshalByRef ? Explain by an example.

    34. What is the difference between Array and LinkedList ? Explain by an example.

    35. What is Asynchronous call and how it can be implemented using delegates ? Explain by an example.

    36. How to create events for a control? What is custom events ? How to create it ? Explain by an example.

    37. If you want to write your own dot net language, what steps you will you take care ? Explain by an example.

    38. Describe the diffeerence between inline and code behind - which is best in a loosely coupled solution ? Explain by an example.

    39. How dot net compiled code will become platform independent ? Explain by an example.

    40. Without modifying source code if we compile again, will it be generated MSIL again ? Explain by an example.

    41. How does you handle this COM components developed in other programming languages in .Net ? Explain by an example.

    42. How CCW(Com Callable Wrapper) and RCW(Runtime Callable Wrappers) is working ? Explain by an example.

    43. What are the new thee features of COM+ services, which are not there in COM(MTS) ? Explain by an example.

    44. What are the differences between COM architecture and .Net architecture ? Explain by an example.

    45. Can we copy a COM dll to GAC folder ? Explain by an example.

    46. What is Shared and Repeatable Inheritance ? Explain by an example.

    47. Can you explain what inheritance is and an example of when you might use it ? Explain by an example.

    48. How can you write a class to restrict that only one object of this class can be created (Singleton class) ? Explain by an example.

    49. What are virtual destructures ? Explain by an example.

    50. What is close method ? How its different from Finalize and Dispose ? Explain by an example.

    51. What is Boxing and UnBoxing ? Explain by an example.

    52. What is check/uncheck ? Explain by an example.

    53. What is the use of base keyword ? Tell me a practical example for base keyword’s usage ? Explain by an example.

    54. What are the different .Net tools which you used in projects ? Explain by an example.

    55. What will do to avoid prior case ? Explain by an example.

    56. What happens when you try to update data in a dataset in .Net while the record is already deleted in SQL Server as backend ? Explain by an example.

    57. What is concurrency ? How will you avoid concurrency when dealing with dataset ? Explain by an example.

    58. One user deleted one row after that another user through his dataset was trying to update same row. What will happen ? How will you avoid this problem ? Explain by an example.

    59. How do you merge two datasets into the third dataset in a simple manner ? Explain by an example.

    60. If you are executing these statements in commandObject. “Select * from Table1; Select * from Table2″ How you will deal result set ? Explain by an example.

    61. How do you sort a dataset. Explain by an example.

    62. If a dataset contains 100 rows, how to fetch rows between 5 and 15 only ? Explain by an example.

    63. What is the use od Parameter object ? Explain by an example.

    64. How to generate XML from a dataset and vice versa ? Explain by an example.

    65. How do you implement locking concept for dataset ? Explain by an example.

    66. How ASP page works ? Explain by an example.

    67. How ASP.NET page works ? Explain by an example.

    68. What are the contents of cookie ? Explain by an example.

    69. How do you create a permanent cookie ? Explain by an example.

    70. What is ViewState ? What does the “EnableViewState” property do? Whay would I want it on or off ? Explain by an example.

    71. Give an example of what might be best suited to place in the Application_Start and Session_Start subroutines ? Explain by an example.

    72. Describe the role of global.asax ? Explain by an example.

    73. How can you debug your .NET application ? Explain by an example.

    74. How do you deploy your asp.net application ? Explain by an example.

    75. Where do we store our connection string in asp.net application ? Explain by an example.

    76. Explain security types in asp.net ? Explain by an example.

    77. Where do we store our connection string in asp.net application ? Explain by an example.

    78. Explain different Authentication modes in asp.net ? Explain by an example.

    79. How .net has implemented security for web applications ? Explain by an example.

    80. How to do forms authentication in asp.net ? Explain by an example.

    81. Explain authentication levels in .net ? Explain by an example.

    82. Explain authorization levels in .net ? Explain by an example.

    83. How can you debug an ASP page, without touching the code ? Explain by an example.

    84. How can you handle Exceptions in Asp.net ? Explain by an example.

    85. How can you handle UnManaged Code Exceptions in Asp.net ? Explain by an example.

    86. Which is the namespace used to write error message in event Lof File ? Explain by an example.

    87. What are the Page level transaction and class level transaction ? Explain by an example.

    88. What are different transaction options ? Explain by an example.

    89. What is the namespace for encryption ? Explain by an example.

    90. What is the difference between application and cache variables ? Explain by an example.

    91. What is the difference between control and component ? Explain by an example.

    92. You have defined one page_load event in aspx page and same page_load event in code behind, how will program run ? Explain by an example.

    93. Where would you use an IHttpModule, and what are the limitations of any approach you might take in implementing one ? Explain by an example.

    94. Can you edit data in the Repeater control ? Which template must you provide, in order to display data in Repeater control ? How can you provide an alternating color scheme in a repeater control ? What property must you set, and what method must you call in your code, in order to bind the data from some source to the repeater ? Explain by an example.

    95. In what order do the events of an ASPX page executes. As a developer is it important to understand these events ? Explain by an example.

    96. How would you get ASP.NET running in Apache web servers? Why would you even do this ? Explain by an example.

    97. What tags do you need to add within the asp:datagrid tags to bind columns manualy ? Explain by an example.

    98. How can we create pie chart in asp.net ? Explain by an example.

    99. What do you understand by Asynchronous web service ? Explain by an example.

    100. What are the events fired when web service called ? Explain by an example.

    101. How will do transaction in web services ? Explain by an example.

    102. How does SOAP transport happen and what is the role of HTTP in it ? How you can access a webservice using soap ? Explain by an example.

    103. What are the different formatters can be used in both Binary and SOAP ? Explain by an example.

    104. How will you expose/publish a webservice ? Explain by an example.

    105. What is disco file ? Explain by an example.

    106. What’s the attribute for webservice method ? What is the namespace for creating webservice ? Explain by an example.

    107. Can you pass SOAP messages through remoting ? Explain by an example.

    108. Explain web client class and its methods ? Explain by an example.

    109. What is flow of remoting ? Explain by an example.

    110. Explain the concept of data island ? Explain by an example.

    111. How to use XML DOM model on client using JavaScript ? Explain by an example.

    112. What are the ways to create a tree view control using XML, XSL and JavaScript ? Explain by an example.

    113. What is XPathNavigator ? Explain by an example.

    114. What is the use of Template in XSL ? Explain by an example.

    115. What is “Well Formed XML” and “Valid XML” ? Explain by an example.

    116. How will you do SubString in XSL ? Explain by an example.

    117. How do you deal sorting columns dynamically in XML ? Explain by an example.

    118. What is “Async” property of XML ? Explain by an example.

    119. What is XPath query ? Explain by an example.

    120. Explain differences between Element and Node. Explain by an example.

    121. What is CDATA section ? Explain by an example.

    122. Explain definition and differences between DOM and SAX ? Explain by an example.

    123. What is GetElementbyname method will do ? Explain by an example.

    124. What will selectnode method will do ? Explain by an example.

    125. What is valid XML document ? Explain by an example.

    126. What is well formed XML document ? Explain by an example.

    127. What is the difference between XmlDocument and XmlDataDocument ? Explain by an example.

    128. Can I replace my Sqlserver with XML files and how about handling the same ? Explain by an example.

    129. Write syntax to serialize class using XML Serializer ? Explain by an example.

    130. How can we configure the sites in web server(IIS) ? Explain by an example.

    131. Explain advantages of IIS 6.0 ? Explain by an example.

    132. How will you do Redo and Undo in TextBox control ? Explain by an example.

    133. How to implement DataGrid in .Net ? How would you make a combo-box appear in one column of a DataGrid ? What are the ways to show data grid inside a data grid for a master details type of tables ? If we write any code for DataGrid methods. what is the access specifier used for that methods in the code behind file and why ? Explain by an example.

    134. How can we create Tree control in asp.net ? Explain by an example. Explain by an example.

    135. Write a program in C# to find the angle between the hours and minutes in a clock ? Explain by an example.

    136. Write a program to create a user control with name and surname as data members and login as method and also the code to call it. Explain by an example.

    137. How can you read 3rd line from a text file ? Explain by an example.

    138. Explain the code behind wors and contrast that using the inline style. Explain by an example.

    139. Explain different types of HTML, Web and server controls. Explain by an example.

    140. What are the differences between user control and server control ? Explain by an example.

    141. How server form post-back works ? Explain by an example.

    142. Can the action attribute of a server-side tag be set to a value and if not how can you possibly pass data from a form page to a subsequent page ? Explain by an example.

    143. How would ASP and ASP.NET apps run at the same time on the same server ? Explain by an example.

    144. What are good ADO.NET object to replace to ADO Recordset object. Explain by an example.

    145. Explain the differences between Server-side code and Client-side code. Explain by an example.

    146. What type of code(server or client) is found in a Code-Behind class ? Explain by an example.

    147. Should validation (did the user enter a real date) occur server-side or client-side ? Why ? Explain by an example.

    148. What does the “EnableViewState” property do ? Why would I want it on or off ? Explain by an example.

    149. What is the difference between Server.Transfer and response.Redirect ? Why ? Explain by an example.

    150. Can you give an example of when it would be appropriate to use a web service as opposed to a non-serviced .Net component ? Explain by an example.

    151. Let’s say I have an existing application written using VB6 and this application utilizes Windows 2000 COM+ transaction services. How would you approach migrating this application to .Net ? Explain by an example.

    152. If I am developing an application that must accomodate multiple security levels though secure login and my ASP.NET web application is spanned across three web-servers (using round-robin load balancing). What would be the best approach to maintain login-in state for the users ? Explain by an example.

    153. What are ASP.Net web forms ? How is this technology different than what is available though ASP(1.0-3.0) ? Explain by an example.

    154. How does VB.Net achieve polymorphism ? Explain by an example.

    155. How does C# achieve polymorphism ? Explain by an example.

    156. Can you explain what is Inheritance and an example in VB.Net and C# of when you might use it ? Explain by an example.

    157. Describe difference between inline and code-behind ? Explain by an example.

    158. What is loosely coupled solution in .Net ? Explain by an example.

    159. What is diffgram ? Explain by an example.

    160. Where would you use an iHTTPModule and what are the limitations of any approach you might take in implementing one ? Explain by an example.

    161. What are the Advantages and DisAdvantages of viewstate ? Explain by an example.

    162. Describe session handling in a webform, how does it work and what are the limitations ? Explain by an example.

    163. How would you get ASP.Net running in Apache web servers ? Explain it’s limitations. Explain by an example.

    164. What is MSIL and why should my developers need an appreciation of it if at all ? Explain by an example.

    165. Which methos do you invoke on the DataAdapter control to load your generated dataset with data ? Explain by an example.

    166. Can you edit data in Repeater control ? How ? Explain by an example.

    167. Which template must you provide, in order to display data in a Repeater control ? Explain by an example.

    168. How can you provide an alternating color scheme in a Repeater control ? Explain by an example.

    169. What property must you set, and what method must you call in your code, in order to bind the data from some data source to the repeater control ? Explain by an example.

    170. What base class do all web forms inherit from ? Explain by an example.

    171. What method do you use to explicitly kill a user’s session ? How ? Explain by an example.

    172. How do you turn off cookies for one page in your site ? Give an example.

    173. Which two properties are on every validation control ? Explain by an example.

    174. What tags do you need to add within the asp:datagrid tags to bind columns manually ? Give an example.

    175. How do you create a permanent cookie ? Explain by an example.

    176. What tag do you use to add a hyperlink column to the dataGrid ? Explain by an example.

    177. What is the standard you use to wrap up a call to a Web Service ? Explain by an example.

    178. Which method do you use to redirect the user to another page without performing a round trip to the client ? How ? Explain by an example.

    179. What is the transport protocol you use to call a Seb Service SOAP ? Explain by an example.

    180. What does WSDL stand for ? Explain by an example.

    181. What property do you have to set to tell the grid which page to go to when using the Pager object? Explain by an example.

    182. Where on the Internet would you look for Web Services ? Explain by an example.

    183. What tags do you need to add within the asp:datagrid tags to bind columns manually? How ? Explain by an example.

    184. Which property on a Combo Box do you set with a column name, prior to setting the DataSource, to display data in the combo box ? Explain by an example.

    185. How is a property designated as read-only ? Explain by an example.

    186. Which control would you use if you needed to make sure the values in two different controls matched ? Explain by an example.

    187. To test a Web Service you must create a windows application or web application to consume this service ? It is True/False ? Explain by an example.

    188. How many classes can a single .Net DLL contain ? Explain by an example.

    189. What are good ADO.NET object(s) to replace the ADO Recordset object ? Explain by an example.

    190. On order to get assembly info which namespace we should import ? Explain by an example.

    191. How do you declare a static variable and what is its lifetime ? Give an example.

    192. How do you get records number from 5 to 15 in a dataset of 100 records ? Write code.

    193. How do you call and execute a Stored Procedure in .NET ? Give an example.

    194. What is the maximum length of a varchar in SQL Server ? Explain by an example.

    195. How do you define an integer in SQL Server ? Explain by an example.

    196. How do you separate business logic while creating an ASP.NET application ? Explain by an example.

    197. If there is a calendar control to be included in each page of your application, and and we do not intend to use the Microsoft-provided calendar control, how do you develop it ? Do you copy and paste the code into each and every page of your application ? Explain by an example.

    198. How do you debug an ASP.NET application ? Explain by an example.

    199. How do you deploy an ASP.NET application ? Explain by an example.

    200. Explain similarities and differences between Java and .NET ? Explain by an example.

    201. Specify the best ways to store variables so that we can access them in various pages of ASP.NET application ? Explain by an example.

    202. What are the XML files that are important in developing an ASP.NET application ? Explain by an example.

    203. What are the XML files that are important in developing an ASP.NET application ? Explain by an example.

    204. What is XSLT and what is its use ? Explain by an example.

    205. How many objects are there in ASP ? Explain by an example.

    206. Which DLL file is needed to be registered for ASP ? Explain by an example.

    207. Is there any inbuilt paging (for example shoping cart, which will show next 10 records without refreshing) in ASP ? How will you do pating ? Explain by an example.

    208. What does Server.MapPath do ? Explain by an example.

    209. Name atleast three methods of response object other than Redirect. Explain by an example.

    210. Name atleast two methods of response object other than Transfer. Explain by an example.

    211. What is State ? Explain by an example.

    212. Explain differences between ADO and DAO. Explain by an example.

    213. How many types of cookies are there ? Explain by an example.

    214. Tell few steps for optimizing (for speed and resource) ASP page/application. Explain by an example.

    215. Which command using Query Analyzer will give you the version of SQL Server and Operating System ? Explain by an example.

    216. Using query analyzer, name 3 ways you can get an accurate count of the number of records in a table. Explain by an example.

    217. What is the purpose of using COLLATE in a query ? Explain by an example.

    218. What is one of the first things you would do to increase performance of a query ? For example, a boss tells you that “a query that ran yesterday took 30 seconds, but today it takes 6 minutes” ? Explain by an example.

    219. What is an execution plan ? When would you use it ? How would you view the execution plan ? Explain by an example.

    220. What is the STUFF function and how does it differ from the REPLACE function ? Explain by an example.

    221. What does it mean to have quoted_identifier on ? What are the implications of having it off? Explain by an example.

    222. What are the different type of replication ? How are they used ? Explain by an example.

    223. What is the difference between a Local temporary table and a Global temporary table ? How is each one used ? Explain by an example.

    224. What are cursors ? Name four type of cursors and when each one would be applied ? Explain by an example.

    225. What is the purpose of UPDATE STATISTICS ? Explain by an example.

    226. How do you use DBCC statements to monitor various aspects of a SQL Server installation ? Explain by an example.

    227. How do SQL Server 2000 and XML linked ? What is SQL Server agent ? Explain by an example.

    228. What is referential integrity and how can we achieve it ? Explain by an example.

    229. What is indexing ? Explain by an example.

    230. Explain differences between server.transfer and server.execute method ? Explain by an example.

    231. What is de-normalization ? When do you do it and how ? Explain by an example.

    232. Explain features of SQL Server like Scalibility, Availability, Integration with Internet. Explain by an example.

    233. What is DataWarehousing ? Explain by an example.

    234. What is OLAP ? Explain by an example.

    235. How do we upgrade SQL Server 7.0 to 2000 ? Explain by an example.

    236. What is job ? Explain by an example.

    237. What is Task ? Explain by an example.

    238. How would you update the rows which are divisible by 10, given a set of numbers in column ? Explain by an example.

    239. How do you find the error, how can you know the number of rows affected by last SQL Statement ? Explain by an example.

    240. What are the advantages/disadvantages of viewstate ? Explain by an example.

    241. Describe session handling in webform. How does it work and what are the limits ? Explain by an example.

    242. Explain differences between framework 1.0 and framework 1.1 Explain by an example.

    243. If we write any code for dataGrid methods, what is the access specifier used for that methods in the code behind file and why and how? Give an example. Explain by an example.

    244. What is the use of trace utility ? Explain by an example.

    245. What are the differences between User control and Web control and Custom control ? Explain by an example.

    246. If I have more than one version of one assemblies, then how will I use old version in my application ? Give an example.

    247. How do you create threadinf in .Net ? Explain by an example.

    248. Describe the Managed Execution Process. Explain by an example.

    249. What is Active Directory? What is the namespace used to access the Microsoft Active Directories ? Explain by an example.

    250. What are Interop Services ? Explain by an example.

    251. How does you handle this COM components developed in other programming languages in .NET? Explain by an example.

    252. How will you register COM+ services ? Explain by an example.

    253. If you know some good written/interview questions with/without answer then please send me on following topics:

    C LANGUAGE
    C++
    DATA STRAUCTURE
    OPERATING SYSTEM
    COMPUTER ARCHITECTURE
    SYSTEM ANALYSIS AND DESIGNE
    SOFTWARE ENGINEERING
    DATABASE MANAGEMENT SYSTEM
    SQL SERVER 2000
    ORACLE
    C#
    VB.NET
    ASP.NET

  4. RamaRao
    Posted 1/2/2007 at 5:21 am | Permalink

    How do you merge two datasets into the third dataset in a simple manner ? Explain by an example.

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*