Answer:
-6000
Step-by-step explanation:
20{5[100-3(25+35)+20]} open the parenthesis
20{5[100-180+20]} do the addition and subtraction in the square brackets
20{5[-60]} open the square brackets
20{-300} open curly brackets
-6000
Answer:
117312 hours
Step-by-step explanation:
Answer: Dilation is a technique for creating similar figures. Each point is stretched outwards from the center point D by multiplying distances by the scale factor. (Outwards if the scale factor is bigger than 1.) Move the points A, B, and C to change the shape of the triangle.
Step-by-step explanation:
Answer:
Step-by-step explanation:
Count pairs (a, b) whose sum of squares is N (a^2 + b^2 = N)
Given a number N, the task is to count all ‘a’ and ‘b’ that satisfy the condition a^2 + b^2 = N.
Note:- (a, b) and (b, a) are to be considered as two different pairs and (a, a) is also valid and to be considered only one time.
Examples:
Input: N = 10
Output: 2
1^2 + 3^2 = 9
3^2 + 1^2 = 9
Input: N = 8
Output: 1
2^2 + 2^2 = 8