All Basic Articles
The size attribute in HTML is used to specify the initial width for the input field and the number of visible rows for the select… Read More
The HTML autofocus attribute is a powerful tool that enhances user experience by automatically setting the focus to a specific element when a webpage loads.… Read More
A logical address is generated by the CPU while a program is running. The logical address is a virtual address as it does not exist… Read More
Given N numbers and two numbers L and R, the task is to print the count of numbers in the range [L, R] which are… Read More
Given an array arr[] of n integers, construct a Sum Array sum[] (of same size) such that sum[i] is equal to the sum of all… Read More
Python list operations are always desired to have shorthands as they are used in many places in development. Hence having knowledge of them always remains… Read More
Given an integer N, write a program that returns true if the given number is a palindrome, else return false. Examples:   Input: N = 2002 Output:… Read More
Given an array arr[] of N elements. The task is to check if the array is PalinArray or not i.e., if all elements of array… Read More
It was a pool campus drive for Internship and Full time employment. 3 colleges were called at NXP Noida office: Round 1: (Pen paper round)… Read More
In this article, we are going to see that absolute and relative imports in Python. Working of import in Python Import in Python is similar… Read More
Linux is community-developed and open source operating system for computers, servers, mainframes, embedded devices, and mobile devices. It is supported on nearly every major computer… Read More
Given an array arr[] of size n ? 3, the task is to find the minimum possible difference between the maximum and the minimum element… Read More
The program must accept an integer N as the input. The program must print the desired pattern as shown in the example input/ output. Examples:… Read More
The pollFirst() method of TreeSet in Java is used to retrieves and removes the first (lowest) element, or returns null if this TreeSet is empty.… 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
host command in Linux system is used for DNS (Domain Name System) lookup operations. In simple words, this command is used to find the IP… Read More
The break command in Linux is primarily used within loops to exit or terminate the loop prematurely based on certain conditions. It offers a quick… Read More
Given an array arr[], the task is to count all the valid pairs from the array. A pair (arr[i], arr[j]) is said to be valid… Read More
A program is called recursive when an entity calls itself. A program is called iterative when there is a loop (or repetition). Example: Program to… Read More
The border-right-color Property is used to set the color of the right-border in an Element. It is mandatory to declare the border-style or the border-left-style… Read More