Cryptocurrency is a digital currency

Cryptocurrency can be described as a digital currency in which encryption techniques are used to regulate generation of units of currency and verify the transfer of funds, operating independently of a central bank. They are a type of digital ,alternative and virtual currencies that use decentralized control as opposed to centralized central banking and electronic … Read more

Java Character Array To String Example

In this post we will write a program in Java to convert character array to string. Let’s first understand the difference between them. The only difference between them is the “\O”, a string ends with this special character while a character array does not. Below is the program to convert character array t0 string: /* … Read more

Java Date to String Example

[ad_1] /* Java Date to String Example This Java Date to String example shows how to convert java.util.Date to String in Java. */   import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date;   public class ConvertDateToStringExample {   public static void main(String args[]){ //create new java.util.Date object Date date = new Date(); /* * To convert java.util.Date … Read more

WebDriver – Using Actions Class

Lights, camera, action! Yes, today its all about Actions. Oh, I am not talking about those fight sequences you watch in movies but about the keyboard and mouse actions. 😛 Selenium WebDriver provides a user-facing API for performing complex user gestures. We want automation everywhere! So, instead of using keyboard and mouse directly, we can … Read more

Method resolution order in Python Inheritance

Method Resolution Order : Method Resolution Order(MRO) it denotes the way a programming language resolves a method or attribute. Python supports classes inheriting from other classes. The class being inherited is called the Parent or Superclass, while the class that inherits is called the Child or Subclass. In python, method resolution order defines the order … Read more