All Medium Articles
The netstat command is like a special tool in Linux that helps you understand and check things about how your computer connects to the internet.… Read More
How are cookies used in a website  A cookie is a randomly generated alphanumeric string that is generated when you visit a webpage and is… Read More
Speech Recognition is an important feature in several applications used such as home automation, artificial intelligence, etc. This article aims to provide an introduction to… Read More
Sending Email is a basic requirement regardless of which platform you are working on like JAVA, JavaEE, Python etc. Sending Email may be required to… Read More
Computers are often connected to each other on a network. They send requests to each other in the form of packets that travel from the… Read More
Image is basically combination of individual pixel (dots) information. When we write that image is of 620 X 480 size, it means that image has… Read More
Prerequisite – Lists in Python Predict the output of the following Python programs.  Program 1   Python list = [1, 2, 3, None, (1, 2, 3, 4,… Read More
Given a number n, find out the n-th positive number made up of even digits (0, 2, 4, 6, 8) only. First few numbers made… Read More
Given a real number between 0 and 1 (e.g., 0.72) that is passed in as a double, print the binary representation. If the number cannot… Read More
Prerequisite – Strings in Python Predict the output of the following Python programs. These question set will make you conversant with String Concepts in Python… Read More
PL/SQL is a block-structured language that enables developers to combine the power of SQL with procedural statements. A stored procedure in PL/SQL is nothing but… Read More
Thread is a line of execution within a program. Each program can have multiple associated threads. Each thread has a priority which is used by… Read More
Given an array of n numbers and a number of queries are also given. Each query will be represented by two integers l, r. The… Read More
How to Implement stack using a priority queue(using min heap)? Asked In: Microsoft, Adobe.  Solution: In the priority queue, we assign priority to the elements… Read More
This class implements IP socket address( combination of IP address and port number). The objects of this class are immutable and can be used for… Read More
A semaphore controls access to a shared resource through the use of a counter. If the counter is greater than zero, then access is allowed.… Read More
We are given a variable n, we need to find whether Fibonacci number will be a multiple of 10 or not.  Examples: Input : 15Output… Read More
Vmware conducted their online exam via hirepro. Round 1 : There were 3 sections quants, Technical questions and OOPs based questions, no section had negative… Read More
In Java, the Runtime class is used to interact with Every Java application that has a single instance of class Runtime that allows the application… Read More
Design a parking lot using object-oriented principles. Asked In : Amazon, Apple, Google, and many more interviews Solution: For our purposes right now, we’ll make… Read More