Answer: Absolute
Explanation: The Cascading Style Sheet is used to describe the style of a Hypertext Markup Language document. The cascading style sheet has different property value for setting the position of elements. When the property value to absolute, it moves the element relative to its original position and allows other elements to flow into the space that the absolutely positioned element would have otherwise occupied. Element is relative to browser window when set to fixed. Element is positioned relative to its original position when property value is set to relative.
Answer:
it allows users to trim the edges of the image,making the image smaller.
Explanation:
Cropping refers to removing unwanted parts of a graphic hence can facilitate to reducing the size
Answer:
Option b is the correct answer for the above question.
Explanation:
- The mystery function is a recursive function that calls for the two times when the user passes 38 on the argument.
- The first value is 38 and the second value is 2 for which that function is called.
- When the value 38 is passed, then again 2 is passed because of the "mystery (n % 3);" statement.
- This statement holds by the if condition which gives the true when the argument value is greater than 2.
- Hence for the 2 value the if condition will not true and the function is not called again.
- Then the 38/3 and 2/3 are printed whose value is 12 0, but it will print 0 12 because of the recursive function.
- Hence option b is the correct answer while the other is not because other options does not states the output of this program.