SarkariResultess QA Bank

PHP array reduce करने का function क्या है? के सही और गलत approach में क्या फर्क है?

Other 0 Views Verified
PHP array reduce करने का function क्या है? के सही और गलत approach में क्या फर्क है? सही विकल्प चुनें और code/solution को समझें।
Sarkari Result QA Bank
Editorially reviewed exam information

Answer & Explanation

4 Answers
Verified Correct Answer

array_reduce($numbers, fn($c,$x) => $c + $x, 0)

array_reduce($numbers, fn($c,$x) => $c + $x, 0)
Additional Explanation
array_reduce() values को accumulated result में reduce करता है।
Verified

$numbers.reduce()

$numbers.reduce()
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

reduce_array($numbers)

reduce_array($numbers)
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

array_sum_reduce($numbers)

array_sum_reduce($numbers)
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।