Answer:
The answer is "Option D".
Explanation:
A system or a group of components that communicate with your environment through the sharing of resources, materials, and knowledge with a view to system regeneration and development is known as an Open system. In other words, we can say that it is a system that includes a non-proprietary hardware and advert-based software which enables third parties to add or interact with products to plug in the system and It is freely available on the internet. In this question, the incorrect options can be described as follows:
- In option A, The management system is used by an organization. It is a paid system that's why it is not correct.
- In option B, This system enables users in online communities and evaluates one another that's why it is not correct.
- In option C, This type of system provides resources for upgrade user knowledge. It is a paid system that's why it is not correct.
Answer:
<em>I think it would b </em>
Explanation:
Answer:
#include <iostream>
using namespace std;
void divide(int numerator, int denominator, int *quotient, int *remainder)
{
*quotient = (int)(numerator / denominator);
*remainder = numerator % denominator;
}
int main()
{
int num = 42, den = 5, quotient=0, remainder=0;
divide(num, den, "ient, &remainder);
return 0;
}
Explanation:
The exercise is for "Call by pointers". This technique is particularly useful when a variable needs to be changed by a function. In our case, the quotient and the remainder. The '&' is passing by address. Since the function is calling a pointer. We need to pass an address. This way, the function will alter the value at the address.
To sum up, in case we hadn't used pointers here, the quotient and remainder that we set to '0' would have remained zero because the function would've made copies of them, altered the copies and then DELETED the copies. When we pass by pointer, the computer goes inside the memory and changes it at the address. No new copies are made. And the value of the variable is updated.
Thanks! :)
In the case above, Mel needs a desktop computer with a fast processor.
<h3>What is data for a computer?</h3>
Computer data is known to be a form of information processed or saved by a computer. This information is saved as text documents, images, audio clips, software programs and others.
Hence due to the volume of work and in In the case above, Mel needs a desktop computer with a fast processor.
See options below
23
Mel is a research scientist at a health sciences center. His job requires him to analyze large amounts of data in short periods of time.
Select the best computer for Mel.
A handheld tablet computer
A desktop computer with two screens
A desktop computer with a fast processor
A portable laptop computer
Learn more about data from
brainly.com/question/19243813
#SPJ1