nithya


{ City } hyderabad
< Country > india
* Profession * s/w engg
User No # 11646
Total Questions Posted # 0
Total Answers Posted # 7

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

Users Marked my Answers as Correct # 23
Users Marked my Answers as Wrong # 4
Questions / { nithya }
Questions Answers Category Views Company eMail




Answers / { nithya }

Question { Protech, 12155 }

what is serilization?


Answer

Serialization is a process of converting object into stream
of bytes.

Types of Serialization

1)XML Serialization
2)SOAP Serialization
3)Binary Serialization
4)Custom Serialization

In XML Serialization we can convert only public objects into
stream of bytes, where as in SOAP and Binary Serialization
we can convert private objects also.

In XML Serialization we can able to convert only objects
into stream of bytes, but in Binary Serialization we can
convert all the objects(Objects in Object) also.

Is This Answer Correct ?    11 Yes 1 No

Question { Accenture, 9074 }

can we throw execption from catchblock


Answer

We can throw exception in catch block

Like

try
{
int a=10/0;
}
catch(Exception ex)
{
throw ex;
}

Is This Answer Correct ?    4 Yes 0 No


Question { Accenture, 3603 }

how to use web services with code?(with example code)


Answer

First we need to create webmethod in webservice.
And we need to expose the webmethod as wsdl file.

Who wants to consume those webmethod they have to create a
class file by using wsdl tag in dotnet command prompt.

once the class file has been created and we can create
instance for that and start accessing all the methods from
the class file.

Is This Answer Correct ?    1 Yes 0 No

Question { TCS, 13355 }

can we place the same DLL in debug folder two times?
(without using strong name )


Answer

s, we can do it.

Is This Answer Correct ?    1 Yes 1 No

Question { FactorH, 5939 }

what is the difference between this.controls and
page.form1.controls and me.controls?


Answer

this.controls = in C#
me.controls=vb.net
page.form1.controls is not a valid one
Page.Form.Controls is available. this command is used to get
the all the child controls of a specific server control.
here the server control is form

Is This Answer Correct ?    3 Yes 0 No

Question { FIC, 10900 }

what is read only and constant


Answer

A readonly can be initialized only the time of variable
declaration or only in the constrator,Apart from that we
cannt modify anywhere in our program.

But Constant must be initialized at the time of declaration.
And this value cannt be changed in constractor level also.

Is This Answer Correct ?    1 Yes 2 No

Question { Wipro, 10389 }

Webconfig file is cofiguration of server or browser?


Answer

WebConfig file will have only Application Configuration
information resides in Server/ur desktop also Machine.

Is This Answer Correct ?    2 Yes 0 No