Top 10 Websites for Advanced Java Developers

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

744 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

466 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

921 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

618 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

Atomic Variables in Java

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

462 Views

Yes, from Java 8 onwards, java.util.concurrent.atomic package contains classes which support atomic operations on single variables preventing race conditions or do not face synchronization issues. All classes in the atomic package have get/set methods. Each set method has a happens-before relationship with any subsequent get() method call on the same variable. import java.util.concurrent.atomic.AtomicInteger; class AtomicCounter { private AtomicInteger counter = new AtomicInteger(0); public void increment() { counter.incrementAndGet(); } public void decrement() { counter.decrementAndGet(); } public int value() { return counter.get(); } }

Iterate Over Dictionaries Using For Loops in Python

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

375 Views

Even though dictionary itself is not an iterable object, the items(), keys() and values methods return iterable view objects which can be used to iterate through dictionary. The items() method returns a list of tuples, each tuple being key and value pair. >>> d1={'name': 'Ravi', 'age': 23, 'marks': 56} >>> for t in d1.items(): print (t) ('name', 'Ravi') ('age', 23) ('marks', 56) Key and value out of each pair can be separately stored in two variables and traversed like this − >>> d1={'name': 'Ravi', 'age': 23, 'marks': 56} >>> for k, v in d1.items(): print (k, ... Read More

Get Natural Logarithm of 10 in JavaScript

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

587 Views

To get the Natural logarithm of 10, use the Math.LN10 property in JavaScript. It returns the natural logarithm of 10, which is approximately 2.302.You can try to run the following code to get Natural logarithm of 10:Example Live Demo           JavaScript Math LN10 Property                        var property_value = Math.LN10;          document.write("Property Value: " + property_value);          

Function Overloading in JavaScript

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

2K+ Views

JavaScript does not support Function Overloading. The following shows function overloading − function funcONE(x,y) { return x*y; } function funcONE(z) { return z; } The above will not show an error, but you won't get desired results. On calling, // prints 5 funcONE(5); // prints 5, not 30 funcONE(5,6); JavaScript does not support function overloading natively. If we will add functions with the same name and different arguments, it considers the last defined function.

Use SELECT Statement as Argument of MySQL IF Function

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

567 Views

It is quite possible to use a SELECT statement as the first argument of MySQL IF() function. To make it understand, consider the data as follows from table ‘Students’. mysql> Select * from Students; +----+-----------+-----------+----------+----------------+ | id | Name | Country | Language | Course | +----+-----------+-----------+----------+----------------+ | 1 | Francis | UK | English | Literature | | 2 | Rick | ... Read More

Advertisements