Updated on: 22nd Sep 2020

Hash in Python

Ratings()

Python hash() The hash() method returns the hash value of an object if it has one. Hash values are just integers that are used to compare dictionary keys during a dictionary lookup quickly. Internally, the hash() method calls __hash__() method of an object which is set by default for any object. We’ll look at this […]

Read More

Updated on: 21st Sep 2020

Salesforce Tutorial

Ratings()

Recently, cloud computing is a great buzz in the IT industry, and one of the most popular cloud platforms having an immense impact on the computing world is the Salesforce. In this blog, we will discuss what is Salesforce, why use Salesforce and different industries where Salesforce can be utilized? This is an ultimate guide […]

Read More

Updated on: 21st Sep 2020

Machine Learning Tutorial

Ratings()

We are living in the ‘age of data’ that is enriched with better computational power and more storage resources. This data or information is increasing day by day, but the real challenge is to make sense of all the data. Businesses & organizations are trying to deal with it by building intelligent systems using the […]

Read More

Updated on: 21st Sep 2020

Goto Statement in Python

Ratings()

GOTO is a statement of the early beginnings of programming. It is rarely used in high-level code today.Code that makes use of it is called Spaghetti code by some people. I have almost never seen goto statements in code, so I’ve been curious about them. Python Python does NOT offer GOTO. However, somebody made a […]

Read More

Updated on: 21st Sep 2020

Robot Class in Selenium Webdriver

Ratings()

Using Robot Class we can handle keyboard and mouse events in Selenium. Robot Class can help in upload / download files using selenium web driver. Methods in Robot Class can be effectively used to do the interaction with popups in Web Applications. Robot Class can easily be integrated with current automation framework (keyword, data-driven or […]

Read More

Updated on: 21st Sep 2020

Literals in Java

Ratings()

Java literals are the fixed values assigned to a variable. A literal doesn’t require any computation and it is possible to assign a literal to a variable of a primitive type and also to a String even though String is not a primitive type in Java. Types of Literals Literals in Java can be classified […]

Read More

Updated on: 21st Sep 2020

Schema in SQL

Ratings()

A schema in a SQL database is a collection of logical structures of data. The schema is owned by a database user and has the same name as the database user. From SQL Server 2005, a schema is an independent entity (container of objects) different from the user who creates that object. In other words, […]

Read More

Updated on: 21st Sep 2020

Polymorphism in Oops

Ratings()

Polymorphism is an important concept of object-oriented programming Polymorphism means existing in many forms.  Polymorphism is an object oriented programming feature that allows us to perform a single action in different ways. Example of Polymorphism> In real life, we, humans do it all the time. We become ‘Brother’, ‘Father’, ‘Son’, ‘Husband’… etc. And all these […]

Read More

Updated on: 21st Sep 2020

Socket Programming in Python

Ratings()

Socket programming is the way of enabling the communication for sending and receiving the data between the socket endpoints, by using the code logics. The sockets can be a node, such as a server and a single or multiple client systems. In Python, socket programming can be put into operation with the help of the […]

Read More

Updated on: 21st Sep 2020

Complete list of SAP modules

Ratings()

SAP Modules List  ERP SAP software provides various SAP modules, such as FICO, MM, HR, ABAP, SD, PP, PS, CRM, etc for handling day to day business activities of an organization. SAP Modules are further divided in to two types of modules i.e. SAP Functional modules & SAP Technical modules. Each module of the SAP […]

Read More

Updated on: 21st Sep 2020

CSS Selectors in Selenium

Ratings()

CSS Selectors in Selenium are used to identify a user desired HTML web element. This fits into an element locator strategy of automated test development where the primary aim is to interact with page elements through different types of locators. There are several other methods to identify element locators such as id, name, class name, […]

Read More

Updated on: 21st Sep 2020

Object Class in Java

Ratings()

Object is an instance of a class while class is a blueprint of an object. An object represents the class and consists of properties and behavior. Properties refer to the fields declared within class and behavior represents to the methods available in the class. In the real world, we can understand an object as a […]

Read More

Updated on: 21st Sep 2020

PySpark Programming

Ratings()

PySpark is a Python API for Spark released by the Apache Spark community to support Python with Spark. Using PySpark, one can easily integrate and work with RDDs in Python programming language too. There are numerous features that make PySpark such an amazing framework when it comes to working with huge datasets. Whether it is […]

Read More

Updated on: 21st Sep 2020

Vector Class in Java

Ratings()

Vector implements List Interface. Like ArrayList it also maintains insertion order but it is rarely used in a non-thread environment as it is synchronized and due to which it gives poor performance in searching, adding, delete and update of its elements. Creation of vector class object There are three ways to create vector class object: […]

Read More

Updated on: 21st Sep 2020

What is UIPath?

Ratings()

Many enterprises are adopting digital methods for their operation because they understand that the future lies in routine operation being fully automated. Speed of execution and accuracy are the two biggest advantages of digitization. On the other side, the right tool and skilled manpower are the two biggest challenges of digitization. That is why the […]

Read More