Asus ZenBook Pro 15 Laptop

asus zenbook 15

Asus ZenBook Pro 15 Laptop The Taiwanese electronics company – Asus, expanded its ZenBook range of laptop lineup by adding the high-end Asus ZenBook Pro 15 machine. The all-new ZenBook Pro 15 boasts high-end specifications such as Intel Core i9 processor, 4K display, Nvidia GeForce GTX 1050 GPU, GDDR5 VRAM and more. Asus stated that … Read more

Bihar board result 2018 : www.biharboard.ac.in

BSEB result

Bihar board result 2018 : www.biharboard.ac.in Bihar School Examination Board (BSEB) – Bihar 10th/ 12th results 2018 will be out after May 25 or in the first week of June as per the latest update regarding BSEB Matric and Intermediate results 2018. The announcement of BSEB results were shifted from May 14. The results of … Read more

Jio mhere App

jio

Jio mhere App Here is the good news for all teachers. Reliance Jio has launched its New Jio mhere mobile application to help teachers. This is a free app and Using this free mobile app on its mobile phone, Any teacher of India can take the attendance of his students. For this, teachers will be need … Read more

what is e sim : Subscriber identity module

sim card

what is e sim : Subscriber identity module An eSIM is a SIM card that is embedded in the mobile device. A SIM card is a small card that contains a mobile network subscriber’s account information. The SIM stores all information that is necessary to identify and authenticate the mobile subscriber. An eSIM will come in the … Read more

Basics of file handling in C language

Basics of file handling in C language There are two types of files, which can be handled through C programming language: Character Oriented File Handling/Text files Binary Oriented File Handling/Binary files For file handling, we use a structure named “FILE” which is declared in stdio.h header file. Some important and most useful file handling functions: … Read more

C program to print Fibonacci series

C program to print Fibonacci series Fibonacci series is a series of number in which each number is the sum of preceding two numbers. for example: 0 1 1 2 3 5 8 13 21  … The next number is found by adding up the two numbers before it as : The 2 is found … Read more

Pyramid Programs in C

Pyramid Programs in C Here is a example of c program to print pyramid structure as below:         *        * *       * * *      * * * *     * * * * * Let’s start writing pyramid program #include<stdio.h> #define MAX 5 int main() { int i,j; int space=4; /*run loop (parent loop) till number of … Read more

Insertion Sort Algorithm

algorithm

Overview : Insertion Sort Algorithm Sorting is the process of arranging a list of elements in a particular order (Ascending or Descending). What is Insertion sort In insertion sort algorithm, every iteration moves an element from unsorted portion to sorted portion until all the elements are sorted in the list. Insertion Sort Algorithm sorts array by … Read more

an algorithm to check prime number

algorithm

An algorithm to check prime number A number that is divisible only by itself and 1, is prime number Example of prime numbers are 2, 3, 5, 7, 11, 13, 17, 19, 23…. etc Algorithm Step 1: Start Step 2: Declare variables n,i,flag. Step 3: Initialize variables flag←1 i←2 Step 4: Read n from user. Step … Read more

Bubble Sort Algorithm

algorithm

Bubble Sort : Overview Bubble sort is considered the simplest sorting algorithm. Bubble Sort is used to sort a given set of n elements provided in form of an array with n number of elements. Bubble Sort compares all the element one by one and sort them based on their values. It is known as … Read more