Answer:
C code
Explanation:
#include <stdio.h>
void histrogram(int counters[])
{
int i,j;
int count;
for(i=0;i<26;i++)
{
count=counters[i];
printf("%c ",i+97);
for(j=0;j<count;j++)
{
printf("="); //= is used
}
printf("\n");
}
}
int main()
{
FILE* fp;
int i;
int arr[26];
char c;
int val;
// Open the file
fp = fopen("story.txt", "r");
if (fp == NULL) {
printf("Could not open file ");
return 0;
}
else
{
for(i=0;i<26;i++)
arr[i]=0;
for (c = getc(fp); c != EOF; c = getc(fp))
{
if(c>='a' && c<='z')
{
val = c-97;
//printf("%d ",val);
arr[val]++;
}
}
histrogram(arr);
}
}
Answer:
The list of hardware components required in multimedia are as follows:
- Microprocessor.
- High storage hard disk.
- RAM.
- High resolution graphics cards.
The list of software components required in multimedia are as follows:
Ok sistah, me got you,
(1) gather together, or increasing number
(2) price or amount charged
(3) intentionally
(4) Take or seize
(5) extremely large or great
(6) savagely fierce or violent
(7)<span>irritate intensely
(8) miffed
(9)</span><span>well meaning and kindly
(10) pensive
Hope i helped :)</span>
Answer:
1066.67 N
Explanation:
Given that two measurements of the arm and an input weight. To answer this problem,we need to balance the forces and use the lengths of the arms.
Force × effort of arm distance= input weight × load distance
200 N * 8 m = x * 1.5 m
1600 = 1.5x
x = 1600/1.5
x = 1066.666 N
it takes 1066.67 N to lift the input weight
Answer:
Macintosh.
Explanation:
Macintosh refers to a set of computers designed, developed and manufactured by Apple Inc. Apple officially began the sales of Macintosh on the 24th of January, 1984. The first designs of Macintosh are considered to be personal computers and had a mouse, in-built screen with a graphical user interface (GUI).
Macintosh developed the first design technology program which had a mouse and allowed for photo manipulation. This technology or software program used for photo manipulation is known as MacPaint, it was a raster graphics editor which was originally coded by Bill Atkinson using a Pascal programming language while its graphical user interface was designed by Susan Kare.