In which year did IBM developed FORTRAN High Level programming languages used to write scientific applications?
A1989
B1956
C1978
D1924
A1989
B1956
C1978
D1924
Related Questions:
What is the value of sum after the execution of the following code?
int sum = 0;
for (int i = -5; i<=;i++)
{
if (!i) break;
sum += i;
}