1,348 is 1000 and 2,332 is 2,300
Answer: A. EOA and DOS and also
B. SOE and DOA
Step-by-step explanation:
If you look at angle EOA without regarding line OB, you will notice that it is directly opposite to angle DOS.
The same applies for angle SOE and DOA so they are vertically opposite.
The bb and j was the source of the questions
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