Answer:
Open your image in Photoshop.
Go to the Image Size dialog, check resample, and select "Preserve Details" in the corresponding dropdown menu.
Make sure the Resolution is set to 300 Pixels/Inch.
Set Width and Height to inches and adjust to enlarge your image.
Answer:
Following are the output of the given question
3 4 6 8
Explanation:
In the following code, firstly, we have declare two integer data type "X" and "Y".
- Then, set two for loop in which first one is outer loop and the second one is the inner loop, inner loop starts from 1 and end at 2 and outer loop starts from 3 and end at 4.
- Then, when the variable X=1 then the condition of the outer loop become true and the check the condition of the inner loop, when Y=3, than the multiplication of X and Y occur and output should be 1*3=3.
- Then, the value of the X will remain same at time when the value of Y become false. Thrn, second time X=1 and Y=4 and output should be 4.
- Then, X=2 because Y turns 5 so the inner loop will terminate and than outer loop will execute. Then again Y=3 but X=2 and output should be 6.
- Then, the value of the X will remain same at time when the value of Y become false. Thrn, second time X=2 and Y=4 and output should be 8.
Finally, all the conditions of the loop become false and the program will terminate.