A virus, malware, unplugged, used too much storage, etc.
Answer:
void ranges(int x[], int npts, int *max_ptr, int *min_ptr)
{
*max_ptr=*min_ptr=x[0];
for(int i=1;i<npts;i++)
{
if(x[i]>*max_ptr) //this will put max value in max_ptr
*max_ptr=x[i];
if(x[i]<*min_ptr) //this will put min value in min_ptr
*min_ptr=x[i];
}
}
Explanation:
The above function can be called like :
ranges(x,n,&max,&min);
where x is array and n is number of elements and max and min are address of variables where maximum and minimum values to be stored respectively.
Answer:
<em> C.</em><em> </em><em>system prototyping</em>
Explanation:
Prototyping produces a quickly constructed working version of the proposed information system.
Planning
↓
Analysis
↓
Design
↓
System prototyping
↓
Implementation
Answer:
A cardboard box on the edge of your lane
Explanation:
Answer:
filetype:xml AND site:example.Com
Explanation:
For this specific scenario, we will use three advanced google's search modifiers: filetype, site & AND
filetype:<em>[abc]</em>
Limit results to files matching the [<em>abc</em>] extension, like <em>pdf</em>, <em>txt</em>, <em>jpeg</em>. In this example xml.
site:<em>[domain]</em>
Limit results to websites containing the [<em>domain</em>] in the url, like .edu, <em>.gov</em>, <em>.brainly.com</em>. In this example example.com.
<em>[condition1] </em>AND <em>[conditon2]</em>
Limits results to those matching both conditions joined by the <em>AND. </em>In this example, the search results must match both filetype AND site domain.
Joining all conditions in a single query:
filetype:xml AND site:example.Com