Answer:
true
explanation:
the subject of a photograph is supposed to be at the side of a photo not in the center. That’s what i learned in my photography class
There are three basic types of relief sculpture: (1) low relief where the sculpture projects only slightly from the background surface; (2) high relief where the sculpture projects at least half or more of its natural circumference from the background, and may in parts be wholly disengaged from the ground, thus approximating sculpture in the round. [Sculptors may also employ middle-relief , a style which falls roughly between the high and low forms]; (3) sunken relief, where the carving is sunk below the level of the surrounding surface and is contained within a sharpely incised contour line that frames it with a powerful line of shadow. The surrounding surface remains untouched, with no projections. Sunken relief carving is found almost exclusively in ancient Egyptian art, although it has also been used in some beautiful small-scale ivory reliefs from India.
Well let me explain this to you in a better way. The terms 'subprogram', 'function' and 'method' have all the same meaning in C/C++ but we usually called them functions, and we divide the functions into two types :
1)Function : it's the usual one, as we all know, it returns a value.
2) General format :
Type function_name(<arguments>){
// Your work
return <value/variable> //Note : the type must be the same as the function
// type.
}
Example :
int Maheen(int a, int b){
int c = a + b;
return c;
}
Procedure : it's a function but it doesn't return any value, it begins with 'void'.
General format :
void function_name(<arguments>){
// Your work
//Note : There is no return here.
}
Example :
void Maheen(int a, int b){
int c = a + b;
printf("The sum is : %d", c);
}
I think this can help you greatly
<span>
</span>
Actually you put the right answer in the question.