This is another sketch i had made some days back......
Sketch by Prabhat-- LOVE nt LOVE
This is another sketch i had made some days back......
A Tie To Recognise!!!!!
and my friend showed a good concern if they tend to follow the same rule,though it won't be surprising, for our enterings into the wash-rooms.
THERE MAY BE AN EMERGENCY CASE YAAR!!!!!
DAA DAA DAA DAA Merge And Heap
Here It Goes....:
DAA DAA DAA DAA Merge and Heap..
Humse ho gayi bhul!
Yes Sir! Yes Sir!
Karte ban gaye fool..
One class for Attendance.
One for Marks.
And One class for the poor girls....
Sitting in the class....
Add Labels in your blog
Follow Following Steps:
1.Log-in into your blogger account.
2.Click Customize (Appear Right-above corner of your Blog window).
3.Click on Layout.
4.Click on Add Gadgets.
5.Add LABELS Gadget.
Some Paintings
* Aravind Adiga The White Tiger (Atlantic) (WINNER)
*Sebastian Barry The Secret Scripture (Faber and Faber)
*Amitav Ghosh Sea of Poppies (John Murray)
*Linda Grant The Clothes on Their Backs (Virago)
*Philip Hensher The Northern Clemency (Fourth Estate)
* Steve Toltz A Fraction of the Whole (Hamish Hamilton)
Some Original Sketches
"A SENSE OF HUMOUR"
get the details below....
HOSTEL ALLOTMENT
*Registration will be started on 21st July 2009. Last date for registration is 23rd July 2009.
*Nobody will be entertained after 23rd July 2009 .
*If number of available seats are less, then seats will be accommodated according to the merit List.
*List is sorted according to last semester percentage then by the attendance in the last semester with no back logs.
*Indiscipline cases are not considered in this list.
So if any how that stinking environment didn't let you to study , it wont give you another chance to enter inside...
and THE DISTANCE TO YOUR HOME DOESN'T MATTER IF THE ANSWER SHEET CHECKER WAS FEELING DROWSY WHILE YOU STOOD WITH YOUR HANDS FOLDED TO YOUR WAIST SOMEHOW VISIBLE TO HIM THROUGH YOUR SHEET AND HE DROVE HIS PEN WITH THE SPEED OF A FERRARI TO GET YOU AWAY FROM HIS SIGHT TO NOT LET YOU DISTURB HIM
hostel allotment on the basis of ATTENDANCE...!!!!!!!!!!!!!!!!!!
"AREY JISKI ATTENDANCE KAM HAIN USI KE TO SABSE JYDA KAAM AYA HAIN HOSTEL"
Hey I have an IQ of 136
Free-IQTest.net - IQ Test
i gave a free test on a website www.free-iqtest.net
i don't know whether they are right or wrong but result of the test was
i have an IQ of 136
and it is pretty good i think....
:-)-<
EXAMS Finish
and m happy of that.
it was really a tuff task to study in summer..
NO LIGHT
NO FAN
SWEAT ALL OVER
Just impossible to handle.
I was happy so want to share with all of you...
now i will enjoy my summer vacations
Yepi!!!!!!!
Software Project Management Exam
one of the most boring subject in my education history...
i m really pissed off studying that subject!
i had attempted full paper but still not sure about my result...
any ways nw i have to study ERP byeeeeeee!!!!!!!
E-Mail using PHP script
< ?php
$name= $_POST['name'];
$email= $_POST['e-mail'];
$phone= $_POST['phone'];
$address= $_POST['address'];
$message= $_POST['message'];
$recipent="xyz@gmail.com";
$subject="Customer Query";
$mailheaders="From: "$name"." ".Phone No.:."$phone"." ".Address:."$address"";
$mailheaders .="Reply To: "$email"";
mail($recipent,$subject,$message,$mailheaders);
?>
I Did Not Vote
held in INDIA.
But i did not vote because i did not find any candidate from ghaziabad worth of my vote.
i think there should be a BLANK Vote or NO VOTE option in EVM( electronic voting machine)
so that these candidate may know that they are not worth of anything!
CHEERS!!!!!!! For INDIA
i hope next gov will be good for our country..
like all other previous governments
computer networks exam
this year our date sheet gonna kill us.
what the crap date sheet is this yaar!
i to give them the huge fuck who crated this date sheet!
zero gap for study in computer networks exam
this is the limit buddies!
i do not know how m going to pass this exam!!!!!!
god help me....
Destroy a session in PHP
< ?php
session_start();
session_destroy();
header("Location: logout.html");
?>
ATM - An alarm to police
Machine; enter your pin number reversed.
So if your number is 1254 mark 4521.
The ATM machine will give you your money, but will automatically recognize this as a plea for help and will alert the police unknown to the thief.
This option is in all ATM machines, but not many people know this.
Please pass this information on to others. No harm in keeping this in mind!!
IIT Roorkee Cognizance-2009
that was amazing moment
and that night is unforgettable to me.
here is that video...
Shortest Job First (SJF)-CPU Scheduling Algo in C
Code goes like that
# include < stdio.h>
# include < conio.h>
struct process
{
int pid ;
int burst ;
int wait ;
};
void main()
{
struct process p[5] , temp ;
int i,j,wait=0 ;
float twait;
clrscr();
for(i=0;i<5;i++)
{
p[i].pid = i+1 ;
printf("\nprocess p%d\n",i+1) ;
printf("\nenter burst time\n");
scanf("%d",&p[i].burst);
}
for(i=0;i<5;i++)
{ for(j=0;j<5;j++)
{
if(p[j].burst>p[i].burst)
{
temp=p[i];
p[i]=p[j] ;
p[j]=temp;
}
}
}
printf("\nprocess\t\tburst time\t\twaiting time\n");
for(i=0;i<5;i++)
{
p[i].wait=wait ;
printf("\np%d\t\t%d\t\t\t%d\n",p[i].pid,p[i].burst,p[i].wait);
wait = wait + p[i].burst ;
}
twait=wait;
printf("\n\n average waiting time= %f",(twait/5));
getch();
}
Priority Scheduling in C
code goes like that
#include< stdio.h>
#include< conio.h>
struct process
{
int pid;
int priority;
int comp;
int burst;
};
void main()
{
struct process p[5], temp;
int i,j, comp=0;
float tcomp;
clrscr();
for(i=0;i<5;i++)
{
p[i].pid = i+1;
printf("\nprocess p %d",i+1);
printf("\nenter burst time");
scanf("\n%d",&p[i].burst);
printf("\nenter priority ");
scanf("\n%d",&p[i].priority);
}
for(i=0;i<5;i++)
{
for(j=0;j<5;j++)
{
if(p[j].priority>p[i].priority)
{ temp=p[i];
p[i]=p[j];
p[j]=temp;
}
}
}
printf("\nprocess\t\tburst time\t\tpriority\t\tcompletion time\n");
for(i=0;i<5;i++)
{
{
comp=comp+p[i].burst;
}
printf("p%d\t\t %d\t\t\t %d\t\t\t %d\n",p[i].pid,p[i].burst,p[i].priority,comp);
}
tcomp=comp;
printf("\n\naverage waiting time=%f",(tcomp/5));
getch();
}
output for the above code is:
FCFS-CPU Scheduling in C
but google had disappointed me.....
so i am going to post it here!
#include < stdio.h>
#include < conio.h>
struct process
{
int pid;
int burst;
int wait;
};
void main()
{
struct process p[5];
int i, j, wait=0;
float twait;
clrscr();
for(i=1;i<=5;i++)
{
p[i].pid=i;
printf("\nprocess p%d\n",i);
printf("\nenter burst time\n");
scanf("%d",&p[i].burst);
}
printf("\nprocess\t\tburst time\t\twaiting time\n");
for(i=1;i<=5;i++)
{
p[i].pid=i;
p[i].wait=wait;
printf("\nP%d\t\t%d\t\t\t\t %d",p[i].pid, p[i].burst,p[i].wait);
wait = wait + p[i].burst;
}
twait=wait;
printf("\n\naverage waiting time= %f",(twait/5));
getch();
}
Output for this code looks like this
IMSEC list of holidays
Republic Day 26 January 2009 Monday
Milad-un-Nabi 10 March 2009 Tuesday
Mid Semester Break 08 – 15 March 2009
Ram Navami 03 April 2009 Friday
Baisakhi 13 April 2009 Monday
Ambedkar Jayanti 14 April 2009 Tuesday
IMSEC Academic Calendar Even Sem-2009
Registration for all Students (clear outstanding dues) | 12 January 2009 |
Last Date for Late Registration | 15 January 2009 |
Classes begin | 13 January,2009* |
Display of Shortage of Attendance Cases (attendance from 13 January to 7 February 2009) | 12 February 2009 |
First Class Test | 16, 17, 18 February 2009 |
Display of answer scripts to students | 23 February 2009 |
Display of Shortage of Attendance Cases (attendance from 13 January to 5 March 2009) | 07 March 2009 |
Mid semester break | 08 March – 15 March 2009 |
Second Class Test | 25, 26, 27 March 2009 |
Display of answer scripts to students | 31 March 2009 |
Display of Shortage of Attendance Cases (attendance from 13 January to 18 April 2009) | 24 April 2009 |
Last day of class | 29 April 2009 |
Third Class Test | 30 April, 1, 2 May 2009 |
Display of answer scripts to students | 5 May 2009 |
List of detained students in UPTU examination (attendance from 13 January to 30 April 2009) | 5 May 2009 |
End-Semester Examinations | to be announced by UPTU |
End-semester Practical Examination | to be announced by UPTU |
Summer Vacation | 01 June to 20 July 2009 |
LOK SABHA election Schedule 2009
Phase | Date of polling |
1 | 16th April |
2 | 23rd April (22nd April in one constituency of Manipur) |
3 | 30th April |
4 | 7th May |
5 | 13th May |
Counting | 16th May |
The new government will come in power on the 2nd of June.
UPTU even sem datesheet 2009
10 Things You're Not Supposed To Know
HBTI still depend upon UPTU
Interestingly, it is for the first time that the evaluated answer sheets in each department where shown to the students.
C.N. Singh, media incharge of HBTI said that, the university has second year results, the combined result of first year and second year has to be given and thus the institute has to depend upon the university for the announcement of the result.
Two IMSEC girls died on college trip
i m still shocked becoz of sudden dimise of two ims B.Sc. Biotechnology girls....
i got the the news from a sms from my frnd it reads:
" hey two girls of our college died on a trip to nainital, enjoy two days of holidays."
its really sad when for some cheap jokes some guys or girls forgot their responsibility to stand up with college students in protest.
plz join this campaign.....
thanxxx
First year result IMSEC
wow!
i cnt belive...
i dnt knw, how these girls got time to study..
and how they got marks...
u knw?????
UPTU result 2009 IMSEC
all IMSECian's first year result is out...
go and check ur markss..
all the best to u too...