Question
This is Ocaml language. 1. Open utop and enter the following: let width = 17;; let height = 12.0;; let delimiter = '.';; Then perform
This is Ocaml language.
1. Open utop and enter the following:
let width = 17;;
let height = 12.0;;
let delimiter = '.';;
Then perform the following calculations, taking a screen shot of each result and paste it into a file:
a) width/2
b) width/.2.0
c) height/3
d) 1 + 2 * 5
e) delimiter * 5
The file needs to be in a pdf, open office, or microsoft word format.
2. Create an OCaml program that will calculate the volume of a sphere with a radius of 5 and printout the volume.
The formula for the volume is: v = (4/3)(pi)(r^3). Calculate this by hand to verify that your program works correctly.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started