Olympics: India to appeal against overturning of boxer Vikas Krishan's match result


New Delhi: India will appeal against against boxer Vikas Krishan's ouster from the London Olympics. Indian Chef-de-Mission PK Muralidharan Raja said that the Indian boxing team will protest against the International Boxing Association's (AIBA) decision to overturn Krishan's result.
"We are looking at the video recording of the bout. In our opinion, fouls were committed by the American opponent as well, he too should have been penalised. The matter is subjudice, we are preparing our reply. We want to bring to the notice of the jury the fouls committed by the. The team manager will handover the protest officially," Raja said.
A row has erupted over Indian boxer Vikas Krishan's exit from the London Olympics in the 69 kg category after the decision of his bout was over turned. The Indian Olympics Association (IOA) is also crying foul.
Olympics: India to appeal against overturning of boxer Vikas Krishan
IOA Vice President Tarlochan Singh has called the decision 'wrong' and 'political'. "This is a very wrong decision. Everyone could see the fight and everyone saw him doing it. We were winning a third medal with great difficulty and they deprived us of that. The jury should have scheduled a rematch, that's in the rules as well," Singh said.
Hours after he reached the quarter-finals in the 69 kg category, boxer Vikas Krishan was declared out of the London Olympics. The result of Krishan's bout was overturned by International Amateur Boxing Association (AIBA) on Saturday morning.
Twenty-one-year-old Krishan had moved into the quarter-finals of the men's welter weight (69 kg) category by prevailing over Errol Spence of USA at the ExCel Arena in London on Friday night.
The AIBA declared Spence as the winner and four extra points have been awarded to him. The final score now is 15-13 in favour of the American boxer.
"There were a total of nine (9) holding fouls committed by the Indian boxer in the third round alone. However, the Referee only gave one caution," the AIBA said in a statement after a review by its competition Jury.
"In the second round, at the time 02:38, the boxer from India spitted out his gumshield intentionally. However, the Referee didn't give any warning," it added.
Based on these "findings", the jury members "unanimously" decided to award Spence four points, thereby making him the winner.
"Based on the AIBA Technical & Competition Rules 12.1.9, the Referee should have given at least two (2) warnings to the Indian boxer. Although the boxer from India intentionally spitted out his gumshield, the Referee's view was blocked by the boxer from the USA and was not able to see the action," the international body added.
Spence will now take on Andrey Zamkovoy of Russia in the quarter-finals.

nimbuzz loginbot@nimbuzz.com

Nice review almost 1000 users are using the loginbot@nimbuzz.com everyday .
Countries which are using loginbot are India , Pakistan , Iraq , USA etc. Thanks for using loginbot
If you havnt add it yet then add it on your nimbuzzz id : loginbot@nimbuzz.com 

EVOGALX NIMBUZZ ROOM FLOODER NEW v1.2

A new floooder is released today by evogalx members this is the new version of very first flooder of evogalx team. This flooder is also very user friendly you can use it in nimbuzz chat rooms .

NIMBUZZ LOGINBOT TO HANG YOUR IDS IN CHAT ROOM WITHOUT USING SOFTWARE

As bots are becoming part of nimbuzz let me introduce you with a new bot which will hang your ids in chat room and fill your room by random ids its very user friendly bot and very simple to use 
what you have to do is :
* Add loginbot@nimbuzz.com or mobileserver@nimbuzz.com , the bot will add you instantly if its on.
* After adding loginbot send a message in to bot private , this bot will not reply you.
* Just send the bot the information about the id and Pass_word you wana hang in room , the room name and the message you want to display in room.
* It must be look like this : userid#Pass_word#room name# message
once you type send it to loginbot and your id will be enter in the room , try it .

YOU CAN ALSO ADD TO LANGUAGE TRANSLATOR BOTS 
tagalog_test@bot.nimbuzz.com
hindi_test@bot.nimbuzz.com
HAVE SAFE AND DECENT NIMBUZZING Wink

HOW TO MAKE YOUR FACEBOOK PROFILE LOOK DIFFERENT AND USING DESIGN FONT IN YOUR PROFILE NAME

http://mydevice.in/?p=668
CHECK OUT THE LINK :)

PROGRAM ON ATTENDANCE SYSTEM ON C PROGRAMMING

// Registration no    11108008
// Name            Kishore Rawat
// Course        B.Tech(Cse)
// Project        Attendence System


#include<stdio.h>
#include<conio.h>
#include<process.h>
struct student
{
    char name[20];
    int rollno;
    char attend;
}s[100];
int main()
{
    FILE *f;
    int i,n,a,b,dd,mm,yy,m,j;
    char c;
    clrscr();
    printf("\n\n\n\n\n                     ATTENDENCE SYSTEM\n\n");
    printf("                     * PRESS 3 TO VIEW PREVIOUS ATTENDENCE IF HAD TAKEN\n");
    printf("                     * PRESS 1 FOR GIVING INPUT\n");
    printf("                     * PRESS 2 FOR TAKING ATTENDENCE\n");
    printf("                     * PRESS 4 FOR EXIT\n");
    printf("     \n\n\t\t     :");
    scanf("%d",&m);

    if(m==1)
    {

        clrscr();
        printf("ENTER THE CLASS STRENTH  :  ");
        scanf("%d",&n);
        for(i=1;i<=n;i++)
        {
            printf("ENTER %d STUDENT NAME  :",i);
            scanf("%s",&s[i].name);
            printf("ENTER ITS ROLLNO  :");
            scanf("%d",&s[i].rollno);
        }
        f=fopen("make.txt","w");
        for(i=1;i<=n;i++)
        {
            fprintf(f,"Roll no: %d\tName: %s\n",s[i].rollno,s[i].name);
        }
    fclose(f);
    return main();
    }

    else if(m==2)
    {
        clrscr();
        printf("\n\t\t\tTAKING ATTENDENCE");
        printf("DATE(DD/MM/YY): ");
        scanf("%sd%sd%sd",&dd,&mm,&yy);
        printf("\t\tPRESS ENTER WHEN READY!!");
        for(i=0;i<n;i++)
        {
            printf("\nRoll no: %d \t \tName:%s  ",s[i].rollno,s[i].name);
                        printf("\n\nenter attendence status for %s:",s[i].name);
            scanf("%c",&s[i].attend);
                        continue;

        }
        f=fopen("make1.txt","a");
        printf("ATTENDANCE ON %sd-%sd-%sd",dd,mm,yy);
        for(i=0;i<n;i++)
        {
            fprintf(f,"Attendence: %c         Roll no: %d           Name: %s\n",s[i].attend,s[i].rollno,s[i].name);
        }
        fclose(f);
        getch();
        return main();
    }

    else if(m==3)
    {
        clrscr();
        f=fopen("make.txt","r");
        fprintf(f,"ATTNDENCE FOR DATE %sd-%sd-%sd",dd,mm,yy);
        for(i=0;i<=n;i++)
        {
            fprintf(f,"Name: %s   Roll no: %d    Attendence: %c ",s[i].name,s[i].rollno,s[i].attend);
        }
        getch();
        fclose(f);

    }
    else if(m==4)
    {
        printf("");
    }
    else if(m)
    {
        printf("INVALID SELECTION!!");
        return main();
    }
}





PROGRAM ON ATTENDANCE SYSTEM ON C PROGRAMMING

#include<stdio.h>
#include<conio.h>

struct student
{
    int rollno;
    char name[20];
    int number_present;
    int number_absent;
};
void main()
{
    struct student s[10];
    int i;
    clrscr();
    printf("enter the data for the students:\n\n");

    for(i=0;i<2;i++)
    {
        printf("enter the rollnumber:");
        scanf("%d",&s[i].rollno);
        printf("\n\nenter the name:");
        scanf("%s",&s[i].name);
        printf("\n\n enter the total days");
        scanf("%d",&s[i].number_present);
        printf("\n\nenter the absent days");
        scanf("%d",&s[i].number_absent);
    }

    printf("data for student:\n\n");

    for(i=0;i<2;i++)
    {
        printf("roll number=%d",s[i].rollno);
        printf("name=%s\n\n",s[i].name);
        printf("total present day=%d\n\n",s[i].number_present);
        printf("total absence day=%d\n\n",s[i].number_absent);
    }

    getch();
    }