Answer:
Someone can make a histogram instead of a bar chart if distributions of variables are need to be represented and if data is quantitative.
Explanation:
Histograms are drawn to represent distributions of variables whereas bar charts are used to compare various variables. Histograms plot quantitative data whereas bar charts plot categorical data.
So, someone can make a histogram instead of a bar chart if distributions of variables are needed to be represented and if data is quantitative.
Answer:
#include <stdio.h>
void printValues ( unsigned char *ptr, int count) // count is no of cells
{
for(int i=0; i<count; i++) {
printf("%d ", ptr[i]);
}
}
int main ( )
{
unsigned char data[ ] = { 9, 8, 7, 5, 3, 2, 1} ;
printValues( data, sizeof(data)/sizeof(data[0]) );
}
Explanation:
Remember that the sizeof() mechanism fails if a pointer to the data is passed to a function. That's why the count variable is needed in the first place.
The correct debugged code is attached below
<h3>What is a leap year </h3>
A leap year is a year with 366 days and this year occurs once every 4 years. The debugged code line of code of the program written, is as attached below. because the line of code in the question lacks some functions and symbols
Hence we can conclude that the correct debugged code is attached below.
Learn more about Python coding : brainly.com/question/16397886
#SPJ1