![]() |
|
![]() |
| LinkBack | Thread Tools | Display Modes |
| | #1 (permalink) |
| Junior Member Join Date: Aug 2006 Age: 28
Posts: 7
Thanks: 0
Thanked 2 Times in 2 Posts
Rep Power: 4 | H1, I attended interview at aztech hyderabad,and i want to share with all. I have some question which requires answers if any body know i will be thank full.It is on 2+ Yrs Experience on dotnet. Questions were 1.Tell me about u r self? 2.Tell about current project and what is u r role in that? 3.What is assebly and related Questins? 4.How do u scale u r self in c# ,asp.net? 5.Suppose there are ten controls(any like textbox,datagrid) in an aspx page. in pageload ,i put data in that and there is a submit button on that page.if i click submit without making changes how can i check on the server that any modifications are made of data in in controls. 6.can we edit multiple row in datagrid(when we click edit button in a datagird)? 7.what is the method for sorting in datagrid? 8.Regarding caching and its syntax,usuages? 9How to optimize a query?(if any body know plz let me know) 10.Reverse a string(like my name "Rafeeq") using c# without using string function like length? 11.Net framework? 12.What is Garbage Collector? 13.Can we force garbage collector? 14.What is the difference between Dispose and finalize and whene we use them?(if any body know plz let me know) 15.How can u trouble Shoot u r website?(if any body know plz let me know) 16.How can i restrict creation of objects of a class upto five only?(if any body know plz let me know) Any body knows any answers it will be welcome. Ok,bye, |
| | |
| The Following User Says Thank You to rafeeq For This Useful Post: | AjayKumar.Kataram (10-12-08)
|
| | #2 (permalink) |
| Member Join Date: Aug 2006
Posts: 31
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 4 | Re: Interview in Aztech Hyderabad hi rafeeq , Please clear this what u have written. (What is assebly and related Questins?) |
| | |
| | #3 (permalink) |
| Junior Member Join Date: Aug 2006 Age: 28
Posts: 7
Thanks: 0
Thanked 2 Times in 2 Posts
Rep Power: 4 | Re: Interview in Aztech Hyderabad Hi, Gomesh it is assembly and question , that i wrote wrong |
| | |
| | #4 (permalink) |
| Senior Member Join Date: Oct 2006 Age: 28
Posts: 199
Thanks: 77
Thanked 25 Times in 18 Posts
Rep Power: 7 | Re: Interview in Aztech Hyderabad cool frnds be coooool |
| | |
| | #5 (permalink) |
| Junior Member Join Date: Dec 2008 Age: 26
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 1 | Re: Interview in Aztech Hyderabad I found the last question interesting. 16.How can i restrict creation of objects of a class upto five only? Well I believe it can be done by have SingleTon Class which can be instantiated at max five times.This is the way you will go for it. 1.Create a public class. 2.Make its contructer as private.(No outside object can instatiate it) 3.Write a public Static Method CreateInstance that creates the instance of tyhe class on demand and keep a class member to track the number if instance. 4.If the number of instance exceeds 5 then dont create instance rather use an earlier instance. It goes like this: publicclassClass1 { privatestaticint counter = 0; privatestaticClass1 instance; privatestaticObject obj = newObject(); private Class1() { } publicstaticClass1 CreateInstance() { lock (obj) { if (counter > 5)//couter > 0 means instance is not null { return instance; } else { counter++; instance = newClass1(); return instance; } } } } |
| | |
![]() |
| Tags |
| aztech , hyderabad , interview |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| tips for interview | ozobalu | HR Questions | 13 | 14-11-09 01:50 AM |
| must read all UG students!!!!!!!!!!!!! | sanjay | Other Queries | 16 | 07-02-09 02:31 PM |
| plz help | swapna_84 | Ask for Suggestion | 18 | 29-07-08 02:40 PM |
| IBM walk-in Interview on 22nd April | sridhar | Walk-ins | 0 | 21-04-06 12:33 AM |
| More Interview Questions Here... |