CoBIT Information Systems Audit and Control Association is key for evaluating internal controls such as human resources, logistics, information technology, risk, legal, marketing and sales, operations, financial functions, procurement, and reporting
A. CoBIT Information Systems Audit and Control Association
<u>Explanation:</u>
The key factor for evaluating the internal controls is CoBIT information technology ion are the best reporting tools. Where an organization can generate reports and do the analysis and take the right decision.
Since it has various departments t inside the organization some time performance of the department depends on another department.
The SWOT analysis can be achieved and management can give some input process to improve the department or individual performance in the departments the organization also need an audit log trail to improve internals in the organization.
While (condition) ( < > =< => = !+)
{
code block
<span>}
some think like this
</span>
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:
hi im writing this to get points but i hope your doing good in school and pass you got this school is almost over good job bye
Explanation: