Answer Posted / hrindows@gmail.com
// A write-only class in Java
public class Student{
//private data member
private String institute;
//setter method for institute
public void setInstitute (String institute)
{ this.institute=institute;
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How will you make .NET programs work in Linux ?
How viewstate is being formed and how it is stored on client in .net?
How is .net able to support multiple languages?
What is the root class in .net?
How many types of generations are there in a garbage collector?
Example from .net. Integer & struct are value types or reference types in .net?
What is a windows process in .net?
which methos do you invoke on the dataadapter control to load your generated dataset with data?
How anonymous method is different from a lambda expression?
Why is .net used?
How to implement datagrid in.net? How would you make a combo-box appear in one column of a datagrid? What are the ways to show data grid inside a data grid for a master details type of tables? If we write any code for datagrid methods. What is the access specifier used for that methods in the code behind file and why?
One user deleted one row after that another user through his dataset was trying to update same row. What will happen? How will you avoid this problem?
What is Polymorphism? How does VB.NET/C# achieve polymorphism?
What do the terms “boxing” and “unboxing” mean?
How many design patterns can be created in .net?