Honhar Engineer

Honhar Engineer
Thanks for visiting,stay connected for more updates !

Monday, October 28, 2013

Whatsapp Tips and Hacks

WhatsApp Messenger is a cross-platform mobile messaging app which allows you to exchange messages without having to pay for SMS. WhatsApp Messenger  is available for iPhone, BlackBerry, Android, Windows Phone and Nokia and yes, those phones can all message each other! Because WhatsApp Messenger uses the same internet...

Thursday, October 24, 2013

How to Install Galaxy S4 TouchWiz launcher on any Android phone

Along with the most anticipated Galaxy SIV Samsung also brought tons of new features. One of them is the Touchwiz 5 launcher. Linq’z QIrls’z Chinese is the guy behind this port for all devices. The developer has tested the launcher on most non-TouchWiz ROMs like CyanogenMod 10 and 10.1, AOKP, MIUI JB, Paranoid Android 3+ and others. The launcher works on almost all devices without any issues. But make sure your...

Track any Mobile No. in India Free

Now you can track maximum mobile no. owner name in India. There is one of the biggest database available for it. Easy Steps: 1. go to Site2sms.com. 2. Register here. 3. Now go through the below link- Locate Mobile No....

C program to implement LRU page replacement algorithm

IMPLEMENTATION OF LRU PAGE REPLACEMENT ALGORITHM AIM: To write a c program to implement LRU page replacement algorithm ALGORITHM : 1. Start the process 2. Declare the size 3. Get the number of pages to be inserted 4. Get the value 5. Declare counter and stack 6. Select the least recently used page by counter...

Program for FIFO Page Replacement Algorithm in C

IMPLEMENTATION OF FIFO PAGE REPLACEMENT ALGORITHM AIM To write a c program to implement FIFO page replacement algorithm ALGORITHM 1. Start the process 2. Declare the size with respect to page length 3. Check the need of replacement from the page to memory 4. Check the need of replacement from old page to new page...

Saturday, October 19, 2013

How to Find People on Twitter

There are many ways to locate other Twitter users, but quickest way to find people on Twitter is to enter their name in the search box at the top of your Twitter home page. In the right-side column, you'll see a list labeled "people results" containing names of Twitter users who have the name that you searched for as their Twitter username, Twitter real name, in their Twitter bio or some combination. Tweets that contain...

Thursday, October 3, 2013

How to Activate/Deactivate BSNL GPRS?

How to Activate BSNL GPRS? To activate GPRS by sending SMS. The SMS codes to get GPRS, 3G, MMS, LIVE TV services is listed below. SMS : GPRS<space>PRE to 53733, to get GPRS, 3G activated on your prepaid mobile phone within 72 Hours. But generally it starts within one day. SMS : Mobile Make<space>Model No. to 58355, to get the GPRS settings as per your mobile handset model No. Ex. : Nokia 6630 to 58355, will give...

Program of comparison between FCFS,SJF,PRIORTY & ROUND-ROBIN CPU Scheduling Algorithm

#include<stdio.h>#include<iostream.h>#include<conio.h>void main(){clrscr();//fcfsint temp=0,i,PR3[4],tq,B1[4],TAT1[4],B2[4],B3[4],B4[4],W1[4],SWT1=0,STT1=0;float AWT1=0.0,ATT1=0.0;char P1[4];for(i=0;i<3;i++){cout<<"Enter process names with their Burst Time and Priority(Ashish)\n";cin>>P1[i]>>B1[i]>>PR3[i];B2[i]=B1[i];B3[i]=B1[i];B4[i]=B1[i];}cout<<"\nEnter time slice for round...