WHAT IS ARTIFICIAL INTELLIGENCE (AI)? It depends who you ask. Back in the 1950s, the fathers of the field Minsky and McCarthy, described artificial intelligence as any task performed by a program or a machine that, if a human carried out the same activity, we would say the human had to apply intelligence to accomplish […]
Read More
In this post, we will see programs to convert decimal numbers to an equivalent binary number. We will see two Python programs, the first program does the conversion using a user defined function and in the second program we are using a in-built function bin() for the decimal to binary conversion. 1. Decimal to Binary […]
If you have ever worked on a web development project, you must have seen what JavaScript is like. JavaScript has been there for a long time now as the most popular scripting language for many web projects. Typescript is an open-source programming language most suited for large applications. It was developed by Microsoft in 2012, […]
What is ASAP Methodology? ASAP Methodology is a standard SAP-related project preparation and system implementation method, developed and updated by consultants involved in the implementation of SAP software products. The goal of ASAP methodology is to assist SAP as a project management design in the most efficient way possible. It is done by effectively optimizing […]
In the past few years, chatbots in Python have become wildly popular in the tech and business sectors. These intelligent bots are so adept at imitating natural human languages and conversing with humans, that companies across various industrial sectors are adopting them. From e-commerce firms to healthcare institutions, everyone seems to be leveraging this nifty […]
Sometimes while coding in Python, you will need to make a list as an input. While this might sound simple at first, it is often regarded as a complex task to accomplish for a beginner. Input a List in Python As you might already know, in order to accept input from the user in Python, […]
Hash table or a Hashmap in Python In computer science,a Hash table or a Hashmap is a type of data structure that maps keys to its value pairs (implement abstract array data types). It basically makes use of a function that computes an index value that in turn holds the elements to be searched, inserted, […]
The COBIT business orientation includes linking business goals with its IT infrastructure by providing various maturity models and metrics that measure the achievement while identifying associated business responsibilities of IT processes. The main focus of COBIT 4.1 was illustrated with a process-based model subdivided into four specific domains, including: Planning & Organization Delivering and Support […]
AWS Elasticsearch Amazon Elasticsearch Service (Amazon ES) is a managed service that makes it easy to deploy, operate, and scale Elasticsearch clusters in the AWS Cloud. Elasticsearch is a popular open-source search and analytics engine for use cases such as log analytics, real-time application monitoring, and clickstream analysis. AWS Elasticsearch Features AWS Elasticsearch has various […]
Frameworks In Python A framework is a collection of modules or packages which helps in writing web applications. While working on frameworks in python we don’t have to worry about the low level details such as protocols, sockets or thread management. Frameworks automate the common implementation of common solutions which gives the flexibility to the […]
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 […]
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 […]
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 […]
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 […]
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 […]
By registering here, I agree to LearnoVita Terms & Conditions and Privacy Policy