All Basic Articles
Prerequisite – Different ways to create objects in Java Java programming language is all about classes and objects as it is an object-oriented programming language.… Read More
Prerequisites: Find current weather of any city using openweathermap API The idea of this article is to provide a simple GUI application to users to… Read More
Bootstrap 5 Badges are small components used to highlight specific information, typically in lists or inline with other content. They provide visual cues through colored… Read More
Call by Value: In this method, values of actual parameters are copied to the function’s formal parameters, and the two types of parameters are stored… Read More
The d3.area() method in D3.js is used to return an area generator with default settings that can be further used to create areas. Syntax: d3.area()… Read More
An environment in artificial intelligence is the surrounding of the agent. The agent takes input from the environment through sensors and delivers the output to… Read More
Byte code is an intermediate code between the source code and machine code. It is a low-level code that is the result of the compilation… Read More
Let’s see the program for getting all 2D diagonals of a 3D NumPy array. So, for this we are using numpy.diagonal() function of NumPy library.… Read More
For plotting graphs in Python, we will use the Matplotlib library. Matplotlib is used along with NumPy data to plot any type of graph. From… Read More
Let us see how to compute matrix multiplication with NumPy. We will be using the numpy.dot() method to find the product of 2 matrices. For… Read More
Numpy library gives us functions such as real() and imag() to find real and imaginary parts of a complex number.  real() : To find real… Read More
The ‘Back‘ button has many different uses in many different android apps. While some app developers use it to close their apps, some use it… Read More
Unlike other languages Java, C++, etc. Python is a strongly, dynamically-typed language in which we don’t have to specify the data type of the function’s… Read More
In this article, we are going to learn how to set up a simple and local HTTP server using Python. An HTTP server can be… Read More
Are you bored with sending birthday wishes to your friends or do you forget to send wishes to your friends or do you want to… Read More
Given an array A[] consisting of distinct elements, the task is to obtain the largest possible modulus value that remains after repeatedly replacing adjacent elements… Read More
Prerequisite : Physical and Logical Data Independence  1. Physical Data Independence : The physical data independence is basically used to separate conceptual levels from the internal/physical… Read More
1. Walkthrough : Walkthrough is a method of conducting informal group/individual review. In a walkthrough, author describes and explain work product in a informal meeting… Read More
In a joint family of seven persons L, M, N, O, P, Q, and R, two are married couples. R is a housewife and her… Read More
Given a String, convert its characters to unicode characters. Input : test_str = ‘gfg’  Output : \u0067\u0066\u0067  Explanation : Result changed to unicoded string.  Input… Read More