At the two opposite direction or angle should he take the photo and Henry should shoot at an angle of 180 degrees.
<h3>What is two point lighting photography?</h3>
The two point light principle is known to be one that is itself along with the subject as they are lit from two different directions with the light sources and are said to be 180 degrees apart.
Therefore, At the two opposite direction or angle should he take the photo and Henry should shoot at an angle of 180 degrees.
Learn more about photograph from
brainly.com/question/25821700
#SPJ1
Answer: transaction cost
Explanation:
Transaction costs refers to the expenses that are incurred when a good or service is bought or sold. Transaction cost is the labor that's required in bringing a product to the market.
Transaction cost is the costs that are incurred when a firm buys on the marketplace what it cannot make itself.
Transaction costs are the costs that are incurred which don’t accrue to the participant of the transaction.
Answer:
Explanation:
Pink: Down 5 then left 2.
Yellow: Left 3 and down 2.
Green: Right 7, down 4 and left 1.
Purple: Up 6 and left 9.
Red: Left 7, down 5 and left 1.
You can do the last one, blue :)
Answer:
True
Explanation:
In this question, some information is missing. The question does not describe which type of question is this.So the correct question is it is a True/False question.
Application software is the collection of the program which is design for the purpose of end-user without the system software the application software is nothing. The main objective to introduce application software for reducing the effort of humans and we can do any task in a very easy manner.
The main objective of application software to enable the people to work groups or the entire enterprise to solve the problems and perform the specific tasks.
Answer:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
int arr[100];
int i = 0;
int j = 0;
char c[10];
char temp;
int sum = 0;
FILE* fp;
if ((fp = fopen("test.txt", "r")) == NULL) {
printf("cannot open the file");
return;
}
else {
do {
temp = fgetc(fp);
if (temp == ' ' || temp == '\n') {
c[j] = '\0';
arr[i++] = atoi(c);
j = 0;
continue;
}
c[j++] = temp;
} while (temp != EOF);
for (j = i - 1; j >= 0; j--) {
printf("%d\n", arr[j]);
}
}
getchar();
}
Explanation: