Fortran Interview Questions and Answers

Thumb

Author

BIQ

Questions

16

Last updated

Feb 6, 2023

Most Frequently Asked Fortran Interview Questions

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.

Q1. What is Fortran? Explain
Answer

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.

Q2. Why we used Fortran language?
Answer

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.

Q3. What are the advantages of Fortran Programming language?
Answer
Some of the advantages of Fortran are:-
  • Fortran supports Numerical analysis and scientific computation
  • Fortran supports the Generic and Structured programming
  • Fortran supports Array and the Modular programming
  • High performance
  • Object-oriented programming
  • Extremely optimized for the vectorization
  • Fortran is readable and easy to understand
  • Very fast in Scientific Computing
Q4. Who developed Fortran programming language?
Answer

Fortran was developed by John Backus and IBM in the year 1957.

Q5. Explain double precision in Fortran?
Answer

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.

Q6. What do you mean by the array in Fortran?
Answer

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

Q7. Explain the basic data types in Fortran?
Answer
Fortran provides five data types:-
  • Integer type:- It stores only the integer values.
  • Real type:- It holds the decimal point numbers such as 3.0, 2.1415, -200.587, etc.
  • Complex type:- it holds the complex numbers like (2.0, -4.0) and that equals to 2.0 – 4.0i
  • Logical type:- it stores only true and false
  • Character type:- it holds the characters and strings
Q8. Why is Fortran faster than C? Explain
Answer

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.

Q9. Write a program to print “Welcome Bestinterviewquestion.com” in Fortran?
Answer
Q10. How to define a function in Fortran?
Answer
A function is a type of procedure that returns only a single quantity. The quantity which is returned is known as a function value, and the function value is denoted by the function name.

Syntax:-
function name(arg1, arg2, ....)
    [declarations, including those for the arguments]
    [executable statements]
end function [name]

Q11. What do you mean by a subroutine in Fortran?
Answer

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.

 

Q12. What do you mean by the module in Fortran?
Answer

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.

A module contains two parts-
  • a specification part for the statements declaration
  • a includes a section for the subroutine and the function definitions

This is the favorite interviewer question in Fortran interview questions.

module name
   [statement declarations]
   [contains [subroutine and function definitions] ]
end module [name]

Q13. What do you mean by implicit none in Fortran?
Answer

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

Q14. What is cmplx() in Fortran?
Answer

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.

Q15. Explain the reserved keywords available in Fortran?
Answer

Reserved words are those words which cannot be identifiers. Fortran has no reserved words, but Fortran has identifiers like END, PROGRAM, DO.

Q16. How to declare variables in Fortran?
Answer

The variables in Fortran is declared by using the type statement at the beginning of the program. The syntax for declaring a variable is:-

type-specifier :: list

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

For example:-
  • INTEGER:: Total, Mean
  • REAL:: Average
  • CHARACTER(10) :: Surname, Name
    ((10 is the length value that must be there with the CHARACTER specifier. CHARACTER specifier can hold the string not more than 10 characters))