Updated on: 22nd Sep 2020

Robotic Process Automation Career Scope

Ratings()

The robotic process automation is basically a software in which a robot is involved and used to perform human activities. These robots are used to carry out the organizational tasks and they are organized in such a way that they can manage any data or actions for the current applications which are used to carry […]

Read More

Updated on: 22nd Sep 2020

AWS EC2 Instance Types

Ratings()

AWS EC2 Instance Types In general, Amazon EC2 instances types provide you with the flexibility and scalability with different computing, memory, and storage specifications within each instance family. EC2 instances are broadly categorized on the basis of budget and workload requirements. The type of an AWS instance determines the underlying hardware of the instances which […]

Read More

Updated on: 22nd Sep 2020

Microsoft Azure Portal

Ratings()

Azure portal The Azure portal is a web-based, unified console that provides an alternative to command-line tools. With the Azure portal, you can manage your Azure subscription using a graphical user interface. You can build, manage, and monitor everything from simple web apps to complex cloud deployments. Create custom dashboards for an organized view of […]

Read More

Updated on: 22nd Sep 2020

Different types of Joins in SQL Server

Ratings()

This article will provide an overview of the SQL Join and cover all of the SQL join types including inner, self, cross and outer. For inner joins we’ll be discussing Equi and Theta joins. The ability to combine results from related rows from multiple tables is an important part of relational database system design. In […]

Read More

Updated on: 22nd Sep 2020

Python Split Method with Example

Ratings()

Python String split() Method Python split() method splits the string into a comma separated list. It separates strings based on the separator delimiter. This method takes two parameters and both are optional. It is described below. Signature split(sep=None, maxsplit=-1)   Parameters sep: A string parameter acts as a seperator. maxsplit: Number of times split perform. Return […]

Read More

Updated on: 22nd Sep 2020

What is SSRS?

Ratings()

SSRS SQL Server Reporting Services (SSRS) is a reporting software that allows you to produce formatted reports with tables in the form of data, graphs, images, and charts. These reports are hosted on a server that can be executed any time using parameters defined by the users. It is part of Microsoft SQL Server Services […]

Read More

Updated on: 22nd Sep 2020

Python Enumerate

Ratings()

The enumerate() method adds counter to an iterable and returns it (the enumerate object). The syntax of enumerate() is: enumerate(iterable, start=0) enumerate() Parameters enumerate() method takes two parameters: iterable – a sequence, an iterator, or objects that supports iteration start (optional) – enumerate() starts counting from this number. If start is omitted, 0 is taken […]

Read More

Updated on: 22nd Sep 2020

Inheritance in Java

Ratings()

The process by which one class acquires the properties(data members) and functionalities(methods) of another class is called inheritance. The aim of inheritance is to provide the reusability of code so that a class has to write only the unique features and rest of the common properties and functionalities can be extended from the other class. […]

Read More

Updated on: 22nd Sep 2020

AWS Vs Azure

Ratings()

What is AWS? AWS services are designed in such a way that they work with each other and produce a scalable and efficient outcome. AWS offering services are categorized into 3 types such as Infrastructure as a service (IaaS), software as a service (SaaS) and platform as a service (PaaS). AWS was launched in 2006 […]

Read More

Updated on: 22nd Sep 2020

Top Highest Paying Tech Jobs in India

Ratings()

A majority of students soon after finishing their studies start their job hunt. Sometimes they are quite desperate to settle for any job they get because of several financial and personal reasons. A major chunk of those students leave the job after some time either due to loss of interest or financial crunch or the […]

Read More

Updated on: 22nd Sep 2020

Amazon Web Services – WorkMail

Ratings()

Read More

Updated on: 22nd Sep 2020

How to Install Jenkins on Windows?

Ratings()

How to Install Jenkins on Windows?  Jenkins is one of the most popular tools for continuous integration and continuous delivery on any platform. A java application, Jenkins has many plugins for automating almost everything at the infrastructure level. The use of Jenkins has widely increased rapidly due to a rich set of functionalities, which it […]

Read More

Updated on: 22nd Sep 2020

How to Take A Screenshot in Selenium WebDriver?

Ratings()

Taking Screenshot using Webdriver It’s very important to take a screenshot when we execute a test script. When we execute a huge number of test scripts, and if some test fails, we need to check why the test has failed. It helps us to debug and identify the problem by seeing the screen shot. In […]

Read More

Updated on: 22nd Sep 2020

Hadoop Vs Apache Spark

Ratings()

DIFFERENCES BETWEEN HADOOP AND SPARK The following sections outline the main differences and similarities between the two frameworks. We will take a look at Hadoop vs. Spark from multiple angles. Some of these are cost, performance, security, and ease of use.The table below provides an overview of the conclusions made in the following sections. HADOOP […]

Read More

Updated on: 22nd Sep 2020

Init in Python

Ratings()

The __init__ method There are many method names which have special significance in Python classes. We will see the significance of the __init__ method now. The __init__ method is run as soon as an object of a class is instantiated. The method is useful to do any initialization you want to do with your object. […]

Read More