Formatting that is selected for each cell individually related to a specific condition
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:
There are two types of image processing software, raster-based, and vector-based. The CAD and the CAID are just the two vectors based software. However, there is much other software like Adobe Illustrator, Microsoft Publisher, Corel Draw, Photoshop on which you can embark upon, and become an equally good Graphics designer. And hence, you can certainly become a Graphics designer with the CAD experience, however, you should keep in mind that all the great Graphic designers use CAD and CAID. And hence, you should use it sometimes certainly in the future.
Explanation:
Please check the answer section.
Answer:
Consider the following code:
if (x > 5 AND x <= 10):
print(OK)
Click all the mistakes that apply:
AND should be and
The print (OK) should be print ("OK")
The blue section of the following Venn diagram could represent which of the following Boolean statements?
not
The following code will not compile. Which of the options below would allow the code to compile and run as intended?
if (x >= -10 and <= 10):
print("In range")
if (x >= -10 and x <= 10):
Answer:
The Title Bar displays the name of the open file and the program.