All Basic Articles
Given an array arr[][] containing pairs of integers in increasing order of GCDs, and an integer K, the task is to find a pair of… Read More
Given an alphanumeric string, consisting of a single alphabet X, which represents an expression of the form: A operator B = C where A, B… Read More
1. Worms : Worms are similar to a virus but it does not modify the program. It replicates itself more and more to cause slow down… Read More
The MySQL LOOP statement could be used to run a block of code or set of statements, again and again, depending on the condition. Stored… Read More
Here we will study the concept and uses of Parse Tree in Compiler Design. First, let us check out two terms : Parse : It… Read More
In this article, we are going to discuss life cycle phases of data analytics in which we will cover various life cycle phases and will… Read More
1. Academic Writing : Academic writing refers to a piece of writing which focuses on specific academic subject/topic. Through academic writing the writer intends to… Read More
1. Technical Writing : Technical writing is a piece of writing which focuses on factual and straight forward content and technical papers are published to… Read More
Given an array arr[] of size N consisting of equal length strings, the task is to check if it is possible to make all strings… Read More
L&T Infotech is basically a software company, and they hire not for a particular job role as you must be comfortable in doing all the… Read More
Sometimes, situations might arise due to either a windows bug or some malicious program that start menu tray won’t open even on the press, leaving… Read More
The solidity fallback function is executed if none of the other functions match the function identifier or no data was provided with the function call.… Read More
In this article we will see how we can set the window location in PYGLET module in python. Pyglet is easy to use but powerful… Read More
Multiple Enter Box : It is used to get the multiple input from the user at the single time, inputs can be any keyboard input,… Read More
In this article, we will explore the process of deleting data on the internet. To, do so we need to follow 3 crucial steps: Import… Read More
Introduction: What we generally call “weight” in our daily lives is theoretically referred to as mass, and it calculates the amount of matter in an… Read More
Question 2: What is the output of the following program? tuple = {}  tuple[(1,2,4)] = 8 tuple[(4,2,1)] = 10 tuple[(1,2)] = 12 _sum = 0… Read More
Question 19: What is the output of the following program? a = "This is a string" print(a.count("i")) (A) 1 (B) 2 (C) 3 (D) 4… Read More
Question 17: What is the output of the following program? def gfgFunction():      "Geeksforgeeks is cool website for boosting up technical skills"     return 1    print… Read More
Question 4: What is the output of the following program? line = "What will have so will" L = line.split('a')  for i in L:      print(i,… Read More