Underlying Platform and Programming Language in SAP HANA

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

756 Views

SAP HANA product is written in C++ and JAVA and runs on Linux platform. Linux Operating System on which SAP HANA runs- SUSE LINUX 11.

How Cookies Work in Python CGI Programming

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

585 Views

Using Cookies in CGIHTTP protocol is a stateless protocol. For a commercial website, it is required to maintain session information among different pages. For example, one user registration ends after completing many pages. How to maintain user's session information across all the web pages?In many situations, using cookies is the most efficient method of remembering and tracking preferences, purchases, commissions, and other information required for better visitor experience or site statistics.How Cookies workYour server sends some data to the visitor's browser in the form of a cookie. The browser may accept the cookie. If it does, it is stored as ... Read More

Connect MS Excel to SAP HANA

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

217 Views

Choose SAP HANA MDX Provider from this list to connect to any MDX data source → Enter HANA system details (server name, instance, user name and password) and you need to click on Test Connection → Connection succeeded → OKIt will give you the list of all packages in drop down list that are available in HANA system. You can choose an Information view → click Next → Select Pivot table/others → OK.

Set Order of Flexible Item with JavaScript

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

123 Views

To set the order of the flexible item, relative to the rest of JavaScript, use the order property. You can try to run the following code to implement order property − Example Live Demo #box { border: 1px solid #000000; width: 420px; height: 150px; display: flex; } #box div { height: 80px; width: 80px; } DIV1 DIV2 DIV3 Set function display() { document.getElementById("myID1").style.order = "3"; document.getElementById("myID2").style.order = "1"; document.getElementById("myID3").style.order = "2"; }

Java Variable Naming Rules

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

4K+ Views

All Java components require names. Names used for classes, variables, and methods are called identifiers. In Java, there are several points to remember about identifiers. They are as follows - Step 1 − All identifiers should begin with a letter (A to Z or a to z), currency character ($) or an underscore (_). Step 2 − After the first character, identifiers can have any combination of characters. Step 3 − A keyword cannot be used as an identifier. Step 4 − Most importantly, identifiers are case sensitive. Step 5 − Examples of legal identifiers: age, $salary, _value, __1_value. Step 6 − Examples of illegal identifiers: 123abc, -salary.

Top 10 Websites for Advanced Java Developers

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

730 Views

There are many sites which are a good resource for java interview questions-answers. Following is the list of most popular websites.Tutorialspoint - www.tutorialspoint.comStackOverflow - www.stackoverflow.comDZone - www.dzone.comWikipedia - www.wikipedia.orgIBM Developer Works - www.ibm.com/developerworks/java/TechGig - www.techgig.comGitHub - www.github.comJava documentation - docs.oracle.com/javase/Coursera - www.coursera.org/JavaWorld - www.javaworld.com/

Put Two Public Classes in a Java Package

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

458 Views

Yes. The only condition is to have one public class in separate java file.

Single Level Inheritance in Java

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

14K+ Views

Single Level inheritance - A class inherits properties from a single class. For example, Class B inherits Class A.Example Live Democlass Shape {    public void display() {       System.out.println("Inside display");    } } class Rectangle extends Shape {    public void area() {       System.out.println("Inside area");    } } public class Tester {    public static void main(String[] arguments) {       Rectangle rect = new Rectangle();       rect.display();       rect.area();    } }OutputInside display Inside areaHere Rectangle class inherits Shape class and can execute two methods, display() and area() as shown.

Global Variables in Java

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

900 Views

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

Difference Between Time Clock and Time Timer

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

603 Views

The function time.time() returns the time in seconds since the epoch, i.e., the point where the time starts.For Unix, the epoch is January 1, 1970. For Windows, the epoch is January 1, 1601.time.time() is used for benchmarking on Windows. time.time() behaves the same on both UNIX and Windows but time.clock() has different meanings.On UNIX, time.clock returns the current processor time expressed in seconds, i.e., the CPU time it takes to execute the current thread so far. While on Windows, it returns the wall-clock time expressed in seconds elapsed since the first call to this function, based on the Win32 function ... Read More

Advertisements