-->

program to know a number is divisible by 3 and 5 both or not



//'C' program to know a number is divisible by 3 and 5 both or not
#include<stdio.h>
#include<conio.h>
void main()
{
int x;
printf("enter a number\n");
scanf("%d",&x);
if(x%3==0 && x%5==0)
{
printf("it is divisible by both");
}
else
{
printf("it is not divisible by both\n");
}
getch();
}

program to know a number is even or odd using function



//program to know a number is even or odd
#include<stdio.h>
#include<conio.h>
void evenodd();
void main()
{
evenodd();
getch();
}
void evenodd()
{int x;
printf("enter a number\n");
scanf("%d",&x);
if(x%2==0)
   {
    printf("it is an even number");
    } 
else
   {
   printf("it is an odd number\n");
    }
}

program to get greatest number among three numbers

// program to get greatest number among three numbers
#include<stdio.h>
#include<conio.h>
void main()
{
float a,b,c;
printf(“enter three numbers\n”);
scanf(“%f%f%f”,&a,&b,&c);
if(a>b &&a>c)
{
printf(“the greatest number=%f\n”,a);
}
elseif(b>a &&b>c)
{
printf(“the greatest number=%f\n”,b);
}
else
{
printf(“the greatest number=%f\n”,c);
}
getch();
}

program to get sum of 1 to n numbers

//A program  to print/display sum of 1 to n natural numbers.
#include<stdio.h>
#include<conio.h>
void main()
{
int k=1,n,sum=0;
printf("enter value of 'n'\n");
scanf("%d",&n);
while(k<=n)
   {
      sum=sum+k;
      k++;
   }
printf("sum=%d",sum);getch();
}

removing Subscribe to: Posts (Atom) from blog/sites

follow the steps to remove  "Subscribe to: Posts (Atom)" from you blog or sites


1)

  goto dashboard
         
   

2)click theme
   
          


3)click edit html




4)click inside html code


5) press ctrl+F

6)find the line
<b:include data='feedLinks' name='feedLinksBody'/>
 as shown here




7)delete that line



8 save the code by clicking "save the theme "



u r now done !!!!!!

how to remove "recommend this on google"from your all posts

follow the steps.

1)sign in to your account
 





2)type blogspot.comon address bar


3)click/select blog's type as shown here


4)click layout


5)then u can see

6)click edit under blog posts

7)now you get

8)now you can see here "show share buttons", uncheck this.

9)that s all. after doing ,it looks like





What is multimedia? Explain its components.


What is multimedia? Explain its components.

ans:

Multimedia is content that uses a combination of different content forms such as text, audio, images, animations, video and interactive content. Multimedia contrasts with media that use only rudimentary computer displays such as text-only or traditional forms of printed or hand-produced material.
Multimedia can be recorded and played, displayed, interacted with or accessed by information content processing devices, such as computerized and electronic devices, but can also be part of a live performance. Multimedia devices are electronic media devices used to store and experience multimedia content. Multimedia is distinguished from mixed media in fine art; for example, by including audio it has a broader scope. The term "rich media" is synonymous with interactive multimedia.

Its components are:

1)Text: Text is the most common medium of representing the information. In multimedia, text is mostly use for titles, headlines,menu etc. The most commonly used software for viewing text files are Microsoft Word, Notepad, Word pad etc. Mostly the text files are formatted with ,DOC, TXT etc extension.

2)Audio: In multimedia audio means related with recording, playing etc. Audio is an important components of multimedia because this component increase the understandability and improves the clarity of the concept. audio includes speech, music etc. The commonly used software for playing audio files are:
i) Quick Time
ii) Real player
iii) Windows Media Player

3)Graphics: Every multimedia presentation is based on graphics. The used of graphics in multimedia makes the concept more effective and presentable.the commonly used software for viewing graphics are windows Picture, Internet Explorer etc. The commonly used graphics editing software is Adobe Photoshop through which graphics can be edited easily and can be make effective and attractive.

4)Video: Video means moving pictures with sound. It is the best way to communicate with each other. In multimedia it is used to makes the information more presentable and it saves a large amount of time. The commonly used software for viewing videos are:
i) Quick Time
ii) Window Media Player
iii) Real Player

5)Animation: In computer animation is used to make changes to the images so that the sequence of the images appears to be moving pictures. An animated sequence shows a number of frames per second to produce an effect of motion in the user's eye.