Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

if Z is a data type that can store all integers (-, ), what is the return value of the following frz function if given

if Z is a data type that can store all integers (-∞, ∞), what is the return value of the following frz function if given input n = 42100?

22. function frz (n : z) z; 23. var 24. array [0..9] of z = (43,503, 3, 3, 69,103, 3,2,7); holyNumbers : cnt, ret, i : 25. z; 26. begin 27. ret := 1; 28. for i:=0 to 9 do begin 29. cnt := 0; 30. while (n mod holyNumbers [i]) = 0 do begin 31. cnt := cnt + 1; 32. n := n div holyNumbers [i]; 33. end; 34. ret := ret* (cnt+1) ; 35. end; 36. frz := ret; 37. end;

Step by Step Solution

3.54 Rating (161 Votes )

There are 3 Steps involved in it

Step: 1

Longint can store integers from 2147483648 to 2147... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Statistical Inference

Authors: George Casella, Roger L. Berger

2nd edition

0534243126, 978-0534243128

More Books

Students also viewed these Programming questions