Saturday, April 05, 2025

Welcome to Onlinetunes24 .....

We are committed to become your long-term, trusted partner. Our priority is not only to provide professional services and solutions but to become your IT vendor dedicated to meet your needs today and support your growing business needs tomorrow.

১৷ বিশ্বে ইন্টারনের চালু হয় কখন? =১৯৬৯ সালে। . ২৷ বাংলাদেশে ইন্টারনের চালু হয় কখন? =১৯৯৬ সালে। . ৩৷ ইন্টারনেটের জনক কে? =ভিনটন জি কার্ফ। . ৪৷ WWW এর অর্থ কি? =World Wide Web. . ৫৷WWW এর জনক কে? =টিম বার্নাস লি । . ৬৷ ই-মেইল এর জনক কে? =রে টমলি সন। . ৭৷ ইন্টারনেট সার্চইঞ্জিনের জনক কে? =এলান এমটাজ। . ৮৷ Internet Corporation For Assiged Names And Number– ICANN এর প্রতিষ্টা কবে? =১৮ সেপ্টেম্বর ১৯৮৮ সালে(সদর দপ্তর ক্যালিফোর্নিয়) . ৯৷ ইন্টারনেট জগতের প্রথম ডোমেইনের নাম কি? =ডট কম। . ১০৷ কম্পিউটার নির্মাতা প্রতিষ্টান সিম্বোলিকস ইন্টারনেট জগতের প্রথম...

How to configure server settings (Dreamweaver CS5)

Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 ...

Remove windows is not genuine notification

অনেক সময় আমাদের Windows 7-এর Screen এ Windows is not genuine Notification দেখতে পাই। আর এটা সাধারনত হয় যখন আমাদের Windows-এ Update Option চালু থাকে এবং ইন্টারনেট চালু থাকে।  যখন এমন হয় তখন অনেকেই হয়তো নতুন করে Windows Setup করেছেন। তো ভবিষ্যতে যদি কেউ এমন সমস্যায় পরেন তাহলে নিচের প্রক্রিয়া অনুসরন কইরেন আসা করি সমস্যার সমাধান পাবেন।  Start=>All Programs=>Accessories=>Command Prompt-এ ডান বাটন এ ক্লিক করে Run as Administrator করুন।  এর পর Command Prompt-টি চালু...

Moving two circle above a line by Programming in C.

#include<stdio.h>#include<conio.h>#include<dos.h>#include<graphics.h>void main (){int gd=DETECT, gm=DETECT, i,j,x,x2,y;initgraph(&gd, &gm, "c:\\TurboC3\\bgi");setcolor(RED);delay (100);line(100,161,600,161);x=100;y=150;x2=600;  for(i=0, j=0; i<245,j<245; i+=5,j+=5){circle(x+i, y, 10);circle(x2-j, y, 10);delay(100);setcolor(BLACK);circle(x+i, y, 10);circle(x2-j, y, 10);setcolor(RED);}  rectangle(300,125,350,150);rectangle(360,125,410,150);getch()...

National Flag of Bangladesh by programmign in C

#include<stdio.h>#include<conio.h>#include<graphics.h>#include<dos.h>void main(){int driver = DETECT, mode=0;initgraph (&driver, &mode, "..\\bgi");delay(1000);printf ("\n\n\n\t\t\t National Flag of Bangladesh");printf("\n\t\t\t Programmed by Mohammad Lukman Hussain");delay(1000);setcolor(2); /* Flag's Rectangle *///rectangle(200, 150, 450, 300);rectangle(200,150,400,250);setfillstyle(1,2);floodfill(325,225,2);delay(1000);setcolor(4); /* Flag's Circle *///circle(325,225,50);circle(300,200,30);setfillstyle(1,4);floodfill(300,200,4);delay(1000);setcolor(3);...

How to create a HTTP Server using Cisco Packet Tracer.

...

Moving Wheel using Mid-Point Circle algorithm and DDA Line algorithm

#include<stdio.h> #include<conio.h> #include<graphics.h> #include<math.h> #include<dos.h> int l = 1; void ddaline(int x1, int y1, int x2, int y2) {     int s, dx, dy, m;     float xi, yi, x, y;     dx = x2 - x1;     dy = y2 - y1;     if (abs(dx) > abs(dy))     s = abs(dx);     else     s = abs(dy);     xi = dx / (float) s;     yi = dy / (float) s;    ...

Animation circel Using Programmign C

Program 1:   #include<stdio.h>#include<conio.h>#include<stdio.h>#include<graphics.h>#include<stdlib.h>void main(){int p,q,r;int x,y;int gdriver = DETECT, gmode;initgraph(&gdriver, &gmode, "..\\bgi");x=getmaxx()/2;y=getmaxy()/2;for(q=1;q<15;q++){setcolor(q);for(p=400;p>1;p--){circle(x,y,p);}setcolor(q+2);for(r=1;r<400;r++){circle(x,y,r);}}getch();} Program 2: #include<graphics.h>#include<stdio.h>#include<dos.h>#include<conio.h>main(){int gd=DETECT,gm,col=0;initgraph(&gd,&gm,"..\\bgi");while(!kbhit()){setcolor(15);circle(col,100,50);delay(50);col++;if(col>=600)col=0;cleardevice();}} Program...

Circle using Programmign C

#include<stdio.h>#include<conio.h>#include<dos.h>#include<graphics.h>void main (){ int gd=DETECT, gm=DETECT, i, x=100, y=150; initgraph(&gd, &gm, "..\\bgi"); setcolor(RED); while(1) {x=100;y=150; for(i=0; i<250; i+=5) { circle(x+i, y+i, 10); delay(100); setcolor(BLACK); circle(x+i, y+i, 10); setcolor(RED); } x=350; y=400; for(i=0; i<250; i+=5) { circle(x+i, y-i, 10); delay(100); setcolor(BLACK); circle(x+i,...

Smile face in Programming C

#include<graphics.h>#include<dos.h>#include<conio.h>#include<stdlib.h>void main(){   int gd = DETECT, gm, area, temp1, temp2, left = 25, top = 75;   void *p;   initgraph(&gd,&gm,"..\\bgi");   setcolor(YELLOW);   circle(50,100,25);   setfillstyle(SOLID_FILL,YELLOW);   floodfill(50,100,YELLOW);   setcolor(RED);   setfillstyle(SOLID_FILL,RED);   fillellipse(44,85,2,6);   fillellipse(56,85,2,6);  ...

Printer Shared

1. Click start button, then click devices and printers 2. Click Add a printer  3. Click Add a local printer 4. Choose a printer port and click Next button 5. Choose Manufacture and Printers 6. Type Printer Name and click Next button 7. Choose Share this printer so that others on your network can find and use it 8. Click Next butt...

Shared Folder

1. Create a folder 2. Right clicking folder and go to properties 3. Click sharing -> Share -> choose people to share with 4. Click share 5. Click Done 6. Then Click advance sharing 7. Click check box this folder 8. Click Ok Run Share folder Go to Run and write “\\192.168.100.1” (IP number )...

Connect to another computer using Remote Desktop Connection.

v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} Step-1: To allow remote connections on the computer you want to connect . Open System by clicking the Start button, right-clicking Computer, and then clicking Properties. Click Remote settings. If you're prompted for an administrator password or confirmation, type the password or provide confirmation. The Remote...

Compare Date Month Year etc.

// Find Today     function today()    {        return date('Y-m-d');    } // Find Yesterday        function yesterday()    {        return date("Y-m-d", strtotime("yesterday"));    }  // Find Current Week        function currentweek()    {        return date('Y-m-d'). ' To ' .date('Y-m-d', strtotime('-7 days'));   ...

Program to display circles within circle

#include<graphics.h>#include<conio.h>#include<stdio.h>void main(){   int gd = DETECT, gm, x, y, color, angle = 0;   struct arccoordstype a, b;   initgraph(&gd, &gm, "..\\bgi");   //delay(2000);   while(angle<=360)   {   setcolor(BLACK);      arc(getmaxx()/2,getmaxy()/2,angle,angle+2,50);      setcolor(BLUE);      getarccoords(&a);      circle(a.xstart,a.ystart,25);     ...

C graphics program to display Indian National Flag.

#include <stdio.h>#include <graphics.h>#include <stdlib.h>#include<conio.h>void main(){int gd=DETECT,gm,i,j=0;clrscr();initgraph(&gd,&gm,"c:\\TurboC3\\bgi");//delay(100);setcolor(6);rectangle(225,125,355,155);while(j<=30){for (i=0;i<125;i++)outtextxy(225+i,125+j,"Û");j++;}//delay(300);setcolor(7);rectangle(225,155,355,185);j=0;while(j<=30){for (i=0;i<125;i++)outtextxy(225+i,155+j,"Û");j++;}//delay(300);setcolor(2);rectangle(225,185,355,215);j=0;while(j<=30){for (i=0;i<125;i++)outtextxy(225+i,185+j,"Û");j++;}//delay(300);setcolor(9);rectangle(220,120,225,440);j=0;while(j<=312){for...

C graphics program to display a circle.

#include<stdio.h>#include<conio.h>#include<math.h>#include<graphics.h>void main (){int gd=DETECT, gm=0;int dx, dy, p, end;initgraph(&gd, &gm,"c:\\TurboC3\\bgi");setcolor(RED);dx=100;dy=150;p=25;circle (dx, dy, p);getch ()...

Telnet

Normal 0 false false false EN-US X-NONE BN-BD What is Telnet? Telnet is a simple, text-based program that allows you to connect to another computer by using the Internet. If you've been granted the right to connect to that computer by that computer's owner or administrator, Telnet will allow you to enter commands used to access programs and services...

Page 1 of 7712345Next
Loading
Twitter Delicious Facebook Digg Stumbleupon Favorites More

 
Flying Twitter Bird Widget By ICT Sparkle