srikanth


{ City }
< Country > india
* Profession *
User No # 50459
Total Questions Posted # 40
Total Answers Posted # 2

Total Answers Posted for My Questions # 126
Total Views for My Questions # 310051

Users Marked my Answers as Correct # 5
Users Marked my Answers as Wrong # 1
Questions / { srikanth }
Questions Answers Category Views Company eMail

When we have two versions of the dot net installed how does the compiler know which version of DLL it has to select to an application.

Tesco,

Programming Languages AllOther 1416

What are the limitation in using querystring in .net?

Tesco,

1 Programming Languages AllOther 3721

How to change the color of a cell or a row in a datagrid on mouse hover using javascript/.net

Tesco, Wipro,

Programming Languages AllOther 1520

As per interoperatbility programs written in one language can be used by other language. How can we restrict the features of one language (say C#) in the programmer written in another language (say VB)..for example we have some features like operator overloading which is possible C#.NET (not in VB.NET), how can we restrict that when we are using this code in VB.NET.

Tesco,

Programming Languages AllOther 1441

What are the advantages of Server Controls over HTML/ASP Controls.

Tesco,

1 Programming Languages AllOther 2943

I've an application where i need to give access to all the features only to admin and only few features to normal users. Say Menu...i dont want all my menu items to be accessible to all the users only the admin people can see few all the features where as normal users can have access to limited menu items...how can i achieve this. Please note that my menu is not a database driven menu.

Tesco,

1 Programming Languages AllOther 3160

What is SQL Profiler what is the use of it?

247Customer, Steria,

2 SQL Server 12183

What are the advantages of using views. Why do we need views when we have SPs?

247Customer,

4 SQL Server 14866

How many types of cursors are there in SQL Server?

247Customer, CarrizalSoft Technologies,

5 SQL Server 20419

What is the difference between the following two sql statements select count(*) from select count(col_name) from

247Customer,

5 SQL Server 7923

What are the advantages of using stored procedures? Please don't simply say compilation time will be saved as they are already complied. Please specify some other advantages.

247Customer,

3 SQL Server 5148

Differences between functions and stored procedures?

247Customer, Accenture,

8 SQL Server 13013

Can we have more than one NULL in a column having unique constraint?

247Customer,

12 SQL Server 12876

Can we call SP inside a query?

CA, CarrizalSoft Technologies, Wipro,

5 SQL Server 8917

When we have more than one main function in a program how does the compiler know the starting point of the program, i mean from which main the execution or compilation of the program begins?

247Customer,

2 Programming Languages AllOther 4883


 [1]   2   3    Next



Answers / { srikanth }

Question { Wipro, 3847 }

Explain the Scope of
public/private/friend/protected/protected friend.


Answer

Public is accessible to all classes and projects.

Private is accessible only in the block that is declared.

Friend is accessible only to all classes in the current
project only.

Protected is accessible to only the class the is declared
and the class that is derived from that class.

Protected Friend is accessible to all the classes in the
current project and all classes derived from those classes.

Is This Answer Correct ?    4 Yes 0 No

Question { Microsoft, 5382 }

can we store textbox and com components in viewstate?


Answer

We can store the value of the textbox, but cannot store
the textbox itself. Because viewstate can't hold the object
we can't store COM component as well.

Is This Answer Correct ?    1 Yes 1 No