Core Java Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 319 Page Views: 

What is a native method?



Posted By: Avi Date: 7 November 2010 08:13:52 PM
 Answer:

A native method is a method that is implemented in a language other than Java


Posted By: avibtech


Date: 7 November 2010 08:13:52 PM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image l9QPch
Related Questions
Core Java : What is hashCode?

What is hashCode?

The hashcode of a Java Object is simply a number (32-bit signed int) that allows an object to be man....
Category: Core Java Date: 11/8/2010 3:51:50 AM
Core Java : What is the difference between a public and a non-public class?

What is the difference between a public and a non-public class?

A public class may be accessed outside of its package. A non-public class may not be accessed outsid....
Category: Core Java Date: 11/8/2010 3:40:55 AM
Core Java : Can an abstract class be final?

Can an abstract class be final?

No.
Category: Core Java Date: 11/8/2010 3:19:49 AM
Core Java : What is the disadvantage of garbage collection?

What is the disadvantage of garbage collection?

It adds an overhead that can affect performance and there is no guarantee that the object will be ga....
Category: Core Java Date: 11/8/2010 12:56:51 AM
Core Java : What modifiers may be used with a top-level class?

What modifiers may be used with a top-level class?

A top-level class may be public, abstract, or final.
Category: Core Java Date: 11/8/2010 12:12:55 AM