Basic Router Configuration, Static Routing Implementation
Working-Network Example
...
linked List
Posted By:
Netra
April 29, 2019

A linked list is a linear data structure where each element is a separate object. Linked list elements are not stored at contiguous location; the elements are linked using pointers. Each node of a list is made up of two items - the data and a reference to the next node....
Categories:
Linear linked list
FSU Technical Festival in Pashchimanchal Pokhara
Posted By:
Netra
July 15, 2018

The Free Students’ Union ( FSU), Paschimanchal Campus is going to organize ‘FSU Technical Festival’ on the 3rd,4th and 5th of Shrawan (19th,20th and 21st of July).
The
program is aimed for the promotion of the technical knowledge and
skills of the students...
Robocup 2018
Posted By:
Netra
July 09, 2018

ROBOCUP-2018, is a robot football competition. This season, we will provide a different taste in football while entire world is shouting out loud supporting their favorite teams in World Cup 2018. Robot football is a new flavor for football fans while a significant milestone...
Enqueue and Dequeue Operation
Posted By:
Netra
June 26, 2018

Enqueue Operation
Queues maintain two data pointers, front and rear. Therefore, its operations are comparatively difficult to implement than that of stacks.
The following steps should be taken to enqueue (insert) data into a queue −
Step 1 − Check if the queue is full.
Step...
Categories:
Enqueue and Dequeue opn
Infix to Prefix Conversion
Posted By:
Netra
June 26, 2018

While we use infix expressions in our day to day lives. Computers
have trouble understanding this format because they need to keep in mind
rules of operator precedence and also brackets. Prefix and Postfix
expressions are easier for a computer to understand and evaluate....
Categories:
infix to prefix conversion
Infix to Postfix Conversion
Posted By:
Netra
June 26, 2018

Infix expression:The expression of the form a op b. When an operator is in-between every pair of operands.
Postfix expression:The expression of the form a b op. When an operator is followed for every pair of operands.
Algorithm
1. Scan the infix expression from left...
Categories:
Infix to Postfix Conversion
Gauss Elimination Method(Algorithm and Source code)
Posted By:
Netra
June 16, 2018

Gauss Elimination method can be adopted to find the solution of linear simultaneous equations arising in engineering problems. In the method, equations are solved by elimination procedure of the unknowns successively.
The method overall reduces the system of linear simultaneous...
Categories:
Gauss elimination method