Hi Friends , I have attached Dot Net Interview Questions List below.
500+ Dot Net Interview Questions List |
1: Basic .NET Framework |
1. What is an IL? |
2. What is a CLR? |
3. What is CTS? |
4. What is a CLS (Common Language Specification)? |
5. What is a Managed Code? |
6. What is a Assembly? |
7. What are the different types of Assembly? |
8. What is NameSpace? |
9. What is Difference between NameSpace and Assembly? |
10. If you want to view an Assembly how do you go about it? |
11. What is Manifest? |
12. Where is version information stored of an assembly? |
13. Is versioning applicable to private assemblies? |
14. What is GAC? |
15. what is the concept of strong names? |
16. How to add and remove an assembly from GAC? |
17. What is Delay signing? |
18. What is garbage collection? |
19. Can we force garbage collector to run? |
20. What is reflection? |
21. What are different types of JIT? |
22. What are Value types and Reference types? |
23. What is concept of Boxing and Unboxing ? |
24. What is the difference between VB.NET and C#? |
25. what is the difference between System exceptions and Application exceptions? |
26. What is CODE Access security? |
27. What is a satellite assembly? |
28. How to prevent my .NET DLL to be decompiled? |
29. what is the difference between Convert.toString and .toString () method? |
30. What is Native Image Generator (Ngen.exe)? |
31. If we have two version of same assembly in GAC how do we make a choice? |
32. What is CodeDom? |
2: NET Interoperability |
33. How can we use COM Components in .NET? |
34. We have developed the COM wrapper do we have to still register the COM? |
35. How can we use .NET components in COM? |
36. How can we make Windows API calls in .NET? |
37. When we use windows API in .NET is it managed or unmanaged code? |
38. What is COM? |
39. What is Reference counting in COM? |
40. Can you describe IUKNOWN interface in short? |
41. Can you explain what DCOM is? |
42. How do we create DCOM object in VB6? |
43. How to implement DTC in .NET? |
44. How many types of Transactions are there in COM + .NET? |
45. How do you do object pooling in .NET? |
46. What are types of compatibility in VB6? |
47. What is equivalent for regsvr32 exe in .NET? |
3: Threading |
48. What is Multi-tasking? |
49. What is Multi-threading? |
50. What is a Thread? |
51. Did VB6 support multi-threading? |
52. Can we have multiple threads in one App domain? |
53. Which namespace has threading? |
54. What does Address Of operator do in background? |
55. How can you reference current thread of the method? |
56. what is Thread.Sleep () in threading? |
57. How can we make a thread sleep for infinite period? |
58. What is Suspend and Resume in Threading? |
59. What the way to stop a long running thread? |
60. How do I debug thread? |
61. What is Thread.Join () in threading? |
62. What are Daemon threads and how can a thread be created as Daemon? |
63. How is shared data managed in threading? |
64. Can we use events with threading? |
65. How can we know a state of a thread? |
66. What is use of Interlocked class ? |
67. What is a monitor object? |
68. What are wait handles? |
69. What is ManualResetEvent and AutoResetEvent? |
70. What is Reader Writer Locks? |
71. How can you avoid deadlock in threading? |
72. What is the difference between thread and process? |
4: Remoting and Webservices |
73. What is an application domain? |
74. What is .NET Remoting? |
75. Which class does the remote object has to inherit? |
76. what are two different types of remote object creation mode in .NET ? |
77. Describe in detail Basic of SAO architecture of Remoting? |
78. What are the situations you will use singleton architecture in remoting? |
79. What is fundamental of published or precreated objects in Remoting? |
80. What are the ways in which client can create object on server in CAO model? |
81. Are CAO stateful in nature? |
82. To create objects in CAO with ‘new’ keyword what should be done? |
83. Is it a good design practice to distribute the implementation to Remoting Client? |
84. What are LeaseTime, SponsorshipTime, RenewonCallTime and LeaseManagerPollTime? |
85. Which config file has all the supported channels/protocol? |
86. How can you specify remoting parameters using Config files? |
87. Can Non-Default constructors be used with Single Call SAO? |
88. How can we call methods in remoting asynchronously? |
89. What is Asynchronous One-Way Calls? |
90. What is marshalling and what are different kinds of marshalling? |
91. What is ObjRef object in remoting? |
92. What is a Web Service? |
93. What is UDDI? |
94. What is DISCO? |
95. What is WSDL? |
96. What the different phase/steps of acquiring a proxy object in Web service? |
97. What the different phase/steps of acquiring a proxy object in Web service? |
98. What is file extension of Web services? |
99. Which attribute is used in order that the method can be used as WebService? |
100. What are the steps to create a web service and consume it? |
101. Do webservice have state? |
5: Caching Concepts |
102. What is an application object? |
103. what is the difference between Cache object and application object? |
104. How can get access to cache object? |
105. What are dependencies in cache and types of dependencies? |
106. Can you show a simple code showing file dependency in cache? |
107. What is Cache Callback in Cache? |
108. What is scavenging? |
109. What are different types of caching using cache object of ASP.NET? |
110. How can you cache different version of same page using ASP.NET cache object? |
111. How will implement Page Fragment Caching? |
112. Can you compare ASP.NET sessions with classic ASP? |
113. Which are the various modes of storing ASP.NET session? |
114. Is Session_End event supported in all session modes? |
115. What are the steps to configure StateServer Mode? |
116. What are the steps to configure SQLServer mode? |
117. Where do you specify session state mode in ASP.NET? |
118. What are the other ways you can maintain state? |
119. What are benefits and Limitation of using Hidden fields? |
120. What is ViewState? |
121. Does the performance for viewstate vary according to User controls? |
122. What are benefits and Limitation of using Viewstate for state management? |
123. How can you use Hidden frames to cache client data ? |
124. What are benefits and limitations of using Hidden frames? |
125. What are benefits and limitations of using Cookies? |
126. What is Query String and What are benefits and limitations of using Query Strings? |
127. What is Absolute and Sliding expiration? |
128. What is cross page posting? 93 |
129. How do we access viewstate value of this page in the next page ? |
130. Can we post and access view state in another application? |
131. What is SQL Cache Dependency in ASP.NET 2.0? |
132. How do we enable SQL Cache Dependency in ASP.NET 2.0? |
133. What is Post Cache substitution? |
134. Why do we need methods to be static for Post Cache substitution? |
6: OOPS |
135. What is Object Oriented Programming? |
136. What is a Class? |
137. What is an Object? |
138. What is the relation between Classes and Objects? |
139. What are different properties provided by Object-oriented systems? |
140. How can we achieve inheritance in VB.NET? |
141. what are abstract classes? |
142. What is a Interface? |
143. What is difference between abstract classes and interfaces? |
144. What is a delegate? |
145. What are Events? |
146. Do events have return type. |
147. Can events have access modifiers? |
148. Can we have shared events? |
149. what is shadowing? |
150. What is the difference between Shadowing and Overriding? |
151. what is the difference between delegate and events? |
152. If we inherit a class do the private variables also get inherited? |
153. What is the different accessibility levels defined in .NET? |
154. Can you prevent a class from overriding? |
155. what is the use of “Must inherit” keyword in VB.NET? |
156. Do interface have accessibility modifier. |
157. What are similarities between Class and structure? |
158. What is the difference between Class and structure’s? |
159. What does virtual keyword mean? |
160. What are shared (VB.NET)/Static(C#) variables? |
161. What is Dispose method in .NET? |
162. What is the use of “Overrides” and “Overridable” keywords? |
163. Where are all .NET Collection classes located? |
164. What is ArrayList? |
165. What is a HashTable? |
166. What are queues and stacks? |
167. What is ENUM? |
168. What is nested Classes? |
169. What is Operator overloading in .NET? |
170. For the below code which constructor will fire first? |
171. What is the significance of Finalize method in .NET? |
172. How can we suppress a finalize method? |
173. What is the use of DISPOSE method? |
174. How do I force the Dispose method to be called automatically, as clients can forget to call Dispose method? |
175. In what instances you will declare a constructor to be private? |
176. Can we have different access modifiers on get/set methods of a property ? |
177. If we write a goto or a return statement in try and catch block will the finally block execute? |
178. What is Indexer? |
179. Can we have static indexer in C#? |
180. Can two catch blocks be executed? |
181. What is the difference between System.String and System.StringBuilder classes? |
7: ASP.NET |
182. What’ is the sequence in which ASP.NET events are processed? |
183. In which event are the controls fully loaded? |
184. How can we identify that the Page is Post Back? |
185. How does ASP.NET maintain state in between subsequent request? |
186. What is event bubbling? |
187. How do we assign page specific attributes? |
188. How do we ensure viewstate is not tampered? |
189. What is the use of @ Register directives? |
190. What is the use of Smart Navigation property? |
191. What is AppSetting Section in “Web.Config” file? |
192. Where is View State information stored? |
193. what is the use of @ Output Cache directive in ASP.NET. |
194. How can we create custom controls in ASP.NET? |
195. How many types of validation controls are provided by ASP.NET? |
196. Can you explain “AutoPostBack”? |
197. How can you enable automatic paging in Data Grid? |
198. What is the use of “GLOBAL.ASAX” file? |
199. What is the difference between “Web.config” and “Machine.Config”? |
200. What is a SESSION and APPLICATION object? |
201. What is the difference between ‘Server.Transfer’ and ‘response. Redirect’ ? |
202. What is the difference between Authentication and authorization? |
203. what is impersonation in ASP.NET? |
204. Can you explain in brief how the ASP.NET authentication process works? |
205. What are the various ways of authentication techniques in ASP.NET? |
206. How does authorization work in ASP.NET? |
207. What is difference between Data grid, Datalist, and repeater? |
208. From performance point of view, how do they rate? |
209. What is the method to customize columns in Data Grid? |
210. How can we format data inside Data Grid? |
211. How to decide on the design consideration to take a Data grid, data list, or repeater? |
212. Difference between ASP and ASP.NET? |
213. What are major events in GLOBAL.ASAX file? |
214. What order they are triggered? |
215. Do session use cookies? |
216. How can we force all the validation control to run? |
217. How can we check if all the validation control are valid and proper? |
218. If client side validation is enabled in your Web page, does that mean server side code is not run. |
219. Which JavaScript file is referenced for validating the validators at the client side? |
220. How to disable client side script in validators? |
221. How can I show the entire validation error message in a message box on the client side? |
222. You find that one of your validations is very complicated and does not fit in any of the |
223. validators, what will you do? |
224. What exactly happens when ASPX page is requested from a browser? |
225. How can we kill a user session? |
226. How do you upload a file in ASP.NET? |
227. How do I send email message from ASP.NET? |
228. What are different IIS isolation levels? |
229. ASP used STA threading model, what is the threading model used for ASP.NET. |
230. What is the use of <%@ page aspcompat=true %> attribute? |
231. Explain the differences between Server-side and Client-side code? |
232. Can you explain Forms authentication in detail? |
233. How do I sign out in forms authentication? |
234. If cookies are not enabled at browser end does form Authentication work? |
235. How to use a checkbox in a data grid? |
236. What are the steps to create a windows service in VB.NET? |
237. What is the difference between “Web farms” and “Web garden”? |
238. How do we configure “Web Garden”? |
239. What is the main difference between Grid layout and Flow Layout? |
240. What’s the difference between trace and debug in ASP.NET? |
241. How do you enable tracing in on an ASP.NET page? |
242. Which namespace is needed to implement debug and trace ? |
243. Can you explain the concept of trace listener? |
244. What are trace switches? |
8: NET Architecture |
245. What are design patterns? |
246. What is the difference between Factory and Abstract Factory Patterns? |
247. What is MVC pattern? |
248. How can we implement singleton pattern in .NET? |
249. How do you implement prototype pattern in .NET? |
250. What are the situations you will use a Web Service and Remoting in projects? |
251. Can you give a practical implementation of FAÇADE patterns? |
252. How can we implement observer pattern in .NET? |
253. What is three-tier architecture? |
254. Have you ever worked with Microsoft Application Blocks, if yes then which? |
255. What is Service Oriented architecture? |
256. What are different ways you can pass data between tiers? |
257. What is Windows DNA architecture? |
258. What is aspect oriented programming? |
9: ADO.NET |
259. What is ADO.net? |
260. What is the namespace in which .NET has the data functionality class? |
261. Can you give an overview of ADO.NET architecture? |
262. What are the two fundamental objects in ADO.NET? |
263. What is difference between dataset and data reader? |
264. What are major difference between classic ADO and ADO.NET? |
265. What is the use of connection object? |
266. What is the use of command objects? |
267. What is the use of data adapter? |
268. What are basic methods of Data adapter? |
269. What is Dataset object? |
270. What are the various objects in Dataset? |
271. How can we connect to Microsoft Access, FoxPro, and Oracle etc? |
272. How do we connect to SQL SERVER, which namespace do we use? |
273. How do we use stored procedure in ADO.NET and how do we provide parameters to the stored procedures? |
274. How can we force the connection object to close after my data reader is closed? |
275. I want to force the data reader to return only schema of the data store rather than data. |
276. How can we fine-tune the command object when we are expecting a single row? |
277. Which is the best place to store connection string in .NET projects? |
278. What are the steps involved to fill a dataset? |
279. What are the various methods provided by the dataset object to generate XML? |
280. How can we save all data from dataset? |
281. How can we check that some changes have been made to dataset since it was loaded? |
282. How can we add/remove row is in “Data Table” object of “Dataset”? |
283. What is basic use of “Data View”? |
284. What is the difference between “Dataset” and “Data Reader” ? |
285. How can we load multiple tables in a Dataset? |
286. How can we add relation between tables in a Dataset? |
287. What is the use of Command Builder? |
288. What’s difference between “Optimistic” and “Pessimistic” locking ? |
289. How many ways are there to implement locking in ADO.NET? |
290. How can we perform transactions in .NET? |
291. What is difference between Dataset? Clone and Dataset. Copy? |
292. Can you explain the difference between an ADO.NET Dataset and an ADO Record set? |
293. Explain in detail the fundamental of connection pooling? |
294. What is Maximum Pool Size in ADO.NET Connection String? |
295. How to enable and disable connection pooling? |
296. What extra features does ADO.Net 2.0 have ? |
10: SQL SERVER |
297. What is normalization? What are different types of normalization? |
298. What is denormalization? |
299. What is a candidate key? |
300. What are the different types of joins? What is the difference between them? |
301. What are indexes? What is the difference between clustered and nonclustered indexes? |
302. How can you increase SQL performance? |
303. What is the use of OLAP? |
304. What is a measure in OLAP? |
305. What are dimensions in OLAP? |
306. What are levels in dimensions? |
307. What are fact tables and dimension tables in OLAP? |
308. What is DTS? |
309. What is fill factor ? |
310. What is RAID and how does it work? |
311. What is the difference between DELETE TABLE and TRUNCATE TABLE commands? |
312. If locking is not implemented, what issues can occur? |
313. What are different transaction levels in SQL SERVER? |
314. What are the different locks in SQL SERVER? |
315. Can we suggest locking hints to SQL SERVER? |
316. What is LOCK escalation? |
317. What are the different ways of moving data between databases in SQL Server? |
318. What are advantages of SQL 2000 over SQl 7.0? |
319. What is the difference between a HAVING CLAUSE and a WHERE CLAUSE? |
320. What is the difference between UNION and UNION ALL SQL syntax? |
321. How can you raise custom errors from stored procedure? |
322. what is ACID fundamental? What are transactions in SQL SERVER? |
323. What is DBCC? |
324. What is the purpose of Replication? |
325. What are the different types of replication supported by SQL SERVER? |
326. What is BCP utility in SQL SERVER? |
327. What are the different types of triggers in SQl SERVER? |
328. If we have multiple AFTER Triggers on table how can we define the sequence of the triggers? |
329. What is SQL injection? |
330. What is the difference between Stored Procedure (SP) and User Defined Function (UDF)? |
11: UML |
331. What is UML? |
332. How many types of diagrams are there in UML? |
333. What are advantages of using UML? |
334. What is the sequence of UML diagrams in project? |
335. Give a small brief explanation of all Elements in activity diagrams? |
336. Explain Different elements of a collaboration diagram? |
337. Explain all parts of a deployment diagram? |
338. Describe the various components in sequence diagrams? |
339. What are the elements in State Chart diagrams? |
340. Describe different elements in Static Chart diagrams? |
341. Explain the different elements of a Use Case? |
12: Project Management |
342. What is project management? |
343. Is spending in IT projects constant through out the project? |
344. Who is a stakeholder? |
345. Can you explain project life cycle? |
346. Are risk constant through out the project? |
347. Can you explain different software development life cycles? |
348. What is triple constraint triangle in project management? |
349. What is a project baseline? |
350. What is effort variance? |
351. How is normally a project management plan document organized? |
352. How do you estimate a project? |
353. What is CAR (Causal Analysis and Resolution)? |
354. What is DAR (Decision Analysis and Resolution)? |
355. What is a fish bone diagram? |
356. What is Pareto principle? |
357. How do you handle change request? |
358. What is internal change request? |
359. What is difference between SITP and UTP in testing? |
360. Which software have you used for project management? |
361. What are the metrics followed in project management? |
362. People in your project do not peform , what will you do? |
363. What is black box testing and White box testing? |
364. What is the difference between Unit testing, Assembly testing and Regression testing? |
365. What is V model in testing? |
366. How do you start a project? |
367. How did you do resource allocations? |
368. How will you do code reviews? |
369. What is CMMI? |
370. What are the five levels in CMMI? |
371. What is continuous and staged representation? |
372. What is SIX sigma? |
373. What are DMAIC and DMADV? |
374. What are the various roles in Six Sigma implementation? |
375. What are function points? |
376. What are the different types of elementary process in FPA? |
377. What are the different elements in Functions points? |
378. Can you explain in GSC and VAF in function points? |
379. What are unadjusted function points and how is it calculated? |
380. Can you explain steps in function points? |
381. What is the FP per day in your current company? |
382. Do you know Use Case points? |
383. What is COCOMO I, COCOMOII and COCOMOIII? |
384. What is SMC approach of estimation? |
385. How do you estimate maintenance project and change requests? |
13: XML |
386. What is XML? |
387. What is the version information in XML? |
388. What is ROOT element in XML? |
389. If XML does not have closing tag will it work? |
390. Is XML case sensitive? |
391. What is the difference between XML and HTML? |
392. Is XML meant to replace HTML? |
393. Can you explain why your project needed XML? |
394. What is DTD (Document Type Definition)? |
395. What is well formed XML? |
396. What is a valid XML? |
397. What is CDATA section in XML? |
398. What is CSS? |
399. What is XSL? |
400. What is element and attributes in XML? |
401. Which are the namespaces in .NET used for XML? |
402. What are the standard ways of parsing XML document? |
403. In What scenarios will you use a DOM parser and SAX parser? |
404. How was XML handled during COM times? |
405. What is the main difference between MSML and .NET Framework XML classes? |
406. What are the core functionalities in XML .NET framework? Can you explain in detail those functionalities? |
407. What is XSLT? |
408. Define XPATH? |
409. What is the concept of XPOINTER? |
410. What is an XMLReader Class? |
411. What is XMLTextReader? |
412. How do we access attributes using “XmlReader”? |
413. Explain simple Walk through of XmlReader. |
414. What does XmlValidatingReader class do? |
14: Localization/Globalization |
415. What is Localization & Globalization? |
416. What is Unicode & Why was it introduced? |
417. Does .NET support UNICODE and how do you know it supports? |
418. What is the difference between localization and globalization? |
419. What architecture decisions you should consider while planning for international software’s? |
420. How do we get the current culture of the environment in windows and ASP.NET? |
421. Which are the important namespaces during localization and globalization? |
422. What are resource files and how do we generate resource files? |
423. Can resource file be in any other format other than resx extensions? |
424. How is resource files actually used in project? |
425. How can we use Culture Auto in project? |
426. What are satellite assemblies? |
427. How do we generate Satellite assemblies? |
428. What is AL.EXE and RESGEN.EXE? 275 |
429. What is the use of resource manager class? |
430. What precautions do we need to take while deploying satellite assemblies? |
431. Can we get a strongly typed resource class rather than using resource manager? |
432. Can you explain the fundamentals of “GetGlobalResourceObject” and “GetLocalResourceObject” functions? |
433. Can we sign a satellite assembly? |
434. Can you explain collation sequence in sql server? |
435. How do we define collation sequence for database and tables? |
436. Can we change the order in a select query with a specified collation sequence? |
437. Can you list best practices for globalization and localization? |
438. Why is the culture set to the current thread? |
15: Windows Communication Foundation (Vista Series) |
439. What are the important principles of SOA (Service oriented Architecture)? |
440. What are ends, contract, address, and bindings? |
441. Which specifications does WCF follow? |
442. What are the main components of WCF? |
443. Explain how Ends, Contract, Address, and Bindings are done in WCF? |
444. what is a service class? |
445. what is a service contract, operation contract and Data Contract? |
446. what are the various ways of hosting a WCF service? |
447. How do we host a WCF service in IIS? |
448. what are the advantages of hosting WCF Services in IIS as compared to self-hosting? |
449. what are the major differences between services and Web services? |
450. What is the difference WCF and Web services? |
451. What are different bindings supported by WCF? |
452. Which are the various programming approaches for WCF? |
453. What is one-way operation? |
454. Can you explain duplex contracts in WCF? |
455. How can we host a service on two different protocols on a single server? |
456. How can we use MSMQ bindings in WCF? |
457. Can you explain transactions in WCF? |
458. What different transaction isolation levels provided in WCF? |
459. Can we do transactions using MSMQ? |
460. Can we have two-way communications in MSMQ? |
461. What are Volatile queues? |
462. What are Dead letter queues? |
463. What is a poison message? |
16: Windows Presentation Framework (Vista Series) |
464. What is WPF? |
465. What is XAML? |
466. What are dependency properties? |
467. Are XAML file compiled or built on runtime? |
468. Can you explain how we can separate code and XAML? |
469. How can we access XAML objects in behind code? |
470. What kind of documents are supported in WPF? |
17: Windows workflow foundation (Vista series) |
471. What is Windows Workflow Foundation? |
472. What is a Workflow? |
473. What are different types of Workflow in Windows Workflow foundation? |
474. when should we use a sequential workflow and when should we use state machines? |
475. How do we create workflows using designer? |
476. How do we specify conditions in Work flow? |
477. How do you handle exceptions in workflow? |
478. What is the use of XOML files. |
479. How can we pass parameters to workflow? |
18: ATLAS-AJAX |
480. What problem does Ajax solve? |
481. What is Ajax? |
482. What is the fundamental behind Ajax? |
483. What is JSON? |
484. How do we use XMLHttpRequest object in JavaScript? |
485. How do we do asynchronous processing using Ajax? |
486. What are the various states in XMLHttpRequest and how do we check the same? |
487. How can we get response text? |
488. How can we send request to the server using the XMLHttpRequest component? |
489. How do we pass parameters to the server? |
490. How can we create a class in JavaScript using Atlas? |
491. How do we do inheritance-using Atlas? |
492. How do we define interfaces using Atlas? |
493. How do we reference HTML controls using Atlas? |
494. Can you explain Scriptmanager control in Ajax? |
495. Can you explain Enablepartialrendering and UpdatePanel control in Ajax? |
496. Can you explain the concept of triggers in ‘UpdatePanel’ control? |
497. Can you explain the ‘UpdateProgress’ component? |
498. How can you do validations in Ajax? |
499. How do we do exception handling in Ajax? |
500. How do we consume web service in Atlas? |
501. How can we consume data directly in web services? |
19:- Reports |
502. How do we access crystal reports in .NET? |
503. What are the various components in crystal reports? |
504. What basic steps are needed to display a simple report in crystal? |
505. Can crystal reports be published as a web service? |
506. How do we invoke the crystal report web service? |
507. How do we add formulas using crystal reports? |
508. How do we pass parameters to crystal reports? |
509. How do we export from crystal reports? |
510. How do we print to printer using crystal? |
511. How do we generate cross tab reports? |
512. How can we do grouping in crystal? |
513. Can you explain three-pass reporting which crystal report uses? |
514. Can you explain reporting services architecture? |
515. We have two IIS application ‘Reports’ and ‘Reportserver’ what do they do ? |
516. Can you explain Report definition language (RDL) file in reporting services? |
517. What is the basic process of making a report in reporting services? |
518. How can we consume reports in ASP.NET? |
519. Can you explain the difference between private and shared data sources? |
520. How does reports caching in reporting services work ? |
521. What are the major differences between Crystal and SQL reporting services? |
20:- ASP.NET 2.0 |
522. What improvements are provided in ASP.NET 2.0? |
523. How does ASP.NET 2.0 eliminate tedious coding? |
524. How do we encrypt web.config files in ASP.NET 2.0 ? |
525. With the above technique can you encrypt everything in the web.config file? |
526. In .NET 1.X how was the encryption implemented for config files? |
527. Can you explain membership and role providers in ASP.Net 2.0? |
528. What kind of security web controls are introduced in ASP.NET 2.0? |
529. Can you explain master pages concept in ASP.NET? |
530. what is the concept of Web parts? |
531. What are the different components of the web part framework? |
532. What are partial classes in ASP.NET ? |
533. Can you explain generics in .NET ? |
534. Can you explain the concept of generic collection? |
21:- How to |
535. How do you send a email using ASP.NET? |
536. How did you deployment and setup in ASP.NET? |
22:- .NET 3.5 |
537. Define LINQ ? |
538. We already have common data access model what is special about LINQ? |
539. How can you make entity classes from the table itself ? |
540. How can we transform LINQ to objects ? |
541. How to transform LINQ to ADO.NET ? |
542. How to transform LINQ to SQL ? |
543. How to transform LINQ to XML ? |
544. How to transform LINQ to entities ? |
545. Can you explain Delegate Instantiation? |
546. Can you explain Anonymous methods ? |
547. What is Yield in LINQ ? |
548. Can you explain Lambda Expressions ? |
549. What are Instance methods and Extension methods ? |
550. What are Anonymous types ? |
551. Revision of Simple Query syntax for LINQ ? |
552. What is silver light? Cheers Bala |
No comments:
Post a Comment