Answer:
See there are multiple ways to get a perfect shot of products to stand out but the most affective according to me are explained below :-
- Macro shooting - These are close shots u can say really close just to show the product more attractive and u can see these types of shots in every advertisement.
- Background shooting/shots - Opposite of macro shots.
- 3d shots - These are 360° shots.
Tip :- Use wide aperture like F2 and right aperture for right shots.
Hope it helps!
Body.
head contains all of the data that we generally don't see.
Link is used to link to external stylesheets.
script is where you would type scrips.
doctype is used to tell the browser the document type.
Answer: Eyes and face
Explanation: The non-verbal communication defines the communication through the facial expression gesture, posture etc. This type of communication happens where there is no requirement or permission of being verbal or just to judge a person without having communication with them .The expression obtained from face are enough to determine the emotion of a person whether he/she is happy, sad or scared.
Linux. You do not need Linux as an operating system for your website.
Answer:
Following are the program for the above question:
Explanation:
#include <stdio.h> //header file
void inputMatrix(int matrixA[3][3]) //inputmatrix function to take the inputs and display the outputs.
{
int i,j; //declare the symbols.
//loop to take the inputs.
for(i=0;i<3;i++)
for(j=0;j<3;j++)
scanf("%d",&matrixA[i][j]);
//loop to print the output
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
printf("%2d",matrixA[i][j]);
printf("\t");
}
}
int main() //main function
{
int matrixA[3][3]; //matrix declaration.
inputMatrix(matrixA); //calling function.
return 0;
}
Output:
- The above code take the 9 inputs from the user and display the output as described question format.
Code Explanation:
- There is one user-defined function that takes the double dimension array as the argument.
- Then it takes the 9 value for the double dimension array.
- Then it displays the value to the user in that format which is defined by the question.