Notes & Articles by Bimal — Page 7
-
B.Sc CSIT Seventh Semester Examination Form Notice: TU
The examination form fillup notice for the Bachelor’s of Computer Science and Information Technology (B.Sc CSIT) fourthyear, seventhsemester (Regular/ Part...
-
C Program to Check if a year is Leap or not
General Introduction: If we ask most of the people what leap year is, then most of them will reply "A year in every 4 years.". While it is partially true,...
-
C++ Program To Find Whether The Solutions Of A Quadratic Equation Are Real Or Imaginary
A quadratic equation is represented by: ax^2+bx+c=0(where a ≠ 0). Here, a, b and c are the coefficients of x^2, x and x^o. And x is the unknown variable (o...
-
C++ Program To Calculate Area And Perimeter Of Rectangle
Area of rectangle and perimeter can be found with the concept of class and object in ObjectOriented Programming. At first, a class called "Rectangle" is de...
-
If Statement in C
General Introduction: If statement is a powerful control statement and is used to control the flow of execution of statements in a program based on some co...
-
C Program to Execute Linear Search
General Introduction: Linear search is a searching technique where an element that is to be searched is searched linearly or sequentially. The element to b...
-
C Program to Find Gcd of Two Numbers using Iterative Euclid's Algorithm
General Introduction: In one of our previous example, we calculated the gcd of two numbers recursively using Euclid's algorithm. We can also find the gcd o...
-
C Program to Implement Binary Search
General Introduction: Binary Search is the more efficient searching technique compared to Linear Search. The binary search technique only takes 0(log n) ti...
-
Tribhuwan University's Annual Exam To Be Held After Dashain
The annual examination of Tribhuvan University (TU) will be held only after Dashain says TU. According to Pushparaj Joshi, Controller of Examinations, Exam...
-
Recursive Program to find the nth term in Fibonacci Series
Fibonacci Series: The Fibonacci series is the special series of the numbers where the next number is obtained by adding the two previous terms. The terms o...
-
Swan Song Summary
The Swan Song is generally the last performance, gesture or work done by the artist in their respective field before dying or getting retirement. And it is...
-
C Program to Implement Insertion Sort
Insertion Sort is the common sorting algorithm that we commonly use while arranging cards. In this algorithm, the elements are compared with the rest of th...