Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

mahesh kotekar


{ City } bangalore
< Country > india
* Profession * software engineer
User No # 42920
Total Questions Posted # 0
Total Answers Posted # 19

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 252
Users Marked my Answers as Wrong # 55
Answers / { mahesh kotekar }

Question { Allied Nippon, 12742 }

What is the difference between functional testing and
regression testing ?


Answer

Functional Testing: This test is performed to see weather
the program is working as per the given flow. functionality
is working correctly or not as per requiremnet.
Regression Testing: This test is performed during
modification stage. where the applied changes impact the
change in working of the whole project or not. Means
weather the modification caused errors in existing working
of the project or not....

Is This Answer Correct ?    26 Yes 2 No

Question { IBM, 7065 }

What is ISAPI?


Answer

ISAPI is the handler running in IIS server. WHen the request
comes from the client ISAPI is responsible for sending those
request particular to aspx pages to aspnet_WP workerprocess
which will process the request.

Is This Answer Correct ?    15 Yes 6 No


Question { 6161 }

suppose we have two object;obj1 and obj2
can we assign obj2 to one1;
and if yes; then after assigning suppose we delete obj2
then obj1 will retain obj2 value or not.


Answer

Very tricky question, perhaps i would like to answer this
one with small coding.
Employee e1 = new Employee('mahesh','Software');
Employee e2 = e1;
e1 = null;

console.writeline(e2.FirstName);
Answer: We can assign the reference of the object to other
object. since both e1 and e2 refers to the same memory
location for the empllyee object. If we change the e1 then
refernce to memory of e1 will get deleted but e2 stil refers
to the same memory location Certainly it will work. and
retain the value.

Thanks And Regards
Mahesh KOtekar

Is This Answer Correct ?    7 Yes 0 No

Question { IBM, 9559 }

How to store a dataset in a viewstate?


Answer

Dataset can be stored in the viewstate. any object that
can be serializable can be stored in the viewstate. We can
serialize the dataset and then can be saved int he viewstate..

Is This Answer Correct ?    24 Yes 4 No

Prev    1    [2]