sqrt
pow
Raise 2 to the 10 power.
2
10
Find the square root of 245.
245
Given an array:
<?php $arr = [4, 2, 5, 19, 13, 0, 10]; ?>
Find the root of the sum of the squares of its elements. Use a foreach loop to solve the problem.
foreach