Here in this article, we will be listing frequently asked Fortran Interview Questions and Answers with the belief that they will be helpful for you to gain higher marks. Also, to let you know that this article has been written under the guidance of industry professionals and covered all the current competencies.
Fortran stands for FORmula TRANslation.Fortran is the first widely used high-level programming language. Fortran language is used for doing high-level scientific computing, and until today it is one of the widely used languages for this purpose. Fortran was release in the year 1957 which 62 years now. The popular language BASIC is based on Fortran II.
Fortran is nowadays used very rarely but for numerical simulation and large scale, for example, to use it compute scientifically, Fortran has always been a choice of programmers that’s the only reason why it is known as the sophisticated simulation code that is written in Fortran.
Fortran was developed by John Backus and IBM in the year 1957.
Every computer is limited in magnitude and precision. REAL has a specific number of significant digits. If for a calculation number of significant digits are required then DOUBLE PRECISION is used. For a 32-bit computer range REAL number can be up to 7 decimal digits and will have a magnitude ranging from 10-38 to 10+38. Now, DOUBLE PRECISION REAL numbers have the size ranging from 10-308 to 10+308 and twice the number of decimal digits.
Point to be noted: Go through this Q&A very thoroughly as this is one of the essential Fortran interview questions.
An array is the collection of datatype or variables. An array is stored in a consecutive memory location. Mostly array is used to store the same data types. In Fortran, up to 7-dimensional arrays can be created. Here the arrays are declared with dimension attribute.
Syntax:- Datatype, dimension() :: Array Name
Fortran is faster than C in case of numerical tasks. During the execution of the mathematical functions, Fortran handles memory references very well. In C pointers are challenging to optimize while doing mathematical tasks. The Matlab and Numpy are still till date written in Fortran.
Syntax:-
function name(arg1, arg2, ....)
[declarations, including those for the arguments]
[executable statements]
end function [name]
When a programmer writes the subroutine statement in a program, then subroutine can modify its arguments, but it does not return a value.
subroutine name(arg1, arg2, ....)
[declarations, including those for the arguments]
[executable statements]
end subroutine [name]A subroutine is invokes using the call statement.
While writing a big program or if the functions and subroutines need to be used in more than one program then the programmer use module. A module is like a complete package where a programmer can keep the functions, subroutines. A module basically splits the program into multiple files.
This is the favorite interviewer question in Fortran interview questions.
module name
[statement declarations]
[contains [subroutine and function definitions] ]
end module [name]
In Fortran, there is a feature of Implicit typing which means there is no need of declaring the variables before the use of the variables so the first letter of the variable name will determine the type of the variable. i, j, k, l, m, n are taken as integer numbers and other as real numbers.
The excellent programming practice is that the variables should be declared at the starting of the program so implicit none statement disables the implicit typing so that variables can be announced at the starting of the program
A number are those number s which has two parts real number and an imaginary number. Cmplx() function in Fortran creates a complex number. Cmplx() function produces a result where the real and the imaginary parts are the single precision regardless of the type of the input arguments.
Reserved words are those words which cannot be identifiers. Fortran has no reserved words, but Fortran has identifiers like END, PROGRAM, DO.
The variables in Fortran is declared by using the type statement at the beginning of the program. The syntax for declaring a variable is:-
Here type-specifier can be: -INTEGER, REAL, COMPLEX, LOGICAL AND CHARACTER and the list is the name of the variables that can be separated with commas