All Medium Articles
Hi all, Zscaler visited our campus in the month of October 2021, the process took only 4-5 days to complete. Two profiles were offered Associate… Read More
There were 6 rounds: Round 1(Online Assessment): There were 20 questions 10 for general aptitude and 10 for C output. The test was for 4… Read More
In This article, we will learn how to create vertical menus by using HTML and CSS. Vertical Menu: We can create a vertical menu in… Read More
In this article, we will see an SQL query to concatenate two-column into one with the existing column name. We can perform the above activity… Read More
In SQL, sometimes we need to update multiple records in a single query. We will use the UPDATE keyword to achieve this. For this, we… Read More
The atoi() function in C takes a string (which represents an integer) as an argument and returns its value of type int. So basically the… Read More
Packet filtering firewalls check the source and destination IP addresses, protocols(User Datagram Protocol (UDP) and Transmission Control Protocol (TCP)), and port addresses as well. If… Read More
Department: Computer Science and Engineering Company placed: Walmart Labs, Bangalore Job Position: Software Engineer – II Job selection: There were a total of 4 rounds… Read More
Class Diagram is the way to represent the relationship between the classes. In this article, we will see about the class diagram for the College… Read More
The airport is a complex system in which thousands of domestic and international flights function every day and it needs proper planning and execution to… Read More
Passwords are an essential part of the cisco router access control methods. These are used to restrict access to a CISCO router; As there is… Read More
Frame Relay is a packet-switching network protocol that is designed to work at the data link layer of the network. It is used to connect… Read More
An element in a sorted array can be found in O(log n) time via binary search. But suppose we rotate an ascending order sorted array… Read More
contentEquals() method of String class is used to compare the strings. There are two types of contentEquals method available in java.lang.String with different parameters: contentEquals(StringBuffer… Read More
ProtocolFamily is a java Interface. The java.net.ProtocolFamily represents a family of communication protocols. Java.net.StandardProtocolFamily implements ProtocolFamily Interface. public interface ProtocolFamily Methods of java.net.ProtocolFamily java.net.ProtocolFamily interface… Read More
Given a Roman numeral, the task is to find its corresponding decimal value. Example :  Input: IXOutput: 9IX is a Roman symbol which represents 9… Read More
Given a linked list, write a function to reverse every k nodes (where k is an input to the function).  Example:  Input: 1->2->3->4->5->6->7->8->NULL, K =… Read More
Write a function rotate(ar[], d, n) that rotates arr[] of size n by d elements.  Rotation of the above array by 2 will make array… Read More
Given an unsorted array of nonnegative integers, find a continuous subarray which adds to a given number. Examples :  Input: arr[] = {1, 4, 20, 3,… Read More
Given an unsorted array of nonnegative integers, find a continuous subarray which adds to a given number. Examples :  Input: arr[] = {1, 4, 20, 3,… Read More