All Basic Articles
Total there were four rounds. Round 1: It was a objective written test. Pattern was somewhat related to GATE but level of the questions were average.… Read More
A Thread class is responsible for creating and managing a thread in multi-thread programming. It provides a property known as IsAlive to check if the… Read More
A Thread class is responsible for creating and managing a thread in multi-thread programming. It provides a property known as IsThreadPoolThread to check if the… Read More
Search Engine Optimization (SEO) is a set of practices and techniques that focus on increasing a website’s visibility and ranking in search engine results. But… Read More
Why do we need branch prediction? The gain produced by Pipelining can be reduced by the presence of program transfer instructions eg JMP, CALL, RET… Read More
According to the Chomsky Hierarchy, the requirement of a certain type of grammar to generate a language is often clubbed with a suitable machine that… Read More
Let’ see how to combine multiple columns in Pandas using groupby with dictionary with the help of different examples. Example #1: # importing pandas as… Read More
Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric Python packages. Pandas is one of those packages… Read More
Some of the disadvantages of Java are: 1- Performance Java programs take much longer time to run compared to C/C++. 2- Memory Since Java Programs… Read More
Similarities between C and C++ are:  Both the languages have a similar syntax.Code structure of both the languages are same.The compilation of both the languages… Read More
The program must accept a string S and an integer N as the input. The program must print the desired pattern as shown below: Examples: … Read More
Pandas is a very powerful and scalable tool for data analysis. It supports multiple file format as we might get the data in any format.… Read More
Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages… Read More
Classification and Regression are two major prediction problems that are usually dealt with in Data Mining and Machine Learning. We are going to deal with both… Read More
The element1~element2 selector in CSS is used to match the occurrences of element2 followed by element1. It is not important to element1 immediately followed by… Read More
Course Navigation  In the last article, we began building the main section of the website and have completed the first section. Let us now move… Read More
Course Navigation  We just completed building the header for our website. Let’s start building the main content for the website. As we described while creating… Read More
In this article, we will go through all the basic stuff required to write HTML. There are various tags that we must consider and know… Read More
Given the Selling Price(SP) and percentage profit or loss of a product. The task is to Calculate the cost price(CP) of the product.Examples:   Input: SP… Read More
Decorators are a very powerful and useful tool in Python since it allows programmers to modify the behaviour of function or class. Decorators allow us… Read More