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:
RAM provides much faster accessing speed to data than secondary memory. By loading software programs and required files into primary memory(RAM), computer can process data much more quickly. Secondary Memory is slower in data accessing. Typically primary memory is six times faster than the secondary memory.22-Aug-2019
Answer:
raster
Explanation:
-> A <u>raster</u> image consists of a grid of colored pixels.
To choose our answer we can look at the definition for each of the options:
[✘] wireframe - "a skeletal three-dimensional model in which only lines and vertices are represented"
[✘] vector - "denoting a type of graphical representation using straight lines to construct the outlines of objects"
[✔] raster - "a rectangular pattern of parallel scanning lines followed by the electron beam on a television screen or computer monitor'
[✘] rendering - "the processing of an outline image using color and shading to make it appear solid and three-dimensional"
<em>(All definitions are quoted from Oxford Languages)</em>
-> Based on these definitions, raster makes the most sense
Have a nice day!
I hope this is what you are looking for, but if not - comment! I will edit and update my answer accordingly. (ノ^∇^)
- Heather
Is advertising influencing her?
What are her motivations?
Has she compared prices?
Is she buying at the right time?
IT WILL NOT BE 234.6 FOR PF GANG JUST TOOK THE TEST