ZIP command in Linux with examples
ZIP is a compression and file packaging utility for Unix. Each file is stored in single .zip {.zip-filename} file with the extension .zip. zip is… Read More » The post ZIP command in Linux with...
View ArticleImplementation of Priority Queue in Javascript
Priority Queue is an extension of Queue having some properties as follows: Each element of the priority queue has an property associated with it. Elements… Read More » The post Implementation of...
View ArticleSORT command in Linux/Unix with examples
SORT command is used to sort a file, arranging the records in a particular order. By default, the sort command sorts file assuming the contents… Read More » The post SORT command in Linux/Unix with...
View ArticlePOSIX shared-memory API
Several IPC mechanisms are available for POSIX systems, including shared memory and message passing. Here, we explore the POSIX API for shared memory. POSIX shared… Read More » The post POSIX...
View ArticleImage Splicing | Set 1 (Introduction)
Image Forgery can be largely divided into two sub categories: (1) Copy Move Forgery (2) Image Splicing Copy Move Forgery Copy Move forgery is a… Read More » The post Image Splicing | Set 1...
View ArticleSets in JavaScript
In this article we would be discussing Set object provided by ES6. A set is a collection of items which are unique i.e no element… Read More » The post Sets in JavaScript appeared first on GeeksforGeeks.
View ArticleGzip Command in Linux
gzip command compresses files. Each single file is compressed into a single file. The compressed file consists of a GNU zip header and deflated data.… Read More » The post Gzip Command in Linux...
View ArticleMap in JavaScript
In this article we would be discussing Map object provided by ES6. Map is a collection of elements where each element is stored as a… Read More » The post Map in JavaScript appeared first on...
View ArticleCat command in Linux with examples
Cat(concatenate ) command is very frequently used in linux.It reads data from file and give their content as output.It helps us to create,view,concatenate files.So let… Read More » The post Cat command...
View ArticleSed Command in Unix
SED command in UNIX is stands for stream editor and it can perform lot’s of function on file like, searching, find and replace, insertion or… Read More » The post Sed Command in Unix appeared first on...
View ArticleImplementation of Stack in JavaScript
In this article, we would be implementing Stack Data Structure in Javascript. Stack is a very useful data structure and has a wide range of… Read More » The post Implementation of Stack in JavaScript...
View ArticleJavaScript Basic Array Methods
It’s recommended to go through Arrays in JavaScript . We would be discussing the following array function: Array.push() : Adding Element at the end of… Read More » The post JavaScript Basic Array...
View ArticleIntroduction to Object Oriented Programming in JavaScript
As JavaScript is widely used in Web Development, in this article we would explore some of the Object Oriented mechanism supported by JavaScript to get… Read More » The post Introduction to Object...
View ArticleImplementing Stack in C#
Stack is a linear data structure. It follows LIFO(Last In First Out) pattern for Input/output. Following three basic operations are performed in the stack: Push:… Read More » The post Implementing...
View ArticleHead command in Linux with examples
The head command, as the name implies, print the top N number of data of the given input. By default it prints the first 10… Read More » The post Head command in Linux with examples appeared first on...
View ArticleA Shell program To Find The GCD | Linux
The given problem asked in fico placement interview round. Find the gcd of two given numbers using shell scripting We are given two numbers A… Read More » The post A Shell program To Find The GCD |...
View ArticleTail command in Linux with examples
It is the complementary of head command.The tail command, as the name implies, print the last N number of data of the given input. By… Read More » The post Tail command in Linux with examples appeared...
View Articlewc command in Linux with examples
wc stands for word count. As the name implies, it is mainly used for counting purpose. It is used to find out number of lines,… Read More » The post wc command in Linux with examples appeared first on...
View ArticleAWK command in Unix/Linux with examples
Awk is a scripting language used for manipulating data and generating reports.The awk command programming language requires no compiling, and allows the user to use… Read More » The post AWK command in...
View Articletr command in Unix/Linux with examples
The tr command in UNIX is a command line utility for translating or deleting characters. It supports a range of transformations including uppercase to lowercase,… Read More » The post tr command in...
View Article