45,000 Jobs - Get an Interview Call,  Post Your Resume Here
SURESHKUMAR.NET FORUMS
Registered Member Login:
Not a member? Register today!



Welcome to the SURESHKUMAR.NET FORUMS.

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.




Interview in Aztech Hyderabad

        

Reply
 
LinkBack Thread Tools Display Modes
Old 26-08-06, 10:42 PM   #1 (permalink)
Junior Member
 
Join Date: Aug 2006
Age: 28
Posts: 7
Thanks: 0
Thanked 2 Times in 2 Posts
Rep Power: 4 rafeeq is on a distinguished road
Thumbs up Interview in Aztech Hyderabad

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,

rafeeq is offline Offline   Reply With Quote
The Following User Says Thank You to rafeeq For This Useful Post:
AjayKumar.Kataram (10-12-08)
Old 05-09-06, 11:35 AM   #2 (permalink)
Member
 
Join Date: Aug 2006
Posts: 31
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 4 gomesh_2k6 is on a distinguished road
Re: Interview in Aztech Hyderabad

hi rafeeq ,
Please clear this what u have written.
(What is assebly and related Questins?)
gomesh_2k6 is offline Offline   Reply With Quote
Old 05-09-06, 03:32 PM   #3 (permalink)
Junior Member
 
Join Date: Aug 2006
Age: 28
Posts: 7
Thanks: 0
Thanked 2 Times in 2 Posts
Rep Power: 4 rafeeq is on a distinguished road
Re: Interview in Aztech Hyderabad

Hi, Gomesh
it is assembly and question , that i wrote wrong
rafeeq is offline Offline   Reply With Quote
Old 31-10-06, 02:26 AM   #4 (permalink)
Senior Member
 
simhadri44's Avatar
 
Join Date: Oct 2006
Age: 28
Posts: 199
Thanks: 77
Thanked 25 Times in 18 Posts
Rep Power: 7 simhadri44 is a jewel in the rough simhadri44 is a jewel in the rough simhadri44 is a jewel in the rough
Re: Interview in Aztech Hyderabad

cool frnds be coooool
simhadri44 is offline Offline   Reply With Quote
Old 10-12-08, 11:37 PM   #5 (permalink)
Junior Member
 
Join Date: Dec 2008
Age: 26
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 1 abhinav83 is on a distinguished road
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;
}
}
}
}
abhinav83 is offline Offline   Reply With Quote
Reply

Tags
aztech , hyderabad , interview


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On


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


All times are GMT +6.5. The time now is 09:10 AM.

More Interview Questions Here...

Content Relevant URLs by vBSEO 3.3.0