ECE-B transformerzzzz bunk n rocked @ akash's rum
jil jil jiga jiga
Register in this......
earn easily $$$$$$$$$$$$
Earn upto Rs. 9,000 pm
checking Emails. Join now! - sunny
Saturday, October 9, 2010
Saturday, August 14, 2010
folder lock wid out any software
author:srikanth noundla
email id?:sicetece@gmail.com
web site: sicetece.blogspot.com
Folder Lock With Password Without Any Software
Paste the code given below in notepad and 'Save' it as batch file (with extension '.bat').
Any name will do.
Then you see a batch file. Double click on this batch file to create a folder locker.
New folder named 'Locker' would be formed at the same location.
Now bring all the files you want to hide in the 'Locker' folder. Double click on the batch file to lock the folder namely 'Locker'.
If you want to unlock your files,double click the batch file again and you would be prompted for password.
Enter the password and enjoy access to the folder.
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
email id?:sicetece@gmail.com
web site: sicetece.blogspot.com
Folder Lock With Password Without Any Software
Paste the code given below in notepad and 'Save' it as batch file (with extension '.bat').
Any name will do.
Then you see a batch file. Double click on this batch file to create a folder locker.
New folder named 'Locker' would be formed at the same location.
Now bring all the files you want to hide in the 'Locker' folder. Double click on the batch file to lock the folder namely 'Locker'.
If you want to unlock your files,double click the batch file again and you would be prompted for password.
Enter the password and enjoy access to the folder.
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
Wednesday, July 28, 2010
Tuesday, July 13, 2010
sankranthi wish in c graphics
//Author : srikanth Noundla
//Email ID : sicetece@gmail.com
//Web site : sicetece.blogspot.com
//Wishes u a Happy Sankranthi
#include
#include
#include
#include
main()
{
int gd,gm,i,j=0;
clrscr();
gd=DETECT;
initgraph(&gd,&gm,"c:\\tc\\bgi");
setbkcolor(RED);
do
{ j++;
for(i=500;i>0;i--)
{
outtextxy(i,200,"Happy Sankranthi");
cleardevice();
setcolor(YELLOW);
delay(5);
line(140,60+i,100,100+i); //line1
line(100,100+i,140,180+i); //line2
line(140,180+i,180,100+i); //line3
line(180,100+i,140,60+i); //line4
setlinestyle(DASHED_LINE,1,3);
line(140,180+i,140,300+i); //line5
setlinestyle(SOLID_LINE,1,1);
circle(95,100+i,6); //circle1
circle(186,100+i,6); //circle2
ellipse(140,99+i,180,360,39,16);
}
}
while(j<3);//iterations
settextstyle(GOTHIC_FONT,0,3);
outtextxy(330,180,"****************************");
outtextxy(330,200,"HAPPY SANKRANTHI");
outtextxy(330,218,"****************************");
getch();
setcolor(BLUE);
settextstyle(SANS_SERIF_FONT,0,2);
outtextxy(440,380,"Ur...");
outtextxy(440,400,"Srikanth Noundla");
getch();
closegraph();
return 0;
}
//Email ID : sicetece@gmail.com
//Web site : sicetece.blogspot.com
//Wishes u a Happy Sankranthi
#include
#include
#include
#include
main()
{
int gd,gm,i,j=0;
clrscr();
gd=DETECT;
initgraph(&gd,&gm,"c:\\tc\\bgi");
setbkcolor(RED);
do
{ j++;
for(i=500;i>0;i--)
{
outtextxy(i,200,"Happy Sankranthi");
cleardevice();
setcolor(YELLOW);
delay(5);
line(140,60+i,100,100+i); //line1
line(100,100+i,140,180+i); //line2
line(140,180+i,180,100+i); //line3
line(180,100+i,140,60+i); //line4
setlinestyle(DASHED_LINE,1,3);
line(140,180+i,140,300+i); //line5
setlinestyle(SOLID_LINE,1,1);
circle(95,100+i,6); //circle1
circle(186,100+i,6); //circle2
ellipse(140,99+i,180,360,39,16);
}
}
while(j<3);//iterations
settextstyle(GOTHIC_FONT,0,3);
outtextxy(330,180,"****************************");
outtextxy(330,200,"HAPPY SANKRANTHI");
outtextxy(330,218,"****************************");
getch();
setcolor(BLUE);
settextstyle(SANS_SERIF_FONT,0,2);
outtextxy(440,380,"Ur...");
outtextxy(440,400,"Srikanth Noundla");
getch();
closegraph();
return 0;
}
methematical fun in c graphics
//Author : Srikanth Noundla
//Email ID : sicetece@gmail.com
//Web Site : sicetece.blogspot.com
// humourous guyzz plzz rply ur feeling n snd different funny concepts
//Mathematical fun concept
#include
#include
#include
#include
#include
void main()
{
int gd,gm,i,j,m;
clrscr();
gd=DETECT;
initgraph(&gd,&gm,"c:\\tc\\bgi");
printf("\n\ne^x & c r talking together ----> \te^x+c");//TAKE1
/*for(m=0;m<10;m++)
{
sound(900%m+25);
delay(30);
}
nosound();
//delay(30); */
getch();
cleardevice();
outtextxy(200,70,"e^x+c"); //TAKE2
printf("\n\t\tc: Derivative coming it wil neutral me");
outtextxy(10,70,"derivate");
for(m=0;m<=10;m++)
{
sound(random(120)*m+20);
delay(20);
}
nosound();
getch();
//TAKE3
for(i=220;i<500;i++) //Running of c
{
outtextxy(10,70,"derivate");
outtextxy(200,70,"e^x");
outtextxy(i,70,"c");
delay(4);
cleardevice();
}
//take4
outtextxy(10,70,"derivate");
outtextxy(200,70,"e^x");
for(m=0;m<=12;m++)
{
sound(random(400)%45);
delay(20);
}
nosound();
getch();
outtextxy(240,70,": haha.....i'v no problem i'm e^x");
getch();
for(i=10;i<70;i++)
{
outtextxy(i,70,"derivate");
delay(15);
cleardevice();
outtextxy(i,70,"derivate");
outtextxy(200,70,"e^x");
}
//punch to the e^x
cleardevice();
outtextxy(i,70,"d/dy");
outtextxy(i,58,":haha....i'm d/dy not d/dx");
outtextxy(200,70,"e^x !");
for(m=0;m<=10;m++)
{
sound(400-m*12);
delay(30);
}
nosound();
getch();
//take5
//neutralises e^x zero
for(j=i;j<210;j++)
{
outtextxy(j,70,"d/dy");
delay(10);
cleardevice();
outtextxy(j,70,"d/dy");
outtextxy(200,70,"e^x");
}
for(m=0;m<=5;m++)
{
sound(220*m-23);
delay(3);
}
nosound();
cleardevice();
outtextxy(j,70,"0");
for(i=j;i<500;i++)
{
outtextxy(i,70,"d/dy");
delay(10);
cleardevice();
outtextxy(j,70,"0");
}
cleardevice();
settextjustify(CENTER_TEXT,CENTER_TEXT);
settextstyle(SANS_SERIF_FONT,0,3);
setcolor(YELLOW);
outtextxy(300,180,"concept");
setetxxy(300,220,"Chandra shekar");
for(i=0;i<70;i++)
{
delay(dl);
}
cleardevice();
outtextxy(300,180,"created by");
settextstyle(SANS_SERIF_FONT,0,5);
outtextxy(300,220,"Srikanth Noundla");
delay(1);
for(j=0;j<3;j++)
{
for(i=0;i<=10;i++)
{
sound(150+i*10);
delay(80);
}
nosound();
}
getch();
cleardevice();
}
//Email ID : sicetece@gmail.com
//Web Site : sicetece.blogspot.com
// humourous guyzz plzz rply ur feeling n snd different funny concepts
//Mathematical fun concept
#include
#include
#include
#include
#include
void main()
{
int gd,gm,i,j,m;
clrscr();
gd=DETECT;
initgraph(&gd,&gm,"c:\\tc\\bgi");
printf("\n\ne^x & c r talking together ----> \te^x+c");//TAKE1
/*for(m=0;m<10;m++)
{
sound(900%m+25);
delay(30);
}
nosound();
//delay(30); */
getch();
cleardevice();
outtextxy(200,70,"e^x+c"); //TAKE2
printf("\n\t\tc: Derivative coming it wil neutral me");
outtextxy(10,70,"derivate");
for(m=0;m<=10;m++)
{
sound(random(120)*m+20);
delay(20);
}
nosound();
getch();
//TAKE3
for(i=220;i<500;i++) //Running of c
{
outtextxy(10,70,"derivate");
outtextxy(200,70,"e^x");
outtextxy(i,70,"c");
delay(4);
cleardevice();
}
//take4
outtextxy(10,70,"derivate");
outtextxy(200,70,"e^x");
for(m=0;m<=12;m++)
{
sound(random(400)%45);
delay(20);
}
nosound();
getch();
outtextxy(240,70,": haha.....i'v no problem i'm e^x");
getch();
for(i=10;i<70;i++)
{
outtextxy(i,70,"derivate");
delay(15);
cleardevice();
outtextxy(i,70,"derivate");
outtextxy(200,70,"e^x");
}
//punch to the e^x
cleardevice();
outtextxy(i,70,"d/dy");
outtextxy(i,58,":haha....i'm d/dy not d/dx");
outtextxy(200,70,"e^x !");
for(m=0;m<=10;m++)
{
sound(400-m*12);
delay(30);
}
nosound();
getch();
//take5
//neutralises e^x zero
for(j=i;j<210;j++)
{
outtextxy(j,70,"d/dy");
delay(10);
cleardevice();
outtextxy(j,70,"d/dy");
outtextxy(200,70,"e^x");
}
for(m=0;m<=5;m++)
{
sound(220*m-23);
delay(3);
}
nosound();
cleardevice();
outtextxy(j,70,"0");
for(i=j;i<500;i++)
{
outtextxy(i,70,"d/dy");
delay(10);
cleardevice();
outtextxy(j,70,"0");
}
cleardevice();
settextjustify(CENTER_TEXT,CENTER_TEXT);
settextstyle(SANS_SERIF_FONT,0,3);
setcolor(YELLOW);
outtextxy(300,180,"concept");
setetxxy(300,220,"Chandra shekar");
for(i=0;i<70;i++)
{
delay(dl);
}
cleardevice();
outtextxy(300,180,"created by");
settextstyle(SANS_SERIF_FONT,0,5);
outtextxy(300,220,"Srikanth Noundla");
delay(1);
for(j=0;j<3;j++)
{
for(i=0;i<=10;i++)
{
sound(150+i*10);
delay(80);
}
nosound();
}
getch();
cleardevice();
}
love prog. in c graphics
//Author : Srikanth Noundla
//Email ID : sicetece@gmail.com
//Web Site : sicetece.blogspot.com
//do u love any1 just use dis 2 express ur feelings n help me in new concepts
//Displays as my heart is full of u
#include
#include
#include
#include
#include
heart();
arrow_after_hit(int);
//draws heart
heart()
{
setcolor(6);
setfillstyle(SOLID_FILL,6);
pieslice(450,100,0,360,40);
pieslice(520,100,0,360,40);
pieslice(493,208,55,131,100);
return 0;
}
//draws broken arrow after hit heart
arrow_after_hit(int x)
{
settextstyle(DEFAULT_FONT,0,1);
setcolor(YELLOW);
outtextxy(x+35,110,">>>-----");
setcolor(RED);
outtextxy(x+95,110,"-");
return 0;
}
void main()
{
int gd=DETECT,gm,x,y,i,d;
char name[20];
clrscr();
initgraph(&gd,&gm,"c:\\tc\\bgi");
//intialise
outtextxy(20,20,"Hi friend");
outtextxy(20,30,"pls Enrole ur name");
printf("\n\n\n\t\t");
fflush(stdin);
//reads user name
gets(name);
//changes background color
setbkcolor(8);
//sets color of font
setcolor(6);
//sets fill style
setfillstyle(SOLID_FILL,6);
//draws heart
pieslice(450,100,0,360,40);
pieslice(520,100,0,360,40);
pieslice(493,208,55,131,100);
//motion of arrow
for(x=0;x<385;x=x+2)
{
setcolor(YELLOW);
//draws arrow
outtextxy(x-7,110,">>>---------->");
delay(30);
cleardevice();
heart();
setcolor(YELLOW);
outtextxy(x-7,110,">>>---------->");
}
heart();
arrow_after_hit(x);
//blood drops
for(i=0;i<2;i++)
{
for(y=105;y<250;y++)
{
setfillstyle(SOLID_FILL,RED);
pieslice(x+105,y,0,360,4);
if(i>0 && y>120)
{
pieslice(x+90,y,0,360,2);
delay(10);
}
if(y>150)
{
pieslice(x+105,y-15,0,360,3);
delay(10);
pieslice(x+110,y-30,0,360,4);
delay(10);
pieslice(x+95,y-5,0,360,4);
}
delay(10);
cleardevice();
heart();
arrow_after_hit(x);
//sets delay time
for(d=0;d<5;d++)
{
delay(d);
}
} if(i>0)
{
//prints user name
settextstyle(GOTHIC_FONT,0,4);
outtextxy(x+80,y-30,name);
}
}
setcolor(YELLOW);
settextstyle(SANS_SERIF_FONT,0,4);
for(d=0;d<50;d++)
{
delay(d);
}
outtextxy(100,200,"Created by");
for(d=0;d<30;d++)
{
delay(d);
}
setcolor(13);
outtextxy(102,238,"Srikanth Noundla");
setcolor(YELLOW);
outtextxy(100,240,"Srikanth Noundla");
getch();
closegraph();
}
//Email ID : sicetece@gmail.com
//Web Site : sicetece.blogspot.com
//do u love any1 just use dis 2 express ur feelings n help me in new concepts
//Displays as my heart is full of u
#include
#include
#include
#include
#include
heart();
arrow_after_hit(int);
//draws heart
heart()
{
setcolor(6);
setfillstyle(SOLID_FILL,6);
pieslice(450,100,0,360,40);
pieslice(520,100,0,360,40);
pieslice(493,208,55,131,100);
return 0;
}
//draws broken arrow after hit heart
arrow_after_hit(int x)
{
settextstyle(DEFAULT_FONT,0,1);
setcolor(YELLOW);
outtextxy(x+35,110,">>>-----");
setcolor(RED);
outtextxy(x+95,110,"-");
return 0;
}
void main()
{
int gd=DETECT,gm,x,y,i,d;
char name[20];
clrscr();
initgraph(&gd,&gm,"c:\\tc\\bgi");
//intialise
outtextxy(20,20,"Hi friend");
outtextxy(20,30,"pls Enrole ur name");
printf("\n\n\n\t\t");
fflush(stdin);
//reads user name
gets(name);
//changes background color
setbkcolor(8);
//sets color of font
setcolor(6);
//sets fill style
setfillstyle(SOLID_FILL,6);
//draws heart
pieslice(450,100,0,360,40);
pieslice(520,100,0,360,40);
pieslice(493,208,55,131,100);
//motion of arrow
for(x=0;x<385;x=x+2)
{
setcolor(YELLOW);
//draws arrow
outtextxy(x-7,110,">>>---------->");
delay(30);
cleardevice();
heart();
setcolor(YELLOW);
outtextxy(x-7,110,">>>---------->");
}
heart();
arrow_after_hit(x);
//blood drops
for(i=0;i<2;i++)
{
for(y=105;y<250;y++)
{
setfillstyle(SOLID_FILL,RED);
pieslice(x+105,y,0,360,4);
if(i>0 && y>120)
{
pieslice(x+90,y,0,360,2);
delay(10);
}
if(y>150)
{
pieslice(x+105,y-15,0,360,3);
delay(10);
pieslice(x+110,y-30,0,360,4);
delay(10);
pieslice(x+95,y-5,0,360,4);
}
delay(10);
cleardevice();
heart();
arrow_after_hit(x);
//sets delay time
for(d=0;d<5;d++)
{
delay(d);
}
} if(i>0)
{
//prints user name
settextstyle(GOTHIC_FONT,0,4);
outtextxy(x+80,y-30,name);
}
}
setcolor(YELLOW);
settextstyle(SANS_SERIF_FONT,0,4);
for(d=0;d<50;d++)
{
delay(d);
}
outtextxy(100,200,"Created by");
for(d=0;d<30;d++)
{
delay(d);
}
setcolor(13);
outtextxy(102,238,"Srikanth Noundla");
setcolor(YELLOW);
outtextxy(100,240,"Srikanth Noundla");
getch();
closegraph();
}
c graphics program for commonweakth games Delhi 2010
/Author : Srikanth Noundla
//Email ID : sicetece@gmail.com
//Web Site : sicetece.blogspot.com
/*An advertisment for Commonwealth Games Delhi 2010
Official sponserer: Hero Honda */
#include
#include
#include
#include
#include
#define PI 3.1415
heli_draw(int,int,int);
//Draws & moves wheel
void rotate_wheel(int xc,int yc,int t)
{
int x,y,i;
setcolor(random(16));
for(t=t;t<180;t=t+60)
{
x=30*cos(t*PI/180);
y=30*sin(t*PI/180);
line(xc+x,yc+y,xc-x,yc-y);
}
for(i=0;i<5;i++)
{
setcolor(random(16));
circle(xc,yc,10+i);
}
setcolor(8);
circle(xc,yc,30);
circle(xc,yc,32);
circle(xc,yc,34);
circle(xc,yc,35);
circle(xc,yc,36);
}
//Draws Ashoka wheel
void ashoka_wheel(int xc,int yc,int t)
{
int x1,y1,x2,y2,x3,y3;
setcolor(BLUE);
for(t=t;t<180;t=t+60)
{
x1=15*cos(t*PI/180);
y1=15*sin(t*PI/180);
x2=15*cos(500+t*PI/180);
y2=15*sin(500+t*PI/180);
x3=15*cos(2000+t*PI/180);
y3=15*sin(2000+t*PI/180);
line(xc+x1,yc+y1,xc-x1,yc-y1);
line(xc+x2,yc+y2,xc-x2,yc-y2);
line(xc+x3,yc+y3,xc-x3,yc-y3);
}
circle(xc,yc,15);
circle(xc,yc,16);
circle(xc,yc,17);
}
//Draws flag
void flag(int i)
{
setfillstyle(SOLID_FILL,BROWN);
bar(i,50,100,100);
setfillstyle(SOLID_FILL,WHITE);
bar(i,90,100,130);
setfillstyle(SOLID_FILL,GREEN);
bar(i,130,100,170);
}
//Draws helicopter at given location and direction
heli_draw ( int x, int y, int d )
{
int direction, i, j ;
setcolor(LIGHTBLUE);
sound(50);
delay(10);
nosound();
if ( d )
direction = -1 ;
else
direction = 1 ;
i = 3 ;
j = 8 ;
line ( x - j - 8, y - i - 2, x + j + 8, y - i - 2 ) ;
line ( x - j + 5, y - i - 1, x + j - 5, y - i - 1 ) ;
line ( x - j, y - i, x + j, y - i ) ;
for ( ; i > 0 ; i--, j += 2 )
{
putpixel ( x - ( direction * j ), y - i, 1 ) ;
line ( x + ( direction * j ), y - i, x + ( direction * ( j - 8 ) ), y - i ) ;
}
i = 0 ;
j -= 2 ;
line ( x - ( direction * j ), y - i, x - ( direction * ( j + 17 ) ), y - i ) ;
line ( x - ( direction * j ), y - i + 1, x - ( direction * ( j + 7 ) ), y - i + 1 ) ;
putpixel ( x - ( direction * ( j + 19 ) ), y - i - 1, 1 ) ;
for ( ; i < 3 ; i++, j -= 2 )
{
putpixel ( x - j, y + i, 1 ) ;
putpixel ( x + j, y + i, 1 ) ;
}
line ( x - j, y + i, x + j, y + i ) ;
putpixel ( x - j + 3, y + i + 1, 1 ) ;
putpixel ( x + j - 3, y + i + 1, 1 ) ;
line ( x - j - 10, y + i + 2, x + j + 10, y + i + 2 ) ;
putpixel ( x + ( direction * ( j + 12 ) ), y + i + 1, 1 ) ;
return 0;
}
void cwg_logo()
{
int i;
setcolor(BLUE);
settextstyle(TRIPLEX_FONT,0,2);
outtextxy(478,89,"DELHI 2010");
for(i=0;i<50;i++)
{
delay(i);
}
settextstyle(SMALL_FONT,0,4);
outtextxy(471,112,"XIX COMMONWEALTH GAMES");
for(i=0;i<50;i++)
{
delay(i);
}
setcolor(YELLOW);
setfillstyle(SOLID_FILL,YELLOW);
pieslice(538,170,85,95,30);
setcolor(RED);
setfillstyle(SOLID_FILL,RED);
pieslice(527,164,85,95,24);
setcolor(LIGHTBLUE);
setfillstyle(SOLID_FILL,LIGHTBLUE);
pieslice(548,164,85,95,24);
setcolor(8);
for(i=0;i<=10;i++)
{
ellipse(520,140,180,270,30-i,18);
ellipse(555,140,270,360,30-i,18);
}
setfillstyle(SOLID_FILL,8);
bar(480,127,595,131);
setcolor(BLUE);
settextstyle(SMALL_FONT,0,2);
outtextxy(503,175,"COME OUT AND PLAY");
for(i=0;i<50;i++)
{
delay(i);
}
setcolor(8);
for(i=0;i<3;i++)
{
circle(535,130,74);
circle(535,130,80-i);
}
}
void main()
{
int d=0,m=0,x,y,i,h1,h2,dl;
initgraph(&d,&m,"c:\\tc\\bgi");
setbkcolor(0);
clrscr();
setcolor(LIGHTGREEN);
outtextxy(70,200,"Commonwealth Games");
outtextxy(70,210,"Delhi 2010");
outtextxy(70,220,"81 seconds");
outtextxy(70,230,"Young Indian creations");
outtextxy(70,240,"11 07 2010");
for(dl=0;dl<100;dl++)
{
delay(dl);
}
cleardevice();
settextstyle(SANS_SERIF_FONT,0,2);
outtextxy(150,90,"My sincere thanx to my encouraged friends");
settextstyle(DEFAULT_FONT,0,1);
outtextxy(150,125,"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
for(dl=0;dl<55;dl++)
{
delay(dl);
}
outtextxy(280,140,"S.Sinivas Rao sir");
outtextxy(280,155,"ShivaRam");
outtextxy(280,170,"SaiKrishna");
outtextxy(280,185,"Gopika");
outtextxy(280,200,"Divyanand");
outtextxy(280,215,"Sridhar");
outtextxy(280,235,"And all my friends");
for(dl=0;dl<100;dl++)
{
delay(dl);
}
cleardevice();
settextstyle(SANS_SERIF_FONT,0,2);
outtextxy(150,120,"My special thanx to my dear bro.");
settextstyle(GOTHIC_FONT,0,6);
outtextxy(230,170,"sunny");
settextstyle(DEFAULT_FONT,0,1);
for(dl=0;dl<90;dl++)
{
delay(dl);
}
setpalette(0,7);
//draws n moves Hero Honda
for(x=0;x<740;x++)
{
setcolor(8);
rotate_wheel(x,230,x%60);
delay(5);
rotate_wheel(x,230,x%60);
rotate_wheel(x-120,230,x%60);
setfillstyle(BKSLASH_FILL,random(16));//Petrol tank
setcolor(8);
fillellipse(x-30,175,40,20);
setcolor(WHITE);
//Engine
//{
circle(x-60,215,18);
circle(x-60,215,17);
circle(x-60,215,15);
circle(x-60,215,13);
circle(x-60,215,5);
//}
setcolor(random(16));
outtextxy(x-80,205,"HERO");
outtextxy(x-80,215,"HONDA");
for(i=0;i<4;i++)
{
ellipse(x-25,160,0,85,30-i,40-i);
}
//seat
setcolor(8);
setfillstyle(SOLID_FILL,8);
fillellipse(x-118,185,55,12);
pieslice(x-150,195,80,230,23);
pieslice(x-70,180,70,170,9);
setfillstyle(SOLID_FILL,8);//HEAD LIGHT
setcolor(random(16));
pieslice(x+20,155,80,275,20);
setfillstyle(SOLID_FILL,random(16));
fillellipse(x-120,230,45,7);
for(i=0;i<3;i++)
{
ellipse(x-160,175,0,180,5-i,25-i);
}
for(i=0;i<4;i++)
{
setcolor(random(16));
ellipse(x+30,170,76,180,25-i,45-i);
}
delay(5);
cleardevice();
rotate_wheel(x-120,230,x%60);
}
for(i=620;i>=205;i--)
{
rotate_wheel(i,230,i%60);
delay(10);
cleardevice();
rotate_wheel(i,230,i%60);
if(i>=300)
{
flag(i);
}
flag(300);
}
for(y=i;y>=110;y--)
{
rotate_wheel(i,y,y%60);
delay(10);
cleardevice();
flag(300);
rotate_wheel(i,y,y%60);
}
cleardevice();
flag(300);
ashoka_wheel(i,y,y%60);
for(h1=0,h2=550;h1<550;h1=h1+2,h2=h2-2)
{
heli_draw(h1,30,0);
heli_draw(h2,30,1);
delay(10);
cleardevice();
flag(300);
ashoka_wheel(i,y,y%60);
}
flag(300);
ashoka_wheel(i,y,y%60);
for( ;h2<550;h1=h1-2,h2=h2+2)
{
heli_draw(h1,30,1);
heli_draw(h2,30,0);
delay(10);
cleardevice();
flag(300);
ashoka_wheel(i,y,y%60);
}
flag(300);
ashoka_wheel(i,y,y%60);
for(dl=0;dl<45;dl++)
{
delay(dl);
}
settextstyle(DEFAULT_FONT,0,2);
setcolor(GREEN);
outtextxy(362,348,"DHAK DHAK GO");
setcolor(RED);
outtextxy(360,350,"DHAK DHAK GO");
for(dl=0;dl<35;dl++)
{
delay(dl);
}
cwg_logo();
for(dl=0;dl<35;dl++)
{
delay(dl);
}
settextjustify(CENTER_TEXT,CENTER_TEXT);
setcolor(RED);
settextstyle(SANS_SERIF_FONT,0,1);
outtextxy(120,300,"Chalo");
for(dl=0;dl<35;dl++)
{
delay(dl);
}
setcolor(WHITE);
settextstyle(GOTHIC_FONT,0,6);
outtextxy(130,330,"INDIA");
for(dl=0;dl<35;dl++)
{
delay(dl);
}
setcolor(GREEN);
settextstyle(SANS_SERIF_FONT,0,1);
outtextxy(120,370,"Chalo");
for(dl=0;dl<80;dl++)
{
delay(dl);
}
cleardevice();
setbkcolor(8);
settextjustify(LEFT_TEXT,LEFT_TEXT);
settextstyle(SANS_SERIF_FONT,0,6);
setcolor(RED);
outtextxy(20,100,"Proud");
setcolor(WHITE);
outtextxy(20,180,"To be");
setcolor(GREEN);
settextstyle(GOTHIC_FONT,0,13);
outtextxy(20,350,"An Indian");
for(dl=0;dl<90;dl++)
{
delay(dl);
}
cleardevice();
setbkcolor(0);
setcolor(LIGHTCYAN);
settextstyle(SANS_SERIF_FONT,0,5);
outtextxy(120,180,"Come out and play");
for(dl=0;dl<30;dl++)
{
delay(dl);
}
setcolor(YELLOW);
settextstyle(SANS_SERIF_FONT,0,7);
outtextxy(120,300,"Dhak Dhak Go");
for(dl=0;dl<55;dl++)
{
delay(dl);
}
cleardevice();
setcolor(LIGHTGREEN);
settextstyle(SANS_SERIF_FONT,0,4);
outtextxy(140,200,"Created by");
settextstyle(SANS_SERIF_FONT,0,5);
outtextxy(140,250,"Srikanth Noundla");
getch();
closegraph();
}
//Email ID : sicetece@gmail.com
//Web Site : sicetece.blogspot.com
/*An advertisment for Commonwealth Games Delhi 2010
Official sponserer: Hero Honda */
#include
#include
#include
#include
#include
#define PI 3.1415
heli_draw(int,int,int);
//Draws & moves wheel
void rotate_wheel(int xc,int yc,int t)
{
int x,y,i;
setcolor(random(16));
for(t=t;t<180;t=t+60)
{
x=30*cos(t*PI/180);
y=30*sin(t*PI/180);
line(xc+x,yc+y,xc-x,yc-y);
}
for(i=0;i<5;i++)
{
setcolor(random(16));
circle(xc,yc,10+i);
}
setcolor(8);
circle(xc,yc,30);
circle(xc,yc,32);
circle(xc,yc,34);
circle(xc,yc,35);
circle(xc,yc,36);
}
//Draws Ashoka wheel
void ashoka_wheel(int xc,int yc,int t)
{
int x1,y1,x2,y2,x3,y3;
setcolor(BLUE);
for(t=t;t<180;t=t+60)
{
x1=15*cos(t*PI/180);
y1=15*sin(t*PI/180);
x2=15*cos(500+t*PI/180);
y2=15*sin(500+t*PI/180);
x3=15*cos(2000+t*PI/180);
y3=15*sin(2000+t*PI/180);
line(xc+x1,yc+y1,xc-x1,yc-y1);
line(xc+x2,yc+y2,xc-x2,yc-y2);
line(xc+x3,yc+y3,xc-x3,yc-y3);
}
circle(xc,yc,15);
circle(xc,yc,16);
circle(xc,yc,17);
}
//Draws flag
void flag(int i)
{
setfillstyle(SOLID_FILL,BROWN);
bar(i,50,100,100);
setfillstyle(SOLID_FILL,WHITE);
bar(i,90,100,130);
setfillstyle(SOLID_FILL,GREEN);
bar(i,130,100,170);
}
//Draws helicopter at given location and direction
heli_draw ( int x, int y, int d )
{
int direction, i, j ;
setcolor(LIGHTBLUE);
sound(50);
delay(10);
nosound();
if ( d )
direction = -1 ;
else
direction = 1 ;
i = 3 ;
j = 8 ;
line ( x - j - 8, y - i - 2, x + j + 8, y - i - 2 ) ;
line ( x - j + 5, y - i - 1, x + j - 5, y - i - 1 ) ;
line ( x - j, y - i, x + j, y - i ) ;
for ( ; i > 0 ; i--, j += 2 )
{
putpixel ( x - ( direction * j ), y - i, 1 ) ;
line ( x + ( direction * j ), y - i, x + ( direction * ( j - 8 ) ), y - i ) ;
}
i = 0 ;
j -= 2 ;
line ( x - ( direction * j ), y - i, x - ( direction * ( j + 17 ) ), y - i ) ;
line ( x - ( direction * j ), y - i + 1, x - ( direction * ( j + 7 ) ), y - i + 1 ) ;
putpixel ( x - ( direction * ( j + 19 ) ), y - i - 1, 1 ) ;
for ( ; i < 3 ; i++, j -= 2 )
{
putpixel ( x - j, y + i, 1 ) ;
putpixel ( x + j, y + i, 1 ) ;
}
line ( x - j, y + i, x + j, y + i ) ;
putpixel ( x - j + 3, y + i + 1, 1 ) ;
putpixel ( x + j - 3, y + i + 1, 1 ) ;
line ( x - j - 10, y + i + 2, x + j + 10, y + i + 2 ) ;
putpixel ( x + ( direction * ( j + 12 ) ), y + i + 1, 1 ) ;
return 0;
}
void cwg_logo()
{
int i;
setcolor(BLUE);
settextstyle(TRIPLEX_FONT,0,2);
outtextxy(478,89,"DELHI 2010");
for(i=0;i<50;i++)
{
delay(i);
}
settextstyle(SMALL_FONT,0,4);
outtextxy(471,112,"XIX COMMONWEALTH GAMES");
for(i=0;i<50;i++)
{
delay(i);
}
setcolor(YELLOW);
setfillstyle(SOLID_FILL,YELLOW);
pieslice(538,170,85,95,30);
setcolor(RED);
setfillstyle(SOLID_FILL,RED);
pieslice(527,164,85,95,24);
setcolor(LIGHTBLUE);
setfillstyle(SOLID_FILL,LIGHTBLUE);
pieslice(548,164,85,95,24);
setcolor(8);
for(i=0;i<=10;i++)
{
ellipse(520,140,180,270,30-i,18);
ellipse(555,140,270,360,30-i,18);
}
setfillstyle(SOLID_FILL,8);
bar(480,127,595,131);
setcolor(BLUE);
settextstyle(SMALL_FONT,0,2);
outtextxy(503,175,"COME OUT AND PLAY");
for(i=0;i<50;i++)
{
delay(i);
}
setcolor(8);
for(i=0;i<3;i++)
{
circle(535,130,74);
circle(535,130,80-i);
}
}
void main()
{
int d=0,m=0,x,y,i,h1,h2,dl;
initgraph(&d,&m,"c:\\tc\\bgi");
setbkcolor(0);
clrscr();
setcolor(LIGHTGREEN);
outtextxy(70,200,"Commonwealth Games");
outtextxy(70,210,"Delhi 2010");
outtextxy(70,220,"81 seconds");
outtextxy(70,230,"Young Indian creations");
outtextxy(70,240,"11 07 2010");
for(dl=0;dl<100;dl++)
{
delay(dl);
}
cleardevice();
settextstyle(SANS_SERIF_FONT,0,2);
outtextxy(150,90,"My sincere thanx to my encouraged friends");
settextstyle(DEFAULT_FONT,0,1);
outtextxy(150,125,"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
for(dl=0;dl<55;dl++)
{
delay(dl);
}
outtextxy(280,140,"S.Sinivas Rao sir");
outtextxy(280,155,"ShivaRam");
outtextxy(280,170,"SaiKrishna");
outtextxy(280,185,"Gopika");
outtextxy(280,200,"Divyanand");
outtextxy(280,215,"Sridhar");
outtextxy(280,235,"And all my friends");
for(dl=0;dl<100;dl++)
{
delay(dl);
}
cleardevice();
settextstyle(SANS_SERIF_FONT,0,2);
outtextxy(150,120,"My special thanx to my dear bro.");
settextstyle(GOTHIC_FONT,0,6);
outtextxy(230,170,"sunny");
settextstyle(DEFAULT_FONT,0,1);
for(dl=0;dl<90;dl++)
{
delay(dl);
}
setpalette(0,7);
//draws n moves Hero Honda
for(x=0;x<740;x++)
{
setcolor(8);
rotate_wheel(x,230,x%60);
delay(5);
rotate_wheel(x,230,x%60);
rotate_wheel(x-120,230,x%60);
setfillstyle(BKSLASH_FILL,random(16));//Petrol tank
setcolor(8);
fillellipse(x-30,175,40,20);
setcolor(WHITE);
//Engine
//{
circle(x-60,215,18);
circle(x-60,215,17);
circle(x-60,215,15);
circle(x-60,215,13);
circle(x-60,215,5);
//}
setcolor(random(16));
outtextxy(x-80,205,"HERO");
outtextxy(x-80,215,"HONDA");
for(i=0;i<4;i++)
{
ellipse(x-25,160,0,85,30-i,40-i);
}
//seat
setcolor(8);
setfillstyle(SOLID_FILL,8);
fillellipse(x-118,185,55,12);
pieslice(x-150,195,80,230,23);
pieslice(x-70,180,70,170,9);
setfillstyle(SOLID_FILL,8);//HEAD LIGHT
setcolor(random(16));
pieslice(x+20,155,80,275,20);
setfillstyle(SOLID_FILL,random(16));
fillellipse(x-120,230,45,7);
for(i=0;i<3;i++)
{
ellipse(x-160,175,0,180,5-i,25-i);
}
for(i=0;i<4;i++)
{
setcolor(random(16));
ellipse(x+30,170,76,180,25-i,45-i);
}
delay(5);
cleardevice();
rotate_wheel(x-120,230,x%60);
}
for(i=620;i>=205;i--)
{
rotate_wheel(i,230,i%60);
delay(10);
cleardevice();
rotate_wheel(i,230,i%60);
if(i>=300)
{
flag(i);
}
flag(300);
}
for(y=i;y>=110;y--)
{
rotate_wheel(i,y,y%60);
delay(10);
cleardevice();
flag(300);
rotate_wheel(i,y,y%60);
}
cleardevice();
flag(300);
ashoka_wheel(i,y,y%60);
for(h1=0,h2=550;h1<550;h1=h1+2,h2=h2-2)
{
heli_draw(h1,30,0);
heli_draw(h2,30,1);
delay(10);
cleardevice();
flag(300);
ashoka_wheel(i,y,y%60);
}
flag(300);
ashoka_wheel(i,y,y%60);
for( ;h2<550;h1=h1-2,h2=h2+2)
{
heli_draw(h1,30,1);
heli_draw(h2,30,0);
delay(10);
cleardevice();
flag(300);
ashoka_wheel(i,y,y%60);
}
flag(300);
ashoka_wheel(i,y,y%60);
for(dl=0;dl<45;dl++)
{
delay(dl);
}
settextstyle(DEFAULT_FONT,0,2);
setcolor(GREEN);
outtextxy(362,348,"DHAK DHAK GO");
setcolor(RED);
outtextxy(360,350,"DHAK DHAK GO");
for(dl=0;dl<35;dl++)
{
delay(dl);
}
cwg_logo();
for(dl=0;dl<35;dl++)
{
delay(dl);
}
settextjustify(CENTER_TEXT,CENTER_TEXT);
setcolor(RED);
settextstyle(SANS_SERIF_FONT,0,1);
outtextxy(120,300,"Chalo");
for(dl=0;dl<35;dl++)
{
delay(dl);
}
setcolor(WHITE);
settextstyle(GOTHIC_FONT,0,6);
outtextxy(130,330,"INDIA");
for(dl=0;dl<35;dl++)
{
delay(dl);
}
setcolor(GREEN);
settextstyle(SANS_SERIF_FONT,0,1);
outtextxy(120,370,"Chalo");
for(dl=0;dl<80;dl++)
{
delay(dl);
}
cleardevice();
setbkcolor(8);
settextjustify(LEFT_TEXT,LEFT_TEXT);
settextstyle(SANS_SERIF_FONT,0,6);
setcolor(RED);
outtextxy(20,100,"Proud");
setcolor(WHITE);
outtextxy(20,180,"To be");
setcolor(GREEN);
settextstyle(GOTHIC_FONT,0,13);
outtextxy(20,350,"An Indian");
for(dl=0;dl<90;dl++)
{
delay(dl);
}
cleardevice();
setbkcolor(0);
setcolor(LIGHTCYAN);
settextstyle(SANS_SERIF_FONT,0,5);
outtextxy(120,180,"Come out and play");
for(dl=0;dl<30;dl++)
{
delay(dl);
}
setcolor(YELLOW);
settextstyle(SANS_SERIF_FONT,0,7);
outtextxy(120,300,"Dhak Dhak Go");
for(dl=0;dl<55;dl++)
{
delay(dl);
}
cleardevice();
setcolor(LIGHTGREEN);
settextstyle(SANS_SERIF_FONT,0,4);
outtextxy(140,200,"Created by");
settextstyle(SANS_SERIF_FONT,0,5);
outtextxy(140,250,"Srikanth Noundla");
getch();
closegraph();
}
Saturday, June 5, 2010
phys 1st yr ip q's
1.derive xpression 4 cohessive energy of a n ionic crystal?
prob: cohessive energy?
2.variation of attractive P.E. n repilsive P.E.?
3.calculate d pf of sc,bcc,fcc n show fcc has high pf value?
4.derive d expression 4 d inter planar distance interms of miller indices 4 a cubic structure?
prob: d=a/root(h2+k2+l2); 2dsin0=n*lamda;
5.state n xplain d method (bragg's,lave,powder) 2 dtermine crystal structure
6.defects in crystals
7.note on mb,be,fd statistics
8.drive d plank's laws of block body radiation?xplain plank's quantum theory
9.schrodinger's time independent wavw eqn 4 electron?application of it?
prob: calculation of "lamda" n En:)n2h2)/(8mL2)
10:expt which supports d dual nature of prticle(GP.thomson ,davission german)
11.origin of energy band formation in solids?
based on band theory od soic how the materials are classified in conductors,semiconductors n insulators
12.concept of effective mass of electron n hole? bloch theorem?
13.xplain the kronig-penny?
14.obtain xpession for carrier concentration in intrinsic n xtrinsic semicond.?
15.hall effect?drive xpression 4 it for holes n electr.?
16.on biasingxplain the V-I charecterstics of PN diode?
17.drive xpression 4 diode eqn
18.applications of semiconductor devices in various fields/
"
19.show p=E0(Er-1)E and X=Er-1?
20.xplain polarization mechanism in dielectrics?calculate d polarizability
21.piezo,pyro,ferro electricites?xplain applications of these/
22.show B=M0(H+m) and X=Mr-1?define B,H,M,X?
prob.s?
23.show Ml=1/2 (ewr2) in case of H-atom
24.langevin's theory of para magnetism?
25.applications of magnetic materials? applications of semicondu.
26.einstein's coeffecients n relation among them 4 spontaneius and stiulated emmision?
27.construction and wrking of ruby,He-Ne laser.semiconductor lasers?
28.applications of lase(medical,scintific,industrial)
29.basic principle of optical fiber?drive xpression 4 numerical aperture of an optical fiber:
prob on NA,0acc,delta
30.applocation of optical fiber(advantages over conventional cables)
31.write dwn d sbines frmula?
xplain d terms involved in itn dscribe d units of each of them.state d limitations of frmula?
32.xplain how d reverberation time of hall is affected by
i)it's size
ii)nature of it's wal surface
iii)audience
33.write a detailed note abt nanoscience and nano tech?
34.why nanomaterials exhibit different properties?xplain
35.list a few methods of synthesis of nano materials ?
36.mention d applaicatons of nano materials/
37.xplain d synthesis of carbon nanotubes ?
metion d properties of carbon nano tubes
38.what is nanotech.?
hw it is useful 2 society?
aftr trying all these then i'll goto d other concepts
may b these useful 2 u also.
study wel. al d bst
Sunday, May 23, 2010
computer acronyms
Computer Acronyms
ADSL - Asymmetric Digital Subscriber Line
AGP - Accelerated Graphics Port
ALI - Acer Labs, Incorporated
ALU - Arithmetic Logic Unit
AMD - Advanced Micro Devices
APC - American Power Conversion
ASCII - American Standard Code for Information Interchange
ASIC - Application Specific Integrated Circuit
ASPI - Advanced SCSI Programming Interface
AT - Advanced Technology
ATI - ATI Technologies Inc.
ATX - Advanced Technology Extended
--- B ---
BFG - BFG Technologies
BIOS - Basic Input Output System
BNC - Barrel Nut Connector
--- C ---
CAS - Column Address Signal
CD - Compact Disk
CDR - Compact Disk Recorder
CDRW - Compact Disk Re-Writer
CD-ROM - Compact Disk - Read Only Memory
CFM - Cubic Feet per Minute (ft?/min)
CMOS - Complementary Metal Oxide Semiconductor
CPU - Central Processing Unit
CTX - CTX Technology Corporation (Commited to Excellence)
--- D ---
DDR - Double Data Rate
DDR-SDRAM - Double Data Rate - Synchronous Dynamic Random Access Memory
DFI - DFI Inc. (Design for Innovation)
DIMM - Dual Inline Memory Module
DRAM - Dynamic Random Access Memory
DPI - Dots Per Inch
DSL - See ASDL
DVD - Digital Versatile Disc
DVD-RAM - Digital Versatile Disk - Random Access Memory
--- E ---
ECC - Error Correction Code
ECS - Elitegroup Computer Systems
EDO - Extended Data Out
EEPROM - Electrically Erasable Programmable Read-Only Memory
EPROM - Erasable Programmable Read-Only Memory
EVGA - EVGA Corporation
--- F ---
FC-PGA - Flip Chip Pin Grid Array
FDC - Floppy Disk Controller
FDD - Floppy Disk Drive
FPS - Frame Per Second
FPU - Floating Point Unit
FSAA - Full Screen Anti-Aliasing
FS - For Sale
FSB - Front Side Bus
--- G ---
GB - Gigabytes
GBps - Gigabytes per second or Gigabits per second
GDI - Graphical Device Interface
GHz - GigaHertz
--- H ---
HDD - Hard Disk Drive
HIS - Hightech Information System Limited
HP - Hewlett-Packard Development Company
HSF - Heatsink-Fan
--- I ---
IBM - International Business Machines Corporation
IC - Integrated Circuit
IDE - Integrated Drive Electronics
IFS- Item for Sale
IRQ - Interrupt Request
ISA - Industry Standard Architecture
ISO - International Standards Organization
--- J ---
JBL - JBL (Jame B. Lansing) Speakers
JVC - JVC Company of America
- K ---
Kbps - Kilobits Per Second
KBps - KiloBytes per second
--- L ---
LG - LG Electronics
LAN - Local Are Network
LCD - Liquid Crystal Display
LDT - Lightning Data Transport
LED - Light Emitting Diode
--- M ---
MAC - Media Access Control
MB ? MotherBoard or Megabyte
MBps - Megabytes Per Second
Mbps - Megabits Per Second or Megabits Per Second
MHz - MegaHertz
MIPS - Million Instructions Per Second
MMX - Multi-Media Extensions
MSI - Micro Star International
--- N ---
NAS - Network Attached Storage
NAT - Network Address Translation
NEC - NEC Corporation
NIC - Network Interface Card
--- O ---
OC - Overclock (Over Clock)
OCZ - OCZ Technology
OEM - Original Equipment Manufacturer
--- P ---
PC - Personal Computer
PCB - Printed Circuit Board
PCI - Peripheral Component Interconnect
PDA - Personal Digital Assistant
PCMCIA - Peripheral Component Microchannel Interconnect Architecture
PGA - Professional Graphics Array
PLD - Programmable Logic Device
PM - Private Message / Private Messaging
PnP - Plug 'n Play
PNY - PNY Technology
POST - Power On Self Test
PPPoA - Point-to-Point Protocol over ATM
PPPoE - Point-to-Point Protocol over Ethernet
PQI - PQI Corporation
PSU - Power Supply Unit
--- R ---
RAID - Redundant Array of Inexpensive Disks
RAM - Random Access Memory
RAMDAC - Random Access Memory Digital Analog Convertor
RDRAM - Rambus Dynamic Random Access Memory
ROM - Read Only Memory
RPM - Revolutions Per Minute
--- S ---
SASID - Self-scanned Amorphous Silicon Integrated Display
SCA - SCSI Configured Automatically
SCSI - Small Computer System Interface
SDRAM - Synchronous Dynamic Random Access Memory
SECC - Single Edge Contact Connector
SODIMM - Small Outline Dual Inline Memory Module
SPARC - Scalable Processor ArChitecture
SOHO - Small Office Home Office
SRAM - Static Random Access Memory
SSE - Streaming SIMD Extensions
SVGA - Super Video Graphics Array
S/PDIF - Sony/Philips Digital Interface
--- T ---
TB - Terabytes
TBps - Terabytes per second
Tbps - Terabits per second
TDK - TDK Electronics
TEC - Thermoelectric Cooler
TPC - TipidPC
TWAIN - Technology Without An Important Name
--- U ---
UART - Universal Asynchronous Receiver/Transmitter
USB - Universal Serial Bus
UTP - Unshieled Twisted Pair
--- V ---
VCD - Video CD
VPN - Virtual Private Network
--- W ---
WAN - Wide Area Network
WTB - Want to Buy
WYSIWYG - What You See Is What You Get
--- X ---
XGA - Extended Graphics Array
XFX - XFX Graphics, a Division of Pine
XMS - Extended Memory Specification
XT - Extended Technology
ADSL - Asymmetric Digital Subscriber Line
AGP - Accelerated Graphics Port
ALI - Acer Labs, Incorporated
ALU - Arithmetic Logic Unit
AMD - Advanced Micro Devices
APC - American Power Conversion
ASCII - American Standard Code for Information Interchange
ASIC - Application Specific Integrated Circuit
ASPI - Advanced SCSI Programming Interface
AT - Advanced Technology
ATI - ATI Technologies Inc.
ATX - Advanced Technology Extended
--- B ---
BFG - BFG Technologies
BIOS - Basic Input Output System
BNC - Barrel Nut Connector
--- C ---
CAS - Column Address Signal
CD - Compact Disk
CDR - Compact Disk Recorder
CDRW - Compact Disk Re-Writer
CD-ROM - Compact Disk - Read Only Memory
CFM - Cubic Feet per Minute (ft?/min)
CMOS - Complementary Metal Oxide Semiconductor
CPU - Central Processing Unit
CTX - CTX Technology Corporation (Commited to Excellence)
--- D ---
DDR - Double Data Rate
DDR-SDRAM - Double Data Rate - Synchronous Dynamic Random Access Memory
DFI - DFI Inc. (Design for Innovation)
DIMM - Dual Inline Memory Module
DRAM - Dynamic Random Access Memory
DPI - Dots Per Inch
DSL - See ASDL
DVD - Digital Versatile Disc
DVD-RAM - Digital Versatile Disk - Random Access Memory
--- E ---
ECC - Error Correction Code
ECS - Elitegroup Computer Systems
EDO - Extended Data Out
EEPROM - Electrically Erasable Programmable Read-Only Memory
EPROM - Erasable Programmable Read-Only Memory
EVGA - EVGA Corporation
--- F ---
FC-PGA - Flip Chip Pin Grid Array
FDC - Floppy Disk Controller
FDD - Floppy Disk Drive
FPS - Frame Per Second
FPU - Floating Point Unit
FSAA - Full Screen Anti-Aliasing
FS - For Sale
FSB - Front Side Bus
--- G ---
GB - Gigabytes
GBps - Gigabytes per second or Gigabits per second
GDI - Graphical Device Interface
GHz - GigaHertz
--- H ---
HDD - Hard Disk Drive
HIS - Hightech Information System Limited
HP - Hewlett-Packard Development Company
HSF - Heatsink-Fan
--- I ---
IBM - International Business Machines Corporation
IC - Integrated Circuit
IDE - Integrated Drive Electronics
IFS- Item for Sale
IRQ - Interrupt Request
ISA - Industry Standard Architecture
ISO - International Standards Organization
--- J ---
JBL - JBL (Jame B. Lansing) Speakers
JVC - JVC Company of America
- K ---
Kbps - Kilobits Per Second
KBps - KiloBytes per second
--- L ---
LG - LG Electronics
LAN - Local Are Network
LCD - Liquid Crystal Display
LDT - Lightning Data Transport
LED - Light Emitting Diode
--- M ---
MAC - Media Access Control
MB ? MotherBoard or Megabyte
MBps - Megabytes Per Second
Mbps - Megabits Per Second or Megabits Per Second
MHz - MegaHertz
MIPS - Million Instructions Per Second
MMX - Multi-Media Extensions
MSI - Micro Star International
--- N ---
NAS - Network Attached Storage
NAT - Network Address Translation
NEC - NEC Corporation
NIC - Network Interface Card
--- O ---
OC - Overclock (Over Clock)
OCZ - OCZ Technology
OEM - Original Equipment Manufacturer
--- P ---
PC - Personal Computer
PCB - Printed Circuit Board
PCI - Peripheral Component Interconnect
PDA - Personal Digital Assistant
PCMCIA - Peripheral Component Microchannel Interconnect Architecture
PGA - Professional Graphics Array
PLD - Programmable Logic Device
PM - Private Message / Private Messaging
PnP - Plug 'n Play
PNY - PNY Technology
POST - Power On Self Test
PPPoA - Point-to-Point Protocol over ATM
PPPoE - Point-to-Point Protocol over Ethernet
PQI - PQI Corporation
PSU - Power Supply Unit
--- R ---
RAID - Redundant Array of Inexpensive Disks
RAM - Random Access Memory
RAMDAC - Random Access Memory Digital Analog Convertor
RDRAM - Rambus Dynamic Random Access Memory
ROM - Read Only Memory
RPM - Revolutions Per Minute
--- S ---
SASID - Self-scanned Amorphous Silicon Integrated Display
SCA - SCSI Configured Automatically
SCSI - Small Computer System Interface
SDRAM - Synchronous Dynamic Random Access Memory
SECC - Single Edge Contact Connector
SODIMM - Small Outline Dual Inline Memory Module
SPARC - Scalable Processor ArChitecture
SOHO - Small Office Home Office
SRAM - Static Random Access Memory
SSE - Streaming SIMD Extensions
SVGA - Super Video Graphics Array
S/PDIF - Sony/Philips Digital Interface
--- T ---
TB - Terabytes
TBps - Terabytes per second
Tbps - Terabits per second
TDK - TDK Electronics
TEC - Thermoelectric Cooler
TPC - TipidPC
TWAIN - Technology Without An Important Name
--- U ---
UART - Universal Asynchronous Receiver/Transmitter
USB - Universal Serial Bus
UTP - Unshieled Twisted Pair
--- V ---
VCD - Video CD
VPN - Virtual Private Network
--- W ---
WAN - Wide Area Network
WTB - Want to Buy
WYSIWYG - What You See Is What You Get
--- X ---
XGA - Extended Graphics Array
XFX - XFX Graphics, a Division of Pine
XMS - Extended Memory Specification
XT - Extended Technology
Subscribe to:
Posts (Atom)

