Arushi has Published 157 Articles

Global variables in Java

Arushi

Arushi

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

678 Views

There is no global variables support in Java. Static variables can be used as an alternate solution for global variables.

Named Capturing groups in Java Regex

Arushi

Arushi

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

103 Views

Java Regex Capturing Groups

What is the scope of default access modifier in Java?

Arushi

Arushi

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

949 Views

Default access modifier means we do not explicitly declare an access modifier for a class, field, method, etc. The scope of the default access modifier lies within the package. When a class or its members associated with default access modifier then. Example Variables and methods can be declared without any ... Read More

Using SAP BAPI API’s to extract information from client system

Arushi

Arushi

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

410 Views

BAPI is an abbreviation for Business Application Programming Interface.BAPI’s are proprietary interfaces of SAP. These provide standard access to SAP solution with all the semantic checks already present. Using BAPI interfaces, we can perform both synchronous and asynchronous processing of data.

Can access modifiers be used for local variables in Java?

Arushi

Arushi

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

534 Views

Yes, a local variable can be public, private, protected or default.

What is the meaning of immutable in term of String in java?

Arushi

Arushi

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

186 Views

In Java, immutable objects are those whose data can’t be changed or modified (once modified). String class is immutable i.e. once we create a String object its data cannot be modified.

Inserting an Array to a table in SAP HANA database

Arushi

Arushi

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

456 Views

As far as I know, there is no direct way of inserting an Array using SQL query. You will first have to combine the columns (EMPL_Id + Skill Id) using the code and then do a bulk insert to the database.

Advertisements