Windows Forms is a Graphical User Interface(GUI) class library which is bundled in .Net Framework. Its main purpose is to provide an easier interface to develop the a...
Share
CSS allows to adjust the height of an element using the height property. While there are several units to specify the height of an element. The vh is a relative unit ...
Share
The innerWidth property in JavaScript returns the width and innerHeight property returns the height of window content area.
Syntax:
window.innerWidth
window.innerHeig...
Share
Window.blur() Method
The blur() method is used to remove focus from the current window. i.e, It send the new open Window to the background.
Syntax:
Window.blur()
Para...
Share
Page print in JavaScript is a simple code in JavaScript used to print the content of the web pages.
The print() method prints the contents of the current window.
It...
Share
The Browser Object Model (BOM) is a browser-specific convention referring to all the objects exposed by the web browser. The BOM allows JavaScript to “interact...
Share
Given an array and an integer k, find the maximum for each and every contiguous subarray of size k.
Examples :
Input :
arr[] = {1, 2, 3, 1, 4, 5, 2, 3, 6}
k = 3
Outp...
Share
Prerequisite : Stop and Wait ARQ
The Stop and Wait ARQ offers error and flow control, but may cause big performance issues as sender always waits for acknowledgement ...
Share
Please refer this as a prerequisite article.
Sliding Window Protocol (sender side)| set 1
Sliding Window Protocol is actually a theoretical concept in which we have o...
Share
Prerequisites – Stop & Wait, Go Back N, Selective Repeat
Summary of all the protocols –
Before starting with the questions a quick recap for all t...
Share