Answer:
I think its B
Explanation:
software enables users to create and edit documents.
Answer:
Option C is the correct answer for the above question.
Explanation:
Open-source software is a concept which means that a user can see the software source code and can modify the software for its personal use if it is open-source software.
Linux is also the open-source software and free of cost available in the market. hence the option c is correct while the other is not because--
- Option A states that Linux is only for end users but Linux is for server, client and for the developer.
- Option B states that it is designed for a specific purpose but it is for any type of work.
- Option D states that Linux is for numeric data only but it uses for all types of data.
Answer:
You're saving it to your personal OneDrive folder and uploading it to the OneDrive servers.
Explanation:
Answer:
Both have certain rights and responsibilities in each given space.
Explanation:
Undoubtedly, the digital citizens as well as a citizen of a country, you have a certain set of rights and responsibilities, however, it's on them to talk to other people. And it's on them to keep or not keep their personal information private. And they can or cannot be aware of certain things, but which is not a condition for them. Hence, the correct option is the option mentioned in the answer section.
Answer:
The code to this question as follows:
Code:
#include <stdio.h> //include header file for using basic function
int main() //defining main method
{
int drivingAge = 17; //defining integer variable that assign a value
printf("%d\n",drivingAge);//print value.
return 0;
}
Output:
17
Explanation:
In the above C language code, firstly a header file is included this file is used for use basic function. In the next line, the main function is defined, inside the main method, an integer variable "drivingAge" is declared that holds a value that 17 and to print variable value the printf function is used that prints its value.