Question Set

1. A long double can be used if range of a double is not enough to accommodate a real number.



Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

  • By: guest on 01 Jun 2017 06.01 pm
    True, we can use long double; if double range is not enough. double = 8 bytes.
    long double = 10 bytes.
Show Similar Question And Answers
QA->A train 110ms long passes a telegraph pole in 3 seconds. How long will it take to cross railway platform 165 ms long....
QA->Raj can do a piece of work in 5 hours. Hari and Siva can do it in 3 hours. Raj and Siva can do it in 4 hours. How long will Hari take to do it ?....
QA->Raj can do a piece of work in 5 hours. Hari and Siva can do it in 3 hours. Raj and Siva can do it in 4 hours. How long will Hari take to do it ?....
QA->P can do a work in the same time in which Q and R together can do it. If P and Q work together, the work can be completed in 10 days. R alone needs 50 days to complete the same work. then Q alone can do it in....
QA->" വൺ ലൈഫ് ഈസ് നോട്ട് ഇനഫ് (One Life Is Not Enough)2014 " ആരുടെ ആത്മകഥയാണ് ?....
MCQ->What will be the output of the following program? #include<iostream.h> double BixFunction(double, double, double = 0, double = 0, double = 0); int main() { double d = 2.3; cout<< BixFunction(d, 7) << " "; cout<< BixFunction(d, 7, 6) << endl; return 0; } double BixFunction(double x, double p, double q, double r, double s) { return p +(q +(r + s x) x) x; }....
MCQ->A long double can be used if range of a double is not enough to accommodate a real number.....
MCQ->Consider the following rules in Fortran A signed or unsigned real variable name or a real constant is a real expression.Two real expressions connected by an arithmetic operator is a real expression.A real variable or constant exponential by an integer constant or integer variable is not valid Which of the above are correct?....
MCQ->interface DoMath { double getArea(int rad); } interface MathPlus { double getVol(int b, int h); } / Missing Statements ? / which two code fragments inserted at end of the program, will allow to compile? class AllMath extends DoMath { double getArea(int r); } interface AllMath implements MathPlus { double getVol(int x, int y); } interface AllMath extends DoMath { float getAvg(int h, int l); } class AllMath implements MathPlus { double getArea(int rad); } abstract class AllMath implements DoMath, MathPlus { public double getArea(int rad) { return rad rad 3.14; } }....
MCQ->Which of the following statement is correct about the program given below? #include<iostream.h> long FactFinder(long = 5); int main() { for(int i = 0; i<= 0; i++) cout<< FactFinder() << endl; return 0; } long FactFinder(long x) { if(x < 2) return 1; long fact = 1; for(long i = 1; i <= x-1; i++) fact = fact i; return fact; }....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution