Radhakrishna has Published 85 Articles

How do I write package names in Java?

radhakrishna

radhakrishna

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

1K+ Views

While choosing a package name you need to keep the following points in mind. The name of the package should be in small letters. It is suggested to start the name of the package with the top level domain level followed by sub domains, ex: com.example.tutorialspoint. Example You ... Read More

How do I invoke a Java method when given the method name as a string?

radhakrishna

radhakrishna

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

3K+ Views

The java.lang.reflect.Method class provides information about, and access to, a single method on a class or interface. The reflected method may be a class method or an instance method (including an abstract method). A Method permits widening conversions to occur when matching the actual parameters to invoke with the underlying ... Read More

What is the relationship between JavaScript, CoffeeScript, TypeScript, ES5, and ES6?

radhakrishna

radhakrishna

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

181 Views

JavaScriptThe base programming language in all these. ES5 and ES6 are just different versions of this languageCoffeeScriptCoffeeScript is a programming language which transcompiles to JavaScript. It’s a compiler layer on top of JavaScript.TypeScriptA language that compiles down to JavaScript. TypeScript is a method to create JavaScript code by writing it ... Read More

How to access the members of a class from another class in Java?

radhakrishna

radhakrishna

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

13K+ Views

To access the members of a class from other class. First of all, import the class. Create an object of that class. Using this object access, the members of that class. Suppose there is a class in a package called myPackage with a method named display() package ... Read More

Identify the qualification and Employee relationship table in SAP system

radhakrishna

radhakrishna

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

418 Views

The answer is there is no such single table where you can find everything pertaining to qualifications as they are stored in PD tables as well.Basically, they are of object type ‘Q’ and are stored under HRP1000. HRP10001 will capture the relation between the qualification and employee.  We do have ... Read More

Previous 1 ... 5 6 7 8 9
Advertisements