Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


WHAT IS THE ABREVATION OF FORTRAN?

Answers were Sorted based on User's Feedback



WHAT IS THE ABREVATION OF FORTRAN?..

Answer / archana

FORmula TRANslation

Is This Answer Correct ?    5 Yes 1 No

WHAT IS THE ABREVATION OF FORTRAN?..

Answer / harpreet

FORMULATOR TRANSLATOR

Is This Answer Correct ?    1 Yes 0 No

WHAT IS THE ABREVATION OF FORTRAN?..

Answer / sreeram

FORMULAE TRANSCRIPTED LANGUAGE

Is This Answer Correct ?    2 Yes 2 No

WHAT IS THE ABREVATION OF FORTRAN?..

Answer / devi

FORTRN-FORmula TRANslator(It is a high level Programming Language)

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

let a,b,c be three integer numbers.write a c++ program with a function void rotate 1()such that a->b->c and c->a.

1 Answers  


1)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea += sizeof(int); } return 0; } 2)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea ++; } return 0; } The output of this two programs will be different why?

5 Answers  


Which function cannot be overloaded c++?

0 Answers  


Why is c++ a mid-level programming language?

0 Answers  


Is string data type in c++?

0 Answers  


Specify some guidelines that should be followed while overloading operators?

0 Answers  


What are static variables?

0 Answers  


const char * char * const What is the differnce between the above two?

11 Answers   TCS,


What is the difference between the parameter to a template and the parameter to a function?

0 Answers  


Which bit wise operator is suitable for checking whether a particular bit is on or off?

0 Answers  


What is setf in c++?

0 Answers  


Where must the declaration of a friend function appear?

0 Answers  


Categories