swapna


{ City } hyderabad
< Country > india
* Profession *
User No # 1739
Total Questions Posted # 142
Total Answers Posted # 68

Total Answers Posted for My Questions # 411
Total Views for My Questions # 1461102

Users Marked my Answers as Correct # 868
Users Marked my Answers as Wrong # 482
Questions / { swapna }
Questions Answers Category Views Company eMail

What is caching? What are the different types of caching?

6 ASP.NET 15231

How to swap two variables, without using third variable ?

AB, ADP, BirlaSoft, Cisco, Cygnet Infotech, HCL, Hewitt, Honeywell, HP, IBM, Infosys, Manhattan, Microsoft, Mobius, Percept, Satyam, SofTMware, TCS, Wipro, Yamaha,

104 C Code 223057

You have a sheet cake. There is a rectangular piece missing from the inside of the sheet cake. The location of the missing piece is arbitrary. I was told I could assume I had the means to make the cuts. How do you divide the sheet cake into 2 even proportions with 2 cuts?

College School Exams Tests, Global Analytics, Google, Infosys, Oracle,

15 Puzzles 34591

What's the difference btw the following methods in .NET remoting? RegisterWellknownServiceType() RegisterWellknownClientType() RegisterActivatedServiceType() RegisterActivatedClientType()

1 Dot Net Remoting 8985

How are the activation URLs different in case of SAO and CAO in .NET remoting?

Dot Net Remoting 2083

Can you configure a .NET Remoting object via XML file?

1 Dot Net Remoting 6110

What compiler switch creates an xml file from the xml comments in the files in an assembly?

Siebel Systems,

1 XML XSLT RSS 10896

When will u use a XMLDataDocument and when will u use a XPathDocument? What's the differences between the two?

XML XSLT RSS 1631

Where?s global assembly cache located on the system? Can you have two files with the same file name in GAC?

Web Related AllOther 1537

What's the difference between a *.WSDL file and a *.DISCO file?

Web Related AllOther 2922

What's the difference between *.vsdisco and *.disco file?

Web Related AllOther 1538

How does dynamic discovery (in case of *.vsdisco) work? What goes on behind the scenes?

Web Related AllOther 1336

How do you directly call a native function exported from a DLL?

2 Dot Net Remoting 6632

How does assembly versioning in .NET prevent DLL Hell?

Satyam, Siebel Systems,

3 Dot Net Remoting 14381

Choosing between HTTP and TCP for protocols and Binary and SOAP for formatters, what are the trade-offs? In what way it is best?

2 Dot Net Remoting 6997


 [1]   2   3   4   5   6   7   8   9   10    Next



Answers / { swapna }

Question { Aurobindo, 4326 }

what is the structure of cerebroside?


Answer

A cerebroside is a sphingolipid (ceramide) with a
monosaccharide such as glucose or galactose as polar head
group .

Is This Answer Correct ?    5 Yes 0 No

Question { BirlaSoft, 6899 }

What is the difference between directcast and ctype?


Answer

Directcast means implicit casting. ctype comes under
Explicit conversion of integers to strings or strings to
integers.

Is This Answer Correct ?    0 Yes 0 No


Question { 4001 }

web user and custom conrols


Answer

Custom controls:

A control authored by a user or a third-party software
vendor that does not belong to the .NET Framework class
library. This is a generic term that includes user
controls. A custom server control is used in Web Forms
(ASP.NET pages). A custom client control is used in
Windows Forms applications.

User Controls:

In ASP.NET: A user-authored server control that enables an
ASP.NET page to be re-used as a server control. An
ASP.NET user control is authored declaratively and
persisted as a text file with an .ascx extension. The
ASP.NET page framework compiles a user control on the fly
to a class that derives from the
System.Web.UI.UserControl class.

Is This Answer Correct ?    0 Yes 0 No

Question { Siebel, 5197 }

Explain the functionality of "EnableViewState" ? What
happens if you want it on or off?


Answer

If we Enable Enableviewstate property then the state of
that particular control will remains even after postback.

If we disable Enableviewstate property then after postback
that control will lose the previous state.

Is This Answer Correct ?    6 Yes 1 No

Question { Siebel, 3484 }

Which color scheme in a Repeater control can you provide
alternatively?


Answer

using Alternatingitemtemplate in repeater .

Is This Answer Correct ?    2 Yes 0 No

Question { Siebel, 5839 }

To call a Web service SOAP which transport protocol you
use?


Answer

HTTP Protocol

Is This Answer Correct ?    9 Yes 0 No

Question { Siebel, 4036 }

For Web services where you can browse on the Internet?


Answer

For consuming Web services first we have to go to the UDDI
directory .In the UDDI directory we can find a link to
discovery file.
Then we can make a request for WSDL document.

This WSDL contains description of the services.
Then we have to integrate the webserice into our
application.

Is This Answer Correct ?    1 Yes 0 No

Question { CMS, 8478 }

Explain how server control validation controls works?


Answer

To perform server side validation we have an event
called ?ServerValidate?.
Syntax:
ValidationControlName_ServerValidate(s, args)
{
?..//Logic
}

Is This Answer Correct ?    7 Yes 0 No

Question { Syntax Softtech, 5594 }

What does the "EnableViewState" property do? Why would I
want it on or off?


Answer

Enable ViewState turns on the automatic state management
feature that enables server controls to re-populate their
values on a round trip without requiring you to write any
code.

This feature is not free however, since the state of a
control is passed to and from the server in a hidden form
field.

You should be aware of when ViewState is helping you and
when it is not. For example, if you are binding a control
to data on every round trip, then you do not need the
control to maintain it's view state.

ViewState is enabled for all server controls by default. To
disable it, set the EnableViewState property of the control
to false.

Is This Answer Correct ?    5 Yes 1 No

Question { Syntax Softtech, 28224 }

What is the difference between Server.Transfer and
Response.Redirect? Why would you choose one over the other?


Answer

Server.transfer redirects the output to another page
whereas response.redirect Redirects/moves the user to
another page .

If u want to submit output of one page to another page use
sever.transfer. if u want to navigate to another page use
Response.Redirect.

Is This Answer Correct ?    17 Yes 4 No

Question { Syntax Softtech, 16539 }

Describe and In Process Vs Out of Process component. Which
is faster?


Answer

An inprocess is one which runs in the same process area as
that of the client giving tha advantage of speed but the
disadvantage of stability becoz if it crashes it takes the
client application also with it.

Outprocess is one which works outside the clients memory
thus giving stability to the client, but we have to
compromise a bit on speed.

Inprocess is faster than outprocess.

Is This Answer Correct ?    24 Yes 0 No

Question { Syntax Softtech, 4889 }

What definition correctly defines a label server control
with the name set to lblHoop?
a)
b)


Answer

c)

Is This Answer Correct ?    0 Yes 2 No

Question { Syntax Softtech, 4434 }

What is the name of the process the browser uses to find the
address of a web server?
a) DMZ
b) DNS
c) Active Directory
d) Database lookup


Answer

DNS

Is This Answer Correct ?    0 Yes 0 No

Question { Syntax Softtech, 6681 }

What is the purpose of the following segment?
If ( !IsPostBack)
{
sqldataAdapter1.Fill (dsusers1);
DataGrid1.DataBind ();
}
a) To populate the DataAdapter the first time the web page
id displayed.
b) To populate the DataSet every time the web page is displayed.
c) To populate the DataAdapter every time the web page is
displayed.
d)To populate the DataSet the first time the web page is
displayed.


Answer

To populate the DataSet the first time the web page is
displayed. i.e Instance is created first time with this.

Is This Answer Correct ?    7 Yes 2 No

Question { Syntax Softtech, 5588 }

When working with ASP.Net server controls, it is important
to use the right event handlers to capture the event for the
application to function properly. What event would you use
to capture the selection of a new item in a DropDownList
control?
a) The Click event.
b) The SelectionChanged event.
c) The SelectionIndexChanged event.
d) The ChangedSelection event.


Answer

The SelectionIndexChanged event.

Is This Answer Correct ?    4 Yes 0 No

 [1]   2   3   4   5    Next