WHAT IS THE ABREVATION OF FORTRAN?
Answers were Sorted based on User's Feedback
Answer / devi
FORTRN-FORmula TRANslator(It is a high level Programming Language)
| Is This Answer Correct ? | 0 Yes | 0 No |
What does override mean in c++?
There is a magic square matrix in such a way that sum of a column or a row are same like 3 5 2 4 3 3 3 2 5 sum of each column and row is 10. you have to check that matrix is magic matrix or not?
What is class invariant?
Write about the role of c++ in the tradeoff of safety vs. Usability?
Why main function is special in c++?
What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number
Can I run c program in turbo c++?
How did c++ start?
What is the extension of c++?
Which should be more useful: the protected and public virtuals?
What should main() return in c and c++?
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;