Vanithasree has Published 85 Articles

How to create a custom object in JavaScript?

vanithasree

vanithasree

Updated on 19-Sep-2019 08:11:53

293 Views

To create a custom object in JavaScript, try the following codeExampleLive Demo                          var dept = new Object();          dept.employee = "Amit";          dept.department = "Technical";          dept.technology ="Java";          document.getElementById("test").innerHTML =          dept.employee + " is working on " + dept.technology + " technology.";          

What is the difference between Bower and npm in JavaScript?

vanithasree

vanithasree

Updated on 12-Sep-2019 07:59:03

120 Views

  npmnpm is generally used for managing Node.js modules and does nested dependency tree. It also works for front-end and used for developer tools like Grunt, CoffeeScript, etc.Without using nested dependencies it is difficult to avoid dependency conflicts. So, using npm has proven to be great.Whatever you add in Node is ... Read More

What will happen if the MySQL AUTO_INCREMENT column reaches the upper limit of the data type?

vanithasree

vanithasree

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

622 Views

When the AUTO_INCREMENT column reaches the upper limit of data type then the subsequent effort to generate the sequence number fails. That is why it is advised to use a large enough integer data type for the AUTO_INCREMENT column to hold the maximum sequence value required by us. For example, ... Read More

What are the prerequisites for learning Java?

vanithasree

vanithasree

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

1K+ Views

In fact, you can directly start learning Java without any prior knowledge of programming language. But, the syntax in Java is similar to the syntax of the C programming language, therefore, Knowing C language helps to get hold of Java quickly. Having introduced to object-oriented principles before starting Java, also ... Read More

Need to schedule script in PowerShell from SAP

vanithasree

vanithasree

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

150 Views

I had experienced a similar issue and it was because the scheduler did not have permissions of the file. The scheduler is unable to read the contents basically the login credentials from the file.As a work around what I did was I created a separate job altogether to capture the ... Read More

What is meant by Java being platform-independent?

vanithasree

vanithasree

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

189 Views

When you compile Java programs using javac compiler it generates bytecode. We need to execute this bytecode using JVM (Java Virtual machine) Then, JVM translates the Java bytecode to machine understandable code.You can download JVM’s (comes along with JDK or JRE) suitable to your operating system and, once you write ... Read More

Updating Data source of provider by REST API in SAP

vanithasree

vanithasree

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

127 Views

I think you are missing the basic part over here. You have modified the document but you need to save it too.If you would have noticed after you had made changes to the document. Its state would have been updated to ‘Modified’ from the previous state which could be ‘Unused’ ... Read More

Is JVM a compiler or interpreter?

vanithasree

vanithasree

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

1K+ Views

Java Virtual Machine is an abstract computing machine which is used to run the java program. JVM accepts byte code, loads it and translates it into system understandable code.

Can a constructor be made final in Java?

vanithasree

vanithasree

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

5K+ Views

No, a constructor can’t be made final. A final method cannot be overridden by any subclasses. As mentioned previously, the final modifier prevents a method from being modified in a subclass. The main intention of making a method final would be that the content of the method should not be ... Read More

Multiple ALV grids on a single screen in SAP ABAP

vanithasree

vanithasree

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

724 Views

It is not possible to resize or place the grid at the particular position using function modules as ALVs are always displayed in the Fullscreen by using function modules.One of the method this can be done is that you create a screen using custom container and then use the class ... Read More

Advertisements