All Easy Articles
Given a String. The task is to return the number of characters in the string. Examples: Input : test_str = ‘geeksforgeeks !!$*** best 4 all… Read More
Internet of Things (IoT) includes large number of smart devices connected to a broad internet network with the help of various networking technologies. Mostly these… Read More
Field Marketing is the marketing in which the products are shown in front of customers. It is also called direct selling or direct marketing. Field… Read More
Question 11: What is the output of the following program? T1 = (1)  T2 = (3, 4)  T1 += 5 print(T1) (A) TypeError (B) (1,… Read More
Given a matrix mat[][] of size M * N, the task is to find all matrix elements which are minimum in their respective row and… Read More
Given an array arr[] of N integers and an integer K, the task is to find a subarray of length K with a sum of… Read More
Given an array arr[] of size N, and an integer K, the task is to find the count of array elements arr[i] which are greater… Read More
Cryptography is the practice of securing useful information while transmitting from one computer to another or storing data on a computer. Cryptography deals with the… Read More
1. V-mode : V-model is the most important model that is used in the process of software testing. It is also known as Verification and… Read More
For Embedded software Online Test: Total 3 section (90 min) Individual timing cutoff 1.Aptitude section (25 questions)(35 min) Question based on general aptitude, quant, verbal.… Read More
In this article, we will see how to read Emails from your Gmail using Gmail API in Python. Gmail API is a RESTful API that… Read More
Prerequisite– Python tkinter In this article, we are going to write a python script to extract news articles from Google News Feed by using gnewsclient… Read More
The Sunbird library is used for feature engineering purposes. In this library, you will get various techniques to handle missing values, outliers, categorical encoding, normalization… Read More
Turtle is an inbuilt module of python. It enables us to draw any drawing by a turtle, methods defined in the turtle module, and by… Read More
In these articles, We will  write python scripts to translate English word to Hindi word and bind it with the GUI application. We are using… Read More
Pong is one of the most famous arcade games, simulating table tennis. Each player controls a paddle in the game by dragging it vertically across… Read More
A literal in Python is a syntax that is used to completely express a fixed value of a specific data type. Literals are constants that… Read More
Whenever a key is pressed or released, there are certain events that are triggered. Each of these events has a different meaning and can be… Read More
In this article, we will detect copy-paste commands Ctrl+V, and Ctrl+C using JavaScript. To detect the combination of keys with “Ctrl”, we use the ctrl… Read More
Given two integers N and K, the task is to count all N digits numbers whose sum of digits is divisible by K. Examples:  Input:… Read More