Question
What is the protected method modifier?

Answers

Using the public, private and protected keywords, you can control a variable's scope. In a similar way, Java lets you use these attributes with class methods as well. A protected method is only visible within its class, within subclasses or within the class package. To declare a method as protected, simply precede the method header with the protected keyword, as shown:
protected int myProtectedMethod();   Your Comment




More Software Questions..
What is the inputsplit in map reduce software?

What is software configuration management?

What Is Java Api For Xml-based Rpc (jax-rpc)?

How can you implement fine-grained auditing?

What is IBM’s simple explanation for Big Data’s four critical features?

What is static synchronized method in JDBC API? Give an example?

What does the NULLIF function do?

What happens if a start method is not invoked and the run method is directly invoked?

Should we override finalize method

what is the difference between mysql_fetch_array and mysql_fetch_object?

How will XML affect my document links?

Why to use Style Sheets?

What are Filters in MVC?

Can you explain Application layer in OSI model?

How to define new testplan attributes?

What are the minimum system requirements to run Photoshop? Is it possible to run Photoshop over linux?

Which oracle package is used to manage the oracle lock management services?

What is Latch Up? Explain Latch Up with cross section of a CMOS Inverter. How do you avoid Latch Up?

What is marker interface?

What types of partitioning are there for BW?



Search
Can you Answer!!
  • Q Tell me about the most recent time you had to inform other people of a change. What was the change? How did you inform the people involved? What feedback did you receive?
  • Q What does rendering engine in the Silverlight includes
  • Q How internet journalism is different from electronic media?
  • Q Do you know of any mechanism by which RBI can withdraw excess money supply from the FOREX market?
  • Q Can you give me an example of your creativity/managerial/organizational skills?
  • Q What is the difference between link xctl?
  • Q How can you differentiate a "champion" from the crowd?
  • Q What are the social problems associated with your place?
  • Q What is servlet lazy loading?
  • Q A woman has Hisdoy syndrome what has she got
  • Q You are creating an ASP.NET application for TestKing. The company data is stored in a Microsoft SQL Server 6.5 database. Your application generates accounting summary reports based on transaction tables that contain million of rows. You want your application to return each summary report as quickly as possible. You need to configure your application to connect to the database and retrieve the data in a way that achieves this goal. What should you do? A. Use a SqlConnection object to connect to the database, and use a SqlCommand object to run a stored procedure that returns the data. B. Use an OleDbConnection object to connect to the database, and use an OleDbCommand object to run a stored procedure that returns the data. C. Configure SQL Server to support HTTP access, and create an XML template to run a stored procedure that returns the data in XML format. D. Use COM interop to create an ADODB.Connection object, and use an ADODB.Command object to run a SQL statement that returns the data.