All Basic Articles
Question 1: What is the output of the following program? str1 = '{2}, {1} and {0}'.format('a', 'b', 'c')  str2 = '{0}{1}{0}'.format('abra', 'cad')  print(str1, str2)  (A)… Read More
Given an integer basic and a character grade which denotes the basic salary and grade of a person respectively, the task is to find the… Read More
Singleton Class in Kotlin is also called as the Singleton Object in Kotlin. Singleton class is a class that is defined in such a way… Read More
Question 25:Find the output of the following program: counter = {}     def addToCounter(country):      if country in counter:          counter[country] += 1     else:          counter[country] = 1… Read More
Consider the graph shown below : Use Kruskal’s algorithm to find the minimum spanning tree of the graph. The weight of this minimum spanning tree… Read More
Root Cause Analysis (RCA) is considered to be one of best techniques for quality improvement that is required to identify, understand, and then resolve any… Read More
The LEFT() function in MySQL is used to extract a specified number of characters from the left side of a given string. It uses its… Read More
Arithmetic Instructions are the instructions which perform basic arithmetic operations such as addition, subtraction, multiplication, etc. AVR micro-controller has 2 operands which are actually registers… Read More
In this article, we are going to discuss the classification of data in which we will cover structured, unstructured data, and semi-structured data. Also, we… Read More
Given two integers N and E which denotes the number of nodes and the number of edges of an undirected graph, the task is to… Read More
1. Adhoc Testing : This testing requires no documentation or any specific procedure to be followed. Since this testing targets at discovering defects via a… Read More
1. RAD Model :  RAD model refers to Rapid Application Development and it is a type of Incremental Model. The components or functions are developed… Read More
1. RAD Model: RAD model refers to Rapid Application Development and it is a type of Incremental Model. The components or functions are developed in parallel… Read More
Consider the following language: L​1​ = { an+m bn am | n, m ≥ 0 } L​2 = { an+m bn+m an+m |n, m ≥… Read More
1. Prototype Model: The prototype model is a software development life cycle model which is used when the customer is not known completely about how… Read More
​The Software Requirement Specification(SRS) is said to be _________ if and only if no subset of individual requirements described in it conflict with each other.… Read More
Text Mining and Natural Language Processing (NLP) are both fields within the broader domain of computational linguistics, but they serve distinct purposes and employ different… Read More
In this article, we are going to cover ELT function with examples. In ELT function, number field will state that how many strings will be… Read More
Given two integers N and E, where N represents the number of full water bottles and E represents the number of empty bottles that can… Read More
What is the binary search algorithm? Binary Search Algorithm is used to find a certain value of x for which a certain defined function f(x) needs… Read More