Monica Mona has Published 83 Articles

Are MySQL database and table names case-sensitive?

Monica Mona

Monica Mona

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

963 Views

Actually, the case sensitivity of database and table name depends a lot on the case sensitivity of the underlying operating system. Hence, we can say that such names are not case sensitive in Windows but are case sensitive in most varieties of Unix.

What does the bitwise left shift operator do in Java?

Monica Mona

Monica Mona

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

248 Views

The left operand value is moved left by the number of bits specified by the right operand.Example: A

According to Java Operator precedence, which operator has the highest precedence?

Monica Mona

Monica Mona

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

816 Views

Operator precedence determines the grouping of terms in an expression. This affects how an expression is evaluated. Certain operators have higher precedence than others; for example, the multiplication operator has higher precedence than the addition operator.Here, operators with the highest precedence appear at the top of the table, those with ... Read More

Does a constructor have a return type in Java?

Monica Mona

Monica Mona

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

5K+ Views

No, constructor does not have any return type in Java. Constructor looks like method but it is not. It does not have a return type and its name is same as the class name. Mostly it is used to instantiate the instance variables of a class. If the programmer doesn’t ... Read More

What is the difference between up-casting and down-casting in Java?

Monica Mona

Monica Mona

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

548 Views

Converting a subclass type to a superclass type is known as up-casting.Converting a superclass type to a subclass type is known as down-casting.

Do I need to import the Java.lang package anytime during running a program?

Monica Mona

Monica Mona

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

3K+ Views

No, java.lang package is a default package in Java therefore, there is no need to import it explicitly. i.e. without importing you can access the classes of this package. If you observe the following example here we haven’t imported the lang package explicitly but, still we are able to calculate ... Read More

Prevent XML re-formatting in WAS response in SAP Windows Activation Service

Monica Mona

Monica Mona

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

97 Views

No, there is no other possibility of doing it until you code everything on your own. It seems to be an issue during de-serialization.Most probably it is relevant to the parameters that you are sending in the response.You can try and enable tracing to detect further and check out where ... Read More

How can I check the list of existing authority objects in SAP system?

Monica Mona

Monica Mona

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

531 Views

To maintain authorization objects, you can use T-code: SU21 in SAP ECC system.You can all authorization objects including S_CARRID is located inside the different class like - BC_C object class.

What is Agentry Toolkit in SAP Mobile Platform SMP 3.0 SDK? How do you use it in an application?

Monica Mona

Monica Mona

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

186 Views

Agentry toolkit provides various SDK’s to integrate with the various mobile component. With Agentry toolkit, you have a plugin to Eclipse that allows you to create modify Agentry applications.To know more about Agentry toolkit, you can refer the below SAP link:https://help.sap.com/doc/f1944845cb7b4cb886ebfbd5fa720c64/3.0.14/en-US/7c03a69470061014a336f33ca4dd4413.htmlRead More

How to print data of specific element from an array in java?

Monica Mona

Monica Mona

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

14K+ Views

An array is a data structure/container/object that stores a fixed-size sequential collection of elements of the same type. The size/length of the array is determined at the time of creation. The position of the elements in the array is called as index or subscript. The first element of the array ... Read More

Advertisements