Answer:
#include <stdio.h>
#include <ctype.h>
void printHistogram(int counters[]) {
    int largest = 0;
    int row,i;
    for (i = 0; i < 26; i++) {
        if (counters[i] > largest) {
            largest = counters[i];
        }
    }
    for (row = largest; row > 0; row--) {
        for (i = 0; i < 26; i++) {
            if (counters[i] >= row) {
                putchar(254);
            }
            else {
                putchar(32);
            }
            putchar(32);
        }
        putchar('\n');
    }
    for (i = 0; i < 26; i++) {
        putchar('a' + i);
        putchar(32);
    }
}
int main() {
    int counters[26] = { 0 };
    int i;
    char c;
    FILE* f;
    fopen_s(&f, "story.txt", "r");
    while (!feof(f)) {
        c = tolower(fgetc(f));
        if (c >= 'a' && c <= 'z') {
            counters[c-'a']++;
        }
    }
    for (i = 0; i < 26; i++) {
        printf("%c was used %d times.\n", 'a'+i, counters[i]);
    }
    printf("\nHere is a histogram:\n");
    printHistogram(counters);
}
 
        
             
        
        
        
Answer:
flexibility and independence
Explanation:
 
        
             
        
        
        
It is just a declaration of an object variable, <em>person</em>, in JavaScript. Within a <em>person</em> object, there are key:value pairs. The code that you  shared has the following keys: name, age, and favouriteFood, whereas the values of those keys are: Mike, 25, and pizza.
There is <em>no</em> alert statement in this code snippet; therefore, it <em>will not alert </em>anything. This code contains only a variable called <em>person, </em>and that's it! 
 
        
                    
             
        
        
        
Answer:
 type of malware that is often disguised as legitimate software. Trojans can be employed by cyber-thieves and hackers trying to gain access to users' systems. Users are typically tricked by some form of social engineering into loading and executing Trojans on their systems.
Explanation its malware
 
        
             
        
        
        
The answer here is Blind carbon copy (bcc).
The original recipients of the letter are unable to see (blind) who else receives a copy if those parties are on the bcc list.