If You Are From The 09 Batch Then Read This >>

This Site is created for the Bharati Vidyapeeth's BCA 09 Batch..and hence everyone from you are requested to send your email ID at abhilash238650@gmail.com..Owner will send you a request to your Email-ID and after accepting it even you can post your views, day to day experiences and class works on this blog.
Visit owner's blog at
www.bloggerabhilash.info

Wednesday, December 22, 2010

Program 21 to 24 !!!



21.write a programe for operator == for string

#include
#include
Class Prashant
{
char name[20];
int flag;
void getdata()
{
cout<<"Enter the Name";
cin>>name;
}
int operator==(prashant s)
{
flag=stremp(name,s.name);
return flag;
}
};
void main()
{
clrscr()
prashant s.t;
s.getdata();
t.getdata();
int x=(t==s);
y=(x==0)
cout<<"String are Equal";
else
cout<<"Not Equal";
getch();
}


22.Write a programe to demonstrate multiple hierasehical inheretense
a.accept deposit
b.display balance
c.compute & deposite interupt
4.permit withdrawl and update balance




#include
#include

Class account
{
public:
       char name[25];
       char type of[25];
       int amt,bal,withdraw,deposit;
     
account()
{
bal=500;
}
void getdata()
{
cout<<"Enter the name,a/c number and the type of ";
cin>>name>>accno>>typeof;
}
};
class current:public account
{
public:
void getdeposit()
{
cout<<"Enter the Deposit amt\n";
cin>>deposit;
bal=bal+deposit;
}
void withdrawamt()
{
cout<<"Enter the amt to withdraw\n";
cin>>withdraw;
}
void penalty()
}
if(bal<500)
bal=bal-50;
}
void display()
{
cout<<"Name\t"<<<<\n Accounttype\t",,typeof<<"\nBalance"<
}
};
class using:public account
{
float interest;
public;
void getdeposit()
{
cout<<"\nEnter the deposit amount\n";
cin>>deposit;
bal=bal+deposit;
}
void cal instrest()
{
int n=3;float r=7.5;
intrest=(bal*n*r)/100;
bal=bal+intrest;
}
void withdraw amt()
{
cout<<"Enter the amt to withdraw \n";
cin>>withdraw:
bal=bal-withdraw;
}
void penelty()
{
if(bal<500)
bal=bal-50;
}
void display()
{
cout<<"Name \t"<<<"\n Account \t"<<<"\naccount type\t"type of <<"\n balance "<<<
}
};
void main()
{
clrscr();
current a;
a.getdata();
a.getdeposit();
a.withdrawamt();
a.penalty();
a.display();

savingb;
b.getdeposit();
b.calintrest();
b.withdrawamt();
b.penalty();
getch();
}


23.write a program to demonstrate hybride inheramtence

#include
#include

Class student
{
public:
       char name[25];
int rollno;
void getdata()
{
cout<<"Enter the name & roll no of the student";
cin>>name>>rollno;
}
};
class test:public student
{
public:
int sem1,sem2;
void getmarks()
{
cout<<"\n Enter the marks of sem1 and sem2 \n";
cin>>sem1>>sem2;
}
};
class sports
{
public:
      int sportmarks;
voidgetscore()
{
cout<<"\n Enter the marks of sports \n;
cin>>sportsmarks;
}
};
class result:public  test.public sports
{
public:
int total;
void caltotal()
{
total=sem1+sem2+sportsmark;
}
void display()
{
cout<<"\n name1+"<<<"\nRoll no+"<<<"\ntotalmarks+"<
}
};
void main()
{
char();
resilts;
s.getdata();
s.getmarks();
s.getscore();
s.caltotal();
s.display();
getch();
}


24) WAP 2 model a database wth emp as a base class & wth the att name, id , for mgr att are titles & dues, writer attributes book labour att are wages.

    #include
    #include
   class employee
   {
   public:
   long id;
   char name[25];
   void get data()
   {
   cout<<"n\enter the name & id\n";
   cin>>name>>id;
    }
  };
   class manager:public employee
   {
   public :
   char title[30];
   long due;
   void get info ()
   {
   cout<<"\n enter the title & dues amt\n";
   cin>>title>>dues;
   }
   void display()
   {
   cout<<"\n Name\t"<<<"nid\t"<<<"\n
  title \t"<<<"\n dues\t"<
  }
};
class writer:public employee
{
public:
char books [25];
void get books()
{
cout <<"\nenter the name of  books\n";
cin>> books;
}
void display()
{
cout <<"\n Name \t"<<<"\nid\t"
<<<"\n book\t"<
  }
};
class labour :public employee
{
public:
int wages;
void get wages()
{
cout <<"enter the wages of the employee\n";
cin>>wages;
}
void display()
{
cout <<"enter the wages of the employee\n";
cin>>wages;
}
void display()
}
cout <<"\n Name \t"<<<"\nid\t"
<<<"\nwages\t"<
  }
};
void main()
{
clrscr();
manager s;
s.getdata();
s.getinfo();
s.display();
writer a;
a.getdata();
a.getbooks();
a.getdisplay();
labour b;
b.getdata();
b.getwages();
b.display();
getch();
}

Program 11 to 20 !!!

11. Create a class to calculate the marksheet with the attributes such as seat no, total marks, out of marks.

#include
#include

class result
{
long seatno;
int totalmarks;
int outofmarks;
void getdata();
void percentage();
void displaydata();
};

void result::getdata()
{
cout<<"Enter seatno,total marks,out of marks;
cin>>seatno>>totalmarks>>outofmarks;
}
void result::percentage()
{
percentage=(totalmarks)/(outofmarks)*100;
}
void result::display data()
{
cout<<"The percentage is<
}

void main()
{
result a;
a.getdata();
a.percentage();
a.displaydata();
getch();
} tdio.h>
#include

class result
{
long seatno;
int totalmarks;
int outofmarks;
void getdata();
void percentage();
void displaydata();
};

void result::getdata()
{
cout<<"Enter seatno,total marks,out of marks;
cin>>seatno>>totalmarks>>outofmarks;
}
void result::percentage()
{
percentage=(totalmarks)/(outofmarks)*100;
}
void result::display data()
{
cout<<"The percentage is<
}

void main()
{
result a;
a.getdata();
a.percentage();
a.displaydata();
getch();

}

 12. Create a class to calculate the marksheet with the attributes seat no, total marks, out of marks for 10 students.

#include
#include

class result
{
long seatno;
int totalmarks;
int outofmarks;
public:
    void getdata();
    void percentage();
    void displaydata();
};

void result::getdata()
{
cout<<"Enter seatno,total marks,out of marks;
cin>>seatno>>totalmarks>>outofmarks;
}
void result::percentage()
{
percentage=(totalmarks)/(outofmarks)*100;
}
void result::display data()
{
cout<<"The percentage is<
}

void main()
{
result a[10];
for(i=1;i<=10;i++)
{
a[i].getdata();
a[i].percentage();
a[i].displaydata();
}
getch();
}  seatno;
int totalmarks;
int outofmarks;
public:
    void getdata();
    void percentage();
    void displaydata();
};

void result::getdata()
{
cout<<"Enter seatno,total marks,out of marks;
cin>>seatno>>totalmarks>>outofmarks;
}
void result::percentage()
{
percentage=(totalmarks)/(outofmarks)*100;
}
void result::display data()
{
cout<<"The percentage is<
}

void main()
{
result a[10];
for(i=1;i<=10;i++)
{
a[i].getdata();

a[i].percentage();
a[i].displaydata();
}
getch();
}

13. to calculate the total salary using gross salary=basic + 47%DA + 30% HRA with attribute a.getdata b.calculate salary and c. show details.

#include
#include

class salary
{
float basic,HRA,DA;
float grosssalary;
public:
    void getdata();
    void calsalary();
    void display();
};

void salary::getdata()
{
cout<<"Enter the basic salary \n";
cin>>basic;
DA=47/100*basic;
cout<<
HRA=30/100*basic;
cout<
}
void salary::calsalary()
{
grosssalary=(basic+HRA=DA);
}
void salary::display()
{
cout<<
}

void main()
{
clrscr();
salary s;
s.getdata();
s.calsalary();
s.display(); 
getch();
}
#include

class salary
{
float basic,HRA,DA;
float grosssalary;
public:
    void getdata();
    void calsalary();
    void display();
};

void salary::getdata()
{
cout<<"Enter the basic salary \n";
cin>>basic;
DA=47/100*basic;
cout<<
HRA=30/100*basic;
cout<
}
void salary::calsalary()
{
grosssalary=(basic+HRA=DA);
}
void salary::display()
{
cout<<
}

void main()
{
clrscr();
salary s;
s.getdata();
s.calsalary();
s.display();

getch();
}


14. using switch statement. Create account class for following operators. 1. create account, 2.deposit, 3.withdraw. 4.bal enquiry 5.show details.

#include
#include
#include

class account
{
private:
    long int actno;
    char name[40];
    float bal;
public:
account()
{
bal=500.00;
}
void createaccount()
{
cout<<" \n Enter ACT NO AND NAME \n";
cin>>actno>>name;
cout<<"\n Account is created sucessfully \n";
}
void deposit()
{
int deposit;
cout<<" \ n Enter Amt to Deposit \n";
Cin>>deposit;
bal=bal+deposit;
}
void withdraw()
{
int wd;
cout<<" \n Enter Amt to withdraw \n";
cin>>wd;
if(bal <= 500)
  cout<<" \n Sorry! insufficient Amt \n";
else if(wd>=bal)
  cout<<" \n Sorry! insufficient Amt \n";
else
  bal=bal-wd;
}
void showdetails()
{
cout<<" \n--------------------Welcome to SBI----------------\n";
cout<<" \n A/c no.<
cout<<" \n Name"<
cout<<" \n Balance"<
cout<<" \n---------------------SBI--------------------------\n";
}
};
void main()
{
clrscr();
account a;

int op;
do{
cout<<"\n---------------------------------------------------\n";
cout<<"\n OPTION 1:- create A/c  \n";
cout<<"\n OPTION 2:- Deposit     \n";
cout<<"\n OPTION 3:- Withdrawn   \n";
cout<<"\n OPTION 4:- Bal Enquiry \n";
cout<<"\n OPTION 5:- EXIT        \n";
cout<<"\n Enter your choice      \n";
cout<<"\n---------------------------------------------------\n";
cin>>op;
switch(op)
{
case1:a.create account();break;
case2:a.deposit();break;
case3:a.withdraw();break;
case4:a.showdetails();break;
case5:exit(0);
default:cout<<"Sorry!Invalid choice";
}
}
while(op!=5);
getch();
}


15. using switch statement. create a/c class for following operators for 10 persons - create a/c, deposit, withdraw, bal enquiry, show details.

#include
#include
#include

class account
{
private:
    long int actno;
    char name[40];
    float bal;
public:
account()
{
bal=500.00;
}
void createaccount()
{
cout<<" \n Enter ACT NO AND NAME \n";
cin>>actno>>name;
cout<<"\n Account is created sucessfully \n";
}
void deposit()
{
int deposit;
cout<<" \ n Enter Amt to Deposit \n";
Cin>>deposit;
bal=bal+deposit;
}
void withdraw()
{
int wd;
cout<<" \n Enter Amt to withdraw \n";
cin>>wd;
if(bal <= 500)
  cout<<" \n Sorry! insufficient Amt \n";
else if(wd>=bal)
  cout<<" \n Sorry! insufficient Amt \n";
else
  bal=bal-wd;
}
void showdetails()
{
cout<<" \n--------------------Welcome to SBI----------------\n";
cout<<" \n A/c no.<
cout<<" \n Name"<
cout<<" \n Balance"<
cout<<" \n---------------------SBI--------------------------\n";
}
};
void main()
{
clrscr();
account a[i];

int op;
for(i=1;i<=10,i++)
{
do
{
cout<<"\n---------------------------------------------------\n";
cout<<"\n OPTION 1:- create A/c  \n";
cout<<"\n OPTION 2:- Deposit     \n";
cout<<"\n OPTION 3:- Withdrawn   \n";
cout<<"\n OPTION 4:- Bal Enquiry \n";
cout<<"\n OPTION 5:- EXIT        \n";
cout<<"\n Enter your choice      \n";
cout<<"\n---------------------------------------------------\n";
cin>>op;
switch(op)
{
case1:a[i].create account();break;
case2:a[i].deposit();break;
case3:a[i].withdraw();break;
case4:a[i].showdetails();break;
case5:exit(0);
default:cout<<"Sorry!Invalid choice";
}
}
while(op!=5);
}
getch();
} ";
cout<<"\n OPTION 2:- Deposit     \n";
cout<<"\n OPTION 3:- Withdrawn   \n";
cout<<"\n OPTION 4:- Bal Enquiry \n";
cout<<"\n OPTION 5:- EXIT        \n";
cout<<"\n Enter your choice      \n";
cout<<"\n---------------------------------------------------\n";
cin>>op;
switch(op)
{
case1:a[i].create account();break;
case2:a[i].deposit();break;
case3:a[i].withdraw();break;
case4:a[i].showdetails();break;
case5:exit(0);
default:cout<<"Sorry!Invalid choice";

}
}
while(op!=5);
getch();
}


16. to calculate area of rectangle using DEFAULT CONSTRUCTION.

a] Default constructor

#include
#include
class rectangle
{
int l,b;
float area;
public:
void rectangle()
{
l=10;
b=20;
}
void calculate()
{
area=l*b;
}
void show()
{
cout<<"area= "<
}
};
void main()
{
clrscr();
rectangle r;
r.getdata();
r.calculate();
r.show();
getch();
}

b] PARAMETERIZED Constructor

#include
#include
class rectangle
{
int l,b;
float A;
public:
rectangle(int p,int q)
{
l=p;
b=q;
}
void call()
{
a=l*b;
}
void display()
{
cout<<"\n Length & Breadth is "<<
cout<<"\n Area is "<<;
}
};
void main()
{
clrscr();
rectangle r(10,20);
r.cal();
r.display();
getch();
}


17th- Unary operator for increament

#include
#include
class unary
{
int x,y,z;
public:
void getdata();
void operator+();
void show();
};
void unary::getdata(int a,int b,int c)
{
x=a;
y=b;
z=c;
}
void unary::show
{
cout<<<
}
void main()
{
clrscr();
unary s;
s.getdata(2,3,4);
+s;
s.show();
getch();
}


18- Binary to overload + operator

#include
#include
class binary
{
float a,b;
public:
binary(float x,float y)
{
a=x;
b=y;
}
binary operator +(binary)
};
binary operator +(binary b)
{
binary p;
p.a=a+b/a;
p.b=b+b/b;
return(p);
}
void main()
{
binary c1,c2;
c1(1.2,2.3);
c2(2.0,2.1);
c3=c1+c2;
c3.show();
getch();
}


19- using(18) friend function

#include
#include
class binary
{
float a,b;
public:
binary(float x,float y)
{
a=x;
b=y;
}
void friend operator+(binary);
};
void friend operator+(binary);
{
binary p;
p.a=a+b1.a;
p.b=b+b1.b;
return(p);
}
void main()
{
binary c1,c2;
c1(1.2,2.3);
c2(2.0,2.1);
c3=c1+c2;
c3.show();
getch();
}


20 - for + operator for string

#include
#include
#include
class string
{
char *p;
int n;
public:
string(){n=0;p=0;}
string(const char *s);
string(const string &s);
friend string operator +(const string & s.cout string &t);
friend void show(const string s);
};
string::string(const char*s)
{
n=strlen(s);
p=new data[n+1];
strcpy(p,s);
}
string::string(const string &s)
{
n=s.n;
p=new char[n+1];
strcpy(p,s.p);
}
string operator+(const string &s, const string &t)
{
string temp;
temp.n=s.n+t.n;
temp.p=new char[temp.n+1];
strcpy(temp.p,s.p);
strcat(temp.p,t.p);
return(temp);
}
void show(const string s)
{
cout<
}
void main()
{
show(s1)="Bharati";
show(s2)="Vidyapeeth";
show(t3);
getch();
}

Program 1 to 10 !!!

 1. swap 2 numbers using call by value.

#include
#include

void swap (int a,int b)
{
int t;
t=a;
a=b;
b=t;

cout<<
}

void main()
{
clrscr();
void swap(int a,int b);
int x,y;
x=10;
y=15;
swap(x,y);
getch();
}



2. swap two numbers using call by reference.


#include
#include

void swap (int *a,int *b)
{
int t;
t=&a;
&a=&b;
&b=t;
}


void main()
{
clrscr();
void swap(int *a,int *b);
int x,y;
x=10;
y=15;
swap(&x,&y);
cout<<"Swapped values are"<<
getch();
}



3.inline function to calculate Area of CIRCLE 

#include
#include

inline float area(int r)
{
return(3.14*r*r);
}

void main()
{
clrscr();
int r=5;
float b;
b=area(r);
cout<
getch();


3.b. inline function for avg of 3 nos.

#include
#include

inline float avg(int a,int b,int c)
{
return((a+b+c)/3);
}

void main()
int a,b,c;
clrscr();
cout<<"Enter the nos.";
cin>>a>>b>>c;
float av=avg(a,b,c);
cout<
getch();
}


3.c. inline function for area of triangle

#include
#include

inline float area(int b,int h)
{
return(0.5*b*h);
}

void main()
{
int b,h;
clrscr();
cout<<"Enter the height and base of triangle";
cin>>b>>h;
float ar=area(b,h);
cout<
getch();
}


4. overload a function to add integer, float and double each having 2 or 3 parameters.

#include
#include

int add(int a,int b);
float add(float a,float b,float c);
double add(double x,double y);

int add(int a,int b)
{
return(a+b);
}
float add(float a,float b,float c)
{
return(a+b+c);
}
double add(double x,double y)
{
return(X+y);
}

void main()
{
clrscr();
cout<<
cout<<
cout<<
getch();
}


5. overload a function to calculate area of rectangle having different data types such as integer,float and double.

 #include
#include

int area(int l,int b);
float area(float l,float b);
double(double l,double b);

int area(int l,int b)
{
return(l*b);
}
float area(float l,float b)
{
return(l*b);
}
double area(double l,double b)
{
return(l*b);
}

void main()
{
int l,b;
clrscr();
cout<<
cout<<
cout<<
getch();
}



6. To calculate area of triangle ,rectangle and square. 


#include
#include

float triangle(float b,float h);
float rectangle(float l,float b);
float square(float s);

float triangle(float b,float h)
{
return(0.5*b*h);
}
float rectangle(float l,flaot b)
{
return(l*b);
}
float square(float s)
{
return(4*s);
}

void main()
int l,b,h,s;
clrscr();
cout<<
cout<<
cout<<
getch();



7. To find the interest with rate 1.5 using default argument 


#include
#include

float interest(int p,int n,float r=1.5)
{
return((p*n*r)/100);
}

void main()
{
clrscr();
int p,n;
cout<<"Enter principle and no.years \n";
cin>>p>>n;
float i=interest(p,n);
cout<<"interest is"<
getch();



8. to give alias name to a variable principle in calculating simple interest & then modifying the variable. 


#include
#include

float interest(int p,int n,float r)
{
return((p*n*r)/100);
}

void main()
{
clrscr();
int p,n;
int &alias=p;
float r;
cout<<"Enter the principles & no. of years \n";
cin>>p>>n>>r;
float i=interest(p,n,r);
cout<<"\n interest is before modifying \t"<
alias=20;
cout<<"\n principle is modified \t"<i=interest(p,n,r);
cout<<"\n Interest after modifying principle \t"<
getch();
}



9. Swap the 2 numbers using reference variable.


#include
#include

void swap(int &a,int &b)
{
int t;
t=a;
a=b;
b=t;
}

void main()
{
void swap(int &a,int &b);
clrscr();
int x=10;
int y=20;
cout<<"before swapping \t"<<<"   \t"<
swap(x,y);
cout<<"  \n after swapping   \t"<<<    \t"<
getch();
}



10. to take student's information from the user & display it using CLASS student. 


#include
#include

class stud
{
int rno;
char name[20];
public:
void getdata()
{
cout<<"Enter the roll no. &name \n";
cin>>rno>>name;
}
void display()
{
cout<<"\n Roll no \t"<<<" \n Nmae  \t"<
}
};

void main()
{
clrscr();
stud s;
s.getdata();
s.display();
getch();
}

Tuesday, December 14, 2010



SAQUIB
Wish You Many Many Happy Return's Of The Day

Tuesday, December 7, 2010

BCA SEM-3 Exam Begins !!!

            The exams of Third Semester begins today. Best of luck to everyone. Hope all of us do our best in this exam. This is known to everyone that this semester is the toughest Semester and the very first exam CAOS is itself the toughest one. Lets hope to achieve the best. Hope all our classmates who are struggling with back subjects comes out of that disaster and no one gets a KT in this semester.

           Thanks.

Tuesday, November 23, 2010

Happy Birthday to our lovable Prashant Nepte !!!

Our Photographer - Prashant !!!
           Its the BIRTHDAY of our very dear friend - PRASHANT NEPTE. Many many happy returns of the day to him. A very very Happy Birthday to you. May you live a long and happy life. May God bless you with all the powers and success in future. Prashant wants to be a Photographer and we pray for him that he turns into an International Photographer. Great luck to him.


            We wish you a very happy birthday, Prashant !!!


On behalf of BCA SEM - 3 !!!

Tuesday, November 16, 2010

TIME TABLE FOR SEM - 3 !!!

TIMINGS 10.00 A.M. TO 1.00 P.M.


07/12/2010 -  TUESDAY 
 COMPUTER ARCHITECTURE & OPERATING SYSTEM

09/12/2010 -  THURSDAY 
OBJECT ORIENTED PROGRAMMING STRUCTURE WITH C++

11/12/2010 - SATURDAY
DATA BASE DESIGN


14/12/2010 TUESDAY
MANAGEMENT ACCOUNTING CONTROL

16/12/2010 THURSDAY
HUMAN RESOURCE MANAGEMENT

21/12/2010 TUESDAY 
COMPUTER ORIENTED DECISION MODEL



BEST OF LUCK !!!

Monday, November 15, 2010

PRELIMS Starting From 15th November, 2010 !!!

            Prelims starting from tomorrow. First Paper of CAOS tomorrow. Best of Luck to everyone.

Friday, November 5, 2010

Happy Dhanteras And Happy Diwali !!!

Happy Diwali and Belated Dhanteras to all the students of Bharati Vidyapeeth on the behalf of the Fresher09 team.

Thanks and Regards.

Friday, October 29, 2010

Farewell to Mrs. Sonia Sharma - Our HRM Teacher !!!

           ABHILASH here.

          
            So today we ended with the last official day of our Sem - 3. It was so entertaining for me atleast. I had a outing with my friend at my favorite place. I have enjoyed a lot in this Sem. I would like to thank all my friends and teachers who had supported us and made this possible for us to pass this Sem non-erratically. 

          Our HRM madam - Mrs. Sonia Sharma is the only teacher who never got absent in the whole semester. From last 1.5 years we have never seen such a perfection from any teacher. Sonia madam is also a teacher who have respected the feelings of the students and gave it a value. Our friend - Yusuf Dawawala took an initative to give a farewell party to her. He organized and he stabilized the contribution of Rs. 10 per head. Whenever such event is organized in our class, it mostly gets failed because people don't share money quickly, they wait for others to give the money. But when Roll no. 1 - Arya Satyam was said to pay Rs. 10 for this event, he quickly agreed without asking a single question which motivated others to pay as well. Ultimately, in 5 minutes we got everyone's money without delay. Only 4 people were remaining and they gave money on the day when the farewell was conducted that is on Thursday. Only one boy didn't contributed to our event and the farewell for madam. I would not like to mention him. 

           Madam came in the class, Umera-Sohail-Samadhan gave the presentation and after that we gave the farewell to the madam. It was so beautiful and emotional that it is hard to explain about the moment. Nice initiative by Yusuf and nice contributions from Vandana and Prema also. Also a big thank to all the students of the class who supported their organization. I am proud of my classmates. Madam cut the cake and we all clapped. Madam shared some quality moments with us which we will always remember and nourish. Madam, we will really miss you. We never got such a sweet teacher like you in any sem till now. 

           Thank you , Sonia mam.

ABHILASH RUHELA.

Wednesday, October 27, 2010

Best in CAOS Presentation and DBD Submission !!!

            Today, Gokhila madam rocked. She gave us numbers of assignments to do. She also announced that Abhilash Ruhela and Vandana Singh gave the best presentation. I am happy as I am Abhilash Ruhela and I would like to congratulate Vandana Singh too. 


             Today itself, Sheetal mam also announced some names who gave the best work on the topics given. I was also one of them. I am happy to be in the List of Merit. I am happy that my efforts and works are being noticed. Thanks you Gokhila mam and Sheetal mam.. Both of you are at my Best Teacher's list now. ;-)

            

Monday, October 25, 2010

Bunked The college after Lunch !!!

I am Saquib. I am posting for the first time on this blog and I am hoping for a great response.
We have bunked the 3rd and 4th lecture. I have Prashant Nepte and Abhilash Ruhela with me. Prashant Nepte is the great photographer of our class. And Abhilash Ruhela is the Great Writer of our class. I am enjoying with them. Atcha so you want to know who i am.. I am the great programmer of my class. So all of us are sitting together and working on my laptop. Canteen is the best place to hang out in our college. I pass my half of the time here itself. I am the most tea drinker here. So.... Its all for today. Now I think we will move to Kharghar little world in the 4th lecture to have some snacks. Lets see how the time goes..

I wouild like to thank Abhilash Ruhela for bringing me on this platform.

Thanks..

Saquib Shaikh

Sunday, October 24, 2010

Special thanks to mr.Ruhela

I m very thankful to Mr. Abhilash Ruhela for his dedications towards the blogs. And giving us a path to share our views with our classmates. And I hope this blog will help us in the near future.
And I will try my best to post as and when required by me.

Assignments - A Deadly Weapon !!!





        Again the terrible days are back. Numerous assignments in my pockets to do and less time to complete and accomplish them. I just hate these days when I have to slog a lot just to complete assignments. I don't want my routine to be affected by any means of addition in my routine. I just hate when our teachers announces a big and huge assignment to us with a wicked smile and clamor the Deadline as we are going to get the best treat of our life on this day. I just hate this. I have no problem if teacher gives us the topic in the start of the term and give us a last date at that time itself. But some teacher are so intelligent and over-professional that they don't give any trouble to students for the whole term but as they see that only 1 week is remaining and then these students are going to get a long Preparation Leave, let them strive for this 1 week. And this 1 week seems to be like the biggest hell in our life. 


            My teachers has given us number of assignments. Everyone of them know that this will be very hard for students to do in this limited period of time. I just want to ask teachers that you have seen us for 6 months and you would be knowing our participation in the class activities, why do you need to give us an assignment to judge our potential? Even if you want to judge our potential through assignments, give us a justifiable period of time to show our real power and capabilities. Do you think that a child can show all his capabilities only in 1 night through preparing that assignment? You will never get the best even from the brightest student of the class. If your retaliation is that you want to see our modus operandi and our dedication and honesty towards our work and job and you want to match our honesty with our quest to meet the deadlines then I would say that Yes, we will complete the assignments on the Deadline but will we get something to learn from this? No !!! 


          A student will try once or twice or thrice or ten times to meet the deadline but once if he or she will realize that teachers are crossing the limit of torture, they will directly reply to you on the face-to-face conversation that if you want to cut my Internal marks, you are free for this but I am not going to strive madly for completing your useless assignment. We are 18 to 20 years old. I know that we are at the period when we should be made capable of facing all the disasters in the future while working in the organization but that doesn't means that you will overload us like a donkey. And if you really want to do this then also remember that Donkey kicks too. Be ready for the Kicks. Today, I and some of my classmates gathered together to complete our journal. We are blessed with 22 or 25 programs. We didn't wasted any time and we did it as fast as it was possible but in the whole day we succeeded to complete only 13 programs out of them. And this is just 1 subject. We have other 2 to 3 subject's assignment too. Can you imagine the stress we all are going through?


            I have nothing to say except this. I am in fultoo stress and thus I created this blog post today. Teachers, please think that even we are human beings. We aren't machine that just need greasing and it runs with the same accelerated speed. We are human being and even we need a break. I have nothing much to say now. 


             Thanks.


ABHILASH RUHELA - VEERU

Saturday, October 23, 2010

Completing assignment(Boring+Enjoyment)

hi,
Prasad again
2day all of are class mate came to college to complete the C++ journal's.such an hectic day of everyone.our friend shakib(The Programer) bought his Laptop to college to help us, in completing the journal by typing the Programs on the screen.everybody wer busy copying the Program from the screen to their own journal,accept me and my friend Samadhan as he was listing songs from my Ipod.Me not because,my BESTEST friend was going to write for me the journal.so i was feeling free.we all made fun out in the classroom.vivek(classmate)was writing and talking to his GF on cellphone,sulakshana the great persons(SAMOSA)was craking joke's on vrushali and everyone who all wer there in the class.but not me,because she is little bit scared of me, and i m very much happy for that.Yusuf was also busy writing the journal,Abhilash,the Hero,The Dude,The Handsome of our campus,was also buys writing the journal and dancing singing song's in himesh style,that's wat make's the all rounder.me and my very best friend Tushar praise his Talent and Capabilities,that we always bow in front of him eveyday,so that we can also get some knowledege,talent,etc.we all had a very good time with abhilash,we also craked Joke's on him,as Umera Khan use to talk to him we all use to tease Abhilash like "ooooooooohoooooooooooo kya baat he kya baat he "hahhaahahaha
it was full time pass.But i was missing my best friend Tushar but as he live far away to Dombivli he was anable to came.but Tushar missed a very good chance as his favrite mam had worn red saree and she was looking too preety,he missed everything,but abhilash and sohail ran behind her to see her.haahhaahahahhaha.Pranshant The Sheptey boy was also busy writing and chatting with everyone.
so for some time pass prema and sulakshana went done and bought us Samosa pav to everyone,so everybody had a few min break and startd eating.
and after some time umera wanted some PPT form the internet so me and her went to the cyber for 5min and all was done with it,and afterward's she tooked orange candy icereame to everyone as a Party or Treat to everybody.
So over all the day was good.and hope so all my dayz go well.
bye.

Friday, October 22, 2010

My horrible 3 days.

the day before yesterday,was a horrible day.DBD mam took aur Test of some topic,without intimating us about it.no one was prepared for the test.when the mam gave the topic to us,everyone started copying and looking in each others paper.prema(classmate) was the first person to finish her paper.afterwards mam call her to make some chit's for our assingment.
but me and my friend tushar wer still looking for answer to be written on the paper, but no one bother us.after finishing prema's work,i just franky ask her to show some from her paper, she directly rolled her paper and gave it to me.and i took it.after some time, mam came to prema and she ask 4 the paper.my heartbeat got fasten up.prema was also unable to speak something.
then mam finaly shouted prema that wher is your paper,and she told my name that i have thte paper.that mam scolded me so badly,and told me just get lost lost from the class.i just closed my book and went to canteen.i meet some few more friendz who did not want to attend the examz.next day,means yesterday everyone was shocked, that each and every person in the class got an assingment to submit on friday means 2day.
we all went to staffroom begging to please give the assingment bcoz it was containing our internal marks.
but that mam did'nt listen a single word.
after so much time of begging,she finaly got ready to give us.but next day that is 2day.
2day's last lecturer was of that mam.everyone ws preparing to give the assingment ,but few of them including me was waitng for the topic for assingment.
and lastly we all got the topic and must to be submitted on monday morning.bye

Prasad Devrukhkar

Thursday, October 21, 2010

HRM Presentation Score !!!

So finally the HRM presentation's scores are revealed.


The Individual highest marks is scored by Sameer Upadhyay - 9 / 10. Congrats.


The Highest marks scored by the Group is Abhilash Ruhela's group which consisted of other group members - Yusuf Dawawala, Gaurav Save, Prema Rajput and Vandana Singh. The Total marks of the group is 36 / 50.


Congrats to Everyone.

Friday, October 8, 2010

Defaulter's List !!!

It is so happy to hear that we have no exam from Monday. Today the defaulter list for the month of September was announced. Almost half of the class is in the defaulter's list. It was a good day as I kept teasing every one who were in the defaulters.

Indirank - 42 out of 100 !!!

All the members and visitor of the site, Congrats to everyone as we have scored the highest Indirank till now - "42" .. Without any contribution, we are scoring high, Can you imagine the wonders if we will start updating it regularly? Friends, plz update this blog if possible. Thanks.

Monday, October 4, 2010

Saturday, September 25, 2010

Best Presentation Given By Me & My Group Members!!!

Sometimes your body and your mind doesn't allow you to perform and complete an intended job. Somewhat same happened with me yesterday. I was all fine before I planned to write the Blog but after that I noticed the proliferation in my heartbeat and I saw that I have started sweating profusely. I was dithering and trembling so I decided to leave the Blog. I slept next to my dear mom and for the whole night I kept changing my sides but it was for no use as I was feeling some bechaini which wasn't letting me close my eyes and sleep soundly. 

            In the morning my friend Yusuf said that its nothing new with you. Whenever you have to perform your body reacts in the same way and when you perform, everything goes away and after that you are fine and the best. I got what he said. I remembered that I have a presentation today and this may be the reason of my body reacting in such an unexpected way.

            So, we had a presentation today. We are divided by our HRM manager in different groups and after the topic is complete, the respective group assigned for the specific topic have to give a presentation on it. We were assigned for the topic of "EMPLOYEE DEVELOPMENT". This topic exactly means that organization and employee, both should put an on-going effort to upgrade the employee's skills, abilities and knowledge. The Successful Employee Development needs a balance between an Employee's career needs and the targets of the organization. It is a wonderful topic.

            I had Yusuf Dawawala - My best friend from this college, Gaurav Save - The Highest KT Holder and The Lowest Percentage in Defaulter ever, Prema Rajput - The 1st Ranker of the 1st year BCA and Vandana Singh - The 2nd Ranker of the 1st year BCA as my group members. When we formed this group, I already knew that we are going to give a good presentation but I wanted to give a special one which will be better than the other presentation already given in our class. 

             Through the voting session, I was selected as the GROUP LEADER. I was fine with the responsibility of this position. I gathered everyone at my home and we made the slides of PPT. We arranged the topics and we distributed it among us. But as a group leader my task and my orders were not finished till here. We had our presentation today and fortunately yesterday we had holiday for Ganesh Visarjan. I asked my group members to be present in the college for mutual discussion, helping each other and rehearsing for 2 to 3 times so that we don't get puzzled into each other at the final moment of presenting. Everyone did their work seriously with some gossips around. I loved the day as we got a confidence after practicing that we are 90% prepared. We left for home after wishing everyone Luck for the next day.

            Today, being responsible, I and Yusuf reached college half an hour ago to arrange CPU and Projector so that we don't end with dissatisfaction after our mam will enter the classroom. At last, our presentation begun. I, as a group leader came in the starting, introduced my topic and my group members. After this Vandana came and gave a brief description on what Employee Training is. She presented this in both the languages - English and Hindi. Madam appreciated her knowledge about her topic. Then came Gaurav. He was also unique in his way. He gave the presentation on what the On-the-job training is. He gave his whole presentation in Hindi language and according to me he was the best presenter of the day. After him came Yusuf who gave the knowledge about what Off-the-job training is. His uniqueness is his Arabic ascent which no one has in our class. He ended up too nicely. Then I came and I presented about Steps and Tips needed while designing a training program and about the Essentials stipulated for a training session to be held. After me, Prema entered and she gave a sweet presentation on Evaluation of Training. After her presentation she called me to give the Vote of Thanks. 

            I came and I gave a wonderful Vote of Thanks. Many people liked our presentation. There are always exceptions in every beautiful thing done or created on this Earth. I saw our jealous classmates making faces while I was giving Vote Of Thanks. We don't care about them because we know that how much they have in their pocket to perform. I noticed them because I was noticing everyone. We asked madam for appraising our performance and she said that - IT WAS THE BEST PRESENTATION SO FAR. ALL OF YOU HAD KNOWLEDGE ABOUT YOUR TOPICS. Thank you mam for giving such a sweet compliment to us and our effort. We also told that your effort was easily visible in your performances. We are the 2nd last presenters. Now only One group remains and I have full confidence that even if they will put all their knowledge in the presentation there is no scope of going higher and above them my group. So, according to our mam, we gave the best presentation. I am so happy. So So Happy. I think this has made my position of Group Leader fixed and permanent. Hahaha. What is bad in hoping? Right?

  P.S : Friends, I wrote this blog yesterday but forgot to make it public. So read it as it is the blog of 23rd September. 

            Thanks.

ABHILASH RUHELA - VEERU

Wednesday, August 11, 2010

ORIENTATION PROGRAM in Bharati Vidyapeeth !!!

So, I played the role of an anchor for the first time in my life. I had Prema as my partner who ruined the job of anchor after the lunch session. She distributed all our scripts among everyone. I apologized my pained feelings to forgive me as I recommended her as my partner. I have decided never to host any college program hence forward. The interruptions, the break of heart, the clashing of egos, the non germane distribution of sentences etc. etc. etc ruins your mind and thus makes you behave unkindly and harshly. I loved speaking in mike. I loved being confident on the stage and I loved watching juniors stare me while I was sharing my words with them about our chief guests. The job of anchor is interesting and so bizarre that no one would like to stop anchoring but for that you need the support of your partner. I didn't got it and when I complaint the same to her she said that I am behaving as a child. Whatever, I don't feel its my mistake but I do feel that there may be some selfish approach from my side too that I didn't wanted others to participate in the job of anchoring. Even, it was my first chance, I wanted to utilize it fully. So, I didn't wanted anybody else to interfere while I was performing and handling the mic but I selected them and they sued me only. :-(

              There were 3 speeches and I loved them. Mostly, the second one where one of our guests said us to draw any diagram on the paper and come on the stage and describe how have we related ourselves with the diagram and speak out. I, as usually, drew Pen and made everyone familiar with my passion of writing. Madam wished me luck for my future as a writer. Thank you mam. But, a boy who won everybody's heart was a junior from BCA course. I don't remember his name and not even his diagram but I do remember his description as he got the most number of claps and he got the optimum plaudit. He said that he wants to speak English but he can't as his grammar is not nice and his vocabulary is very weak. He said that whenever he sees everybody speaking in English he feels to speak in the same fluency but because he lacks he can just dream to speak English. He divulged and unbosomed this in front of everyone that he is weak in English. Everyone was moved to hear someone speaking of his weakness in front of all the new batch mates, all the new girls, all the seniors and teachers. It needs and stipulates a lot of courage to speak out your weakness infront of everyone. I can't do this anytime in my life and thus, I am very much impressed by this boy. He is great and one day, I am sure he is going to be the best English speaker amongst all his friends and people near in his vicinity. Good Luck, Champ !!!

             There is a junior boy who stammers. He has gained everybody's sympathy. Today, when madam said him to come on the front and speak about what his diagram is and what his dreams are. He came in confidence and said that he wants to be a CEO and he wants to manage a company and make his employees feel better and happy. I was choked to hear him. How can someone be so encouraging. People may feel that the child is abnormal but the real word for such human beings is "Special". This boy is special. He don't want the group of people around him who show solidarity towards him. He knows that everyone is not up to mark and everyone is not pertinent. Everyone is lacking. It was skeptical for me to witness such type of confidence and dreaming attitude. I bow to this guy. I want to tell him that even I stammer and I am totla also. I can't speak properly. After speaking 2 to 3 sentences, I start dithering and thus my voice gets mortified infront of everyone. I feel shy when someone asks me to repeat my sentence. It clearly shows that there is no immaculateness in my voice but I speak confidently because I don't want to let people know that I have problem with my voice. As I have been spurious and faked as a good speaker, I caught this job of anchor. So, my dear friend, if you want to hide this and prepare your voice, start reading newspaper in loud voice. I am sure you will start speaking better than how you speak today. I have witnessed the change and thus passing the method to you.

            Thanks.

ABHILASH RUHELA - VEERU   

Monday, March 1, 2010



HAPPY HOLI TO ALL THE STUDENT'S OF BHARATI VIDYAPEETH

Tuesday, February 23, 2010

First Unit Test

            FROM BLOGGER ABHILASH -->>

        From today , our first unit test has started...We had two papers today..One was of DCO from 10.30 to 12.30 and the next paper was from 2.00 to 4.00 PM...I just knew about myself that as soon as Ill get the chance..Ill move out of the class after writing my roll no and name..because I was least interested in writing the whole paper as I didnt knew anything bcoz I didnt took this UNIT TEST seriously...I just wanted to enjoy here in this unit test..In the first paper, DCO ...I saw the paper and was confirmed that I will be unable to draw any logic gates even if Prema would help me..So I peeped her paper for many times but when I was assured that Im not able to copy even a single question I came out of the class in 10 minutes...Saquib and Arya promised me that they will move in 5 minutes after Ill be out..But both of them gave me kalti...As I think both of them knew the answers or theey got the chance to copy..I dont know the exact condition but I know that both of them ditched me..It didnt effected me a lot..But I was a bit angry on everyone in the class..The only boywho supported me then was Manoj...He came out just after I came out...Then in one hour , everyone came out one by one..And We ..Now this We includes Me, Arya, Yusuf, Manoj, Vishal....sat in the canteen...Canteen was houseful as it is always in its position...

          We drank one cup tea each...but then we sat idle...Yusuf and Vishal started writing assignments..then a sexy pharmacy girl came and asked us that whether you are eating or not..If not then please get upp..Vishal replied that Im completing assignment now..We will eat after the assignment is complete...Now I was bit afraid that We all have to get up as she was a girl and wanted to sit with two other girls standing besides her...Arya gave me 10 rs and told to bring 5 cup of tea..I added my 5 rs to that ..and stood at the counter to place the order..But I witnessed that the girl has complained to the canteen head..and he went to my friends for throwing them out of their chairs..Just then they said that our friend is standing there to place the order..We are eating...He came back..and gave me 5 teas..While I was walking with the tray towards our conquered table..that 3 girls were crossing me and they commented..Aa gaye Chai peeney waale log..I kept quiet but felt like sucking her boobs and drinking milk inspite of drinking tea...Then we sat there..and just after I was back with the Tea..Arya was back wit hthe Samosa-Pavs...and the girl afterwards went giving us a stary look...But we didnt concentrated on her eyes..We were concentrating on the two headlights of her breast....They were quite large...I mean Extra Large..I felt like demanding a hug but controlled my feeling..bcoz she was a senior..Otherwise If a junior would have done this to me..I would have tried to molest her...

          Then we all decided in the class to get up as soon as Arya will move out of the class..and 10 of the boys including some girls accepted our offer..Arya was to move in the first 10 minutes of the paper...and I was to move within 1 minute of his exit..and everyone would follow in the same manner..Ok...Arya this time kept his promise..Came out in 15 minutes...I came out in 1 minute after his exit..Saquib came after my exit...But after this all the dogs kept writing their paper..and we kept abusing their mothers and sisters...I also used abuses for their fathers bcoz I dont care when Im angry on someone...After many minutes Manoj was out..and then Prema was out according to her promise...That after 7 people she will come out..but she came much early..I love her for this...And then nobody came out..after 1 hour everbodyt started coming out with a smile on their face..and I abused them a lot in my heart...This fucking classmates of our BCA sem-2 are so chutiaas that they dont co-operate in any of the plans..Everybody tries to be a leader..an Organization fails whwen everyone tries to be a leader..when someone has taken a lead for an act..and u all have promised for the support ...the nwhy u ditched us? And every one came out giving a reply that " Arre sirf ek answer likha wo bhi galat" ...Arre you cow-dungs and kutte ki moot...You said all of you to write even a single question...You all are struggling for this 5 marks like this will make u a software engineer and you will end up with a Manager in Microsoft..Mer ibadduaa hai tum sub dhokebaazo ko ki kutta bhi nahi mootega tumhari BCA ki degree pe...

           Jitna likhna hai likhlo...abhi kal ke plan ke mutabik fir OB ke paper mein Arya aur main pehle niklenge..aur agar fir tum subne dhoka diya...Toh is baar tumhari chaddi me hagunga aur tumhe pehna dunga...fir dhote rehna apna bochaa zindagi bhar..I dont care about it then...Just see the unity of seniors..The whole class comes out after a single person..And in our class...you all try to be rankers...Go morons...go score 1st rank...that is not going to give you anything..whats more important is ..is that ki you should know how to build a software program..that nobody of you knows..You all are so sick that whenever it comes to practical..You cry Abhilash Abhilash....Put Abhilash in your ass...I have always supporeted whenever it came to mass bunking or any other activities which wasnt related to studies...but you all have ditched Arya and me...I will see you all...But would like to Thank Arya and Saquib for their co-operation...Agar tumme se kisi ko bhi aapatti hai mere is blog se toh..Apne g@@nd ki foto kheench ke choom lo...aur bas kal dhoka de ke dekho..itni gaaliyaan doonga ki khaandaan waalo ne mill ke kabhi kisi ko nahi di hogi.....

 

Monday, February 22, 2010

Today first time I am posting on this blog, as my friend(classmate) Abhilash Ruhela keep saying that I don't post anything here, so here is my first post on this blog.



Today was the first two paper of our unit test.
Digital Computer Design & Computer Organisation(DCDCO) & System Analysis Design(SAD)
The first paper DCDCO was easy,but SAD was not easy for those who where not prepared for the paper,but the paper was easy, many student's left the class in the first hour.
But there were few student's who where writing there paper
sincerely.

And there were many other funny things happen in the college.


Thank's for reading....................





Tuesday, February 16, 2010

FIRST PRESENTATION !!!

           FROM BLOGGER ABHILASH -->>

        So finally today on 15th February, students of our class gave their first presentation...In the first lecture of System Analysis and Design..We were to give our first presentation..And It started with YUSUF's presentation...The man really start off very nice and with all the confidence..This was the first time when I saw this profuse confidence in him..He was so confidence that I imagined a boy proposing a girl after 25 girlfriends..So with this confidence he ended his Presentation...We all clapped for him with all our hearts..I really didnt expected so much from him..I knew that he is going to do good but he did his best..I just didnt wanted to see him smiling stupidly like he does while sitting in the lecture..and he really overcame this without even a single smilewhile presenting..WOW..YUSUF..I was really proud of you...and he got 9....The first presentation started with the level of greatness...Then came Vrushali...I wasnt happy with her performance as I didnt heard her voice but it was good even from her bcoz the girl is so shy and she has said so much infront of us was really a courageous guts from her side...She got 8...Then came Prashant Nepte...And what a boring presentation he gave..I felt like sleeping...His performance was just like Abhishek Bachchan's performance in the film...We cant bear him till the interval and same here..I was unable to bear him after 3 slides...But then too I would like to appreciate him as presenting is really a difficult job and Prashant too is a quiet boy and speaking so much infront of everyone was a great task..Im proud of him too but he could have been much better than he was....

            And then It was Vandana with the last presentation of the day...And Wow..The way the girl started..I first prayed to the god that she doesnt do well than Yusuf..But as her slides kept on running..her confidence kept on augmenting and her level of confidence reached there where no one can reach soonly...I was really surprished and astonished to see a girl doing so good and with this tremendous guts that I felt like suggesting her to be a professor in future for the students of first year graduation..She was sick today as I think so and still she gave such a nice presentation that finally I believed the fact myself that she was better than Yusuf...As soon as she ended with her presentation..We all started with the shattering of our hands..and there was CLAPS AND CLAPS AND CLAPS....Madam asked how much to give her and I was the first one to exclaim 10 out of 10 and Yes she was awarded with this awesome marks...

             Now see, I forgot to tell about Siddhesh's presentation...Now if I forgot about him You can understand what a presentation he would have given ...That I dont remember him at the end of the day...You all would have felt that I criticized Nepte prashant but now think that I forgot about Siddhesh's presentation..then how bad we would have been....Dont want to say anything about his presewntation..But I still dont understand how madam gave him 9....

           Madam then distributed us our marks of the first assignments...And the marks were unbelievable..Copying my assignment,, Yusuf did his...and hten Prema and other children copied Yusuf's...I got 7 out of 10...Yusuf got 8...and everyone got more than what I got..Now this is really unbelievable that Son knows better than the father How to produce babies...

           Finally after all of this ...I was the STAR of the DAY because of my article in the DNA newspaper...Both the teachers- Taruna Madam and Snehal Madam extolled me a lot...And I really felt so over whelmed that I cant opine it now...Taruna madam gave me 1 marks in the internal marks as a gift and Snehal Madam gave me 10 marks in the internal marks as a gift..I really want to thank both the teachers..But my surprise was watching Snehal madam giving me 10 marks...My heartiest thanks to both the madam..and lets wait for the next monday for next presentations...

Thanks..

Bye...

ABHILASH RUHELA... 

Saturday, February 13, 2010

WINNERS OF FESTS AND DAYS !!!

            From Blogger Abhilash -->>

     WINNERS OF FESTS AND DAYS -

TRADITIONAL DAY - 
2ND POSITION - ABHILASH RUHELA 

TIE DAY -
Selected people till 2nd round - ABHILASH RUHELA , ARUN TIWARI AND PRASAD DEVRUKHKAR

MIX N MATCH DAY -
WINNER - SULKSHNA PAGARE

PAINTING COMPETITION-
2nd Position - PRASAD DEVRUKHKAR


RANGOLI COMPETITION - 
2nd Position - VRUSHALI


SINGING COMPETITION - 
2nd Position - RICHA SINGH


CONGRATULATIONS TO EVERYONE...
 

Tuesday, January 26, 2010

Announcement oF FEST !!!

From Blogger Abhilash -->>

           So now fest dates have been announced..now lets see who all are going to perform and who all are the one who are again going to show up their dirty ass...Sometimes I fel like I should put a long and thick stick in their ass...The bloody guys and girls dont want to participate in any thing..I get so much frustrated to see this..Im one of them,..everyone saying me to dance on the event of fest on 11th Feb, 2010..but again my ass is getting burnt up...Wat the helll....Lasty 3 days before..We had a Shikhar event in our c ollege..Mast mast rock bands they...Even fashion show made our night..But this fucking dudes of our class didnt came to the event..there were only four of us in the event..Me, Sohail, Saquib and Nepte...Arya too came for a short while..Those who came were dudes....Other were nudes..The fucking mother's boys..and girls..cant participate in entertainment..One said all this event is nanga naach for me..U bloody guy..for me..You and your family is nanaga-naach.......Fucker ass hole...Now I hope that my class gonna participate in this fest..If not then Ill be here to abuse you all....U sucking souls...Wat u think of yourself......No use.......and think yourself as Obama of BharaTI vIDYAPEETH......Chutiyaa saale.....Maae ki ch**t....

Wednesday, January 20, 2010

Cricket Match

       From Blogger Abhilash -

              So finally today our class BCA- SEM 2 lost the cricket match against our college...I always knew this future as Im not less than a soothsayer.....I dont know why everyone misapprehended themselves as Dhoni and Tendulkar when they were just Patil and Dawawala and Upadhyays...Its really surprising to see this vacant and empty confidence...I know they would have lost badly and now BBA will look upon us as we have lost a big battle from them..or as if we have lost a bet from them and we will have to be their slaves for rest of our life..This is the only reason why I kept myself far from this cricket...I didnt wanted to write today's blog on this site..as I created this for everyone engaged with our section...but in my class I dont know why anyone dont have guts sharing about our college's melodrama...everyone wants to be behind whenever some new happens or creative..No one dares to do anything new as they have a fear to lose up it...But I dont ....I have ameliorated myself at that level where I can say anything to anyone keeping myself co-related with him or her through Eye contacts..But others in my class..tries to be over smart but they arent..This cricket match is one of the example of this..On the day of Fresher party..I didnt performed primarily for my win and for the title..I did it coz I came to know that never ever have BCA won in this contest..and finally I did..but this fucking bastards just did this match and all just for the showbiz...Its really something unbelievable...but I knew it.....just bcoz I have judged all the personalities in ym class..nobody have guts..and everyone is such a fucker ass hole that they cant even point a finger to someone on a wrong decision...Even Im one of them..But I try for something new...Shahid too is one of them ...To stand for the wrongs...but he he is so irritating that I dont want to say anything positive for him...A new semester has begun up and so is new hope...First hope has been lost up by losing this fucking match...but there are many thingfs up coming where we can build a reputed image of our section..atleast you suckers contribute something to this blog about the college's incident..and dont copy and paste here..beware REXY....understood......chalo now Im leaving..Its 2.30 in the night...U babies are sleeping....and see Im waking up just to update our class's website...   

Just Type The Keyword To Search Your Answer -- >>