NRI Fintech Company Numerical Ability Number System

Find the value of a, b and c where
a^2+b^2=c^2 and a+b+c=1000

Read Solution (Total 3)

NRI Fintech Other Question

Wha will be th output of ine following script?
#!/in/bash
secondLoop="A B C D E F G"
counter=0

for a in 6 7 8 9
do
for b in "$secondLoop"
do
let "counter+=1"
done
done
echo "This script has $counter iterations"​

Option
1) This script has 28 iterations
2) This script has 21 iterations
3) This script has 4 iterations
4) This script has 0 iterations