Answer:
See explaination
Explanation:
#include <stdio.h>
#include <stdlib.h>
int main()
{
FILE * file_object;
char file_name[100];
char ch;
int characters=0, words=0;
printf("Enter source file name: ");
scanf("%s", file_name); //asking user to enter the file name
file_object = fopen(file_name, "r"); //open file in read mode
if (file_object == NULL)
{
printf("\nUnable to open file.file not exist\n"); //check if the file is present or not
}
while ((ch = fgetc(file_object)) != EOF) //read each character till the end of the file
{
if (ch == ' ' || ch == '\t' || ch == '\n' || ch == '\0') //if character is space or tab or new line or null character increment word count
words++;
else
characters++; //else increment character count this assures that there is no spaces count
}
printf("The file story.txt has the following Statistics:\n"); //finally print the final statistics
if (characters > 0)
{
printf("Words: %d\n", words+1); //for last word purpose just increment the count of words
printf("Characters (no spaces): %d\n", characters);
}
fclose(file_object); //close the file object
return 0;
}
Answer:
1. C
2. A
Explanation:
IaaS which is also known as Infrastructure as a service is an outsourced cloud computing infrastructure service that offers resources such as storage, server, and network connections. Examples of IaaS providers include organizations like Microsoft’s Azure and Amazon Web Service which is also commonly known as AWS. Azure, AWS are among a list of IaaS providers that offer support through monitoring and management of remote datacenters. Instead of physically purchasing hardware and servers, businesses can opt to host all their services and operations on the cloud.
The PaaS falls between IaaS and SaaS. Most developers and programmers working for big cooperates rely on PaaS to help them code and provide cloud components to applications and software. PaaS makes all the phases of program development and deployment easier and cheap. It can manage what IaaS supports like storage, virtualization, servers, and network connections. In addition, PaaS providers can manage operating systems and databases as well. Note that it is the work of the developers to manage the applications and not the PaaS providers
The answer I believe would be D
I searched up the answer and got 1991. Hope this is correct.
Edits made to the header row content will automatically be applied to all pages.
You can add and delete rows from the table without moving the header rows.