Varma has Published 69 Articles

How does Garbage Collector work in C#

varma

varma

Updated on 30-Jul-2019 22:30:23

1K+ Views

The garbage collector (GC) manages the allocation and release of memory. The garbage collector serves as an automatic memory manager. You do not need to know how to allocate and release memory or manage the lifetime of the objects that use that memory. An allocation is made any time ... Read More

Send an Idoc using SAP.net connector 3.0 from a non-SAP system

varma

varma

Updated on 30-Jul-2019 22:30:20

423 Views

As per my knowledge, SAP doesn’t offer any development library for NCo to deal with Idocs. .Net connector is primary used for development of RFC clients.One of a common method to submit idocs to the SAP system using NCo is by using function module “IDOC_INBOUND_ASYNCHRONOUS”. This function module includes multiple ... Read More

What is the best IDE for Java besides Eclipse?

varma

varma

Updated on 30-Jul-2019 22:30:20

184 Views

IntelliJ and NetBeans are the alternative IDE’s for Java development.

What are the platforms that support Java programming language?

varma

varma

Updated on 30-Jul-2019 22:30:20

906 Views

Java runs on operating systems such as Windows, Mac OS, and the various versions of UNIX/Linux like HP-Unix, Sun Solaris, Redhat Linux, Ubuntu, CentOS, etc.

How are anonymous (inner) classes used in Java?

varma

varma

Updated on 30-Jul-2019 22:30:20

166 Views

An inner class declared without a class name is known as an anonymous inner class. we declare and instantiate them at the same time. In general, they are used whenever you need to override the method of a class or an interface. Syntax AnonymousInner an_inner = new ... Read More

Why can’t we override static methods in Java?

varma

varma

Updated on 30-Jul-2019 22:30:20

5K+ Views

Overloading is the mechanism of binding the method call with the method body dynamically based on the parameters passed to the method call.Static methods are bonded at compile time using static binding. Therefore, we cannot override static methods in Java.

How do I write method names in Java?

varma

varma

Updated on 30-Jul-2019 22:30:20

3K+ Views

While writing a method name we should follow the camel case i.e. first letter of the first word should be small and the first letters of the remaining (later) words should be capital. Example public class Test { public void sampleMethod() { ... Read More

What is Is-a relationship in Java?

varma

varma

Updated on 30-Jul-2019 22:30:20

915 Views

IS-A is a way of saying: This object is a type of that object. Let us see how the extends keyword is used to achieve inheritance.Examplepublic class Animal { } public class Mammal extends Animal { } public class Reptile extends Animal { } public class Dog extends Mammal { ... Read More

Are the private variables and private methods of a parent class inherited by the child class in Java?

varma

varma

Updated on 30-Jul-2019 22:30:20

641 Views

No, a child class can’t inherit private members of the parent class, it can inherit only protected, default, and public members of it. If you try it gives you a compile time error as: − Example class Super{ private int data = 30; ... Read More

Previous 1 ... 3 4 5 6 7
Advertisements