IndiaBIX.com
Arithmetic Aptitude Data Interpretation
Logical Reasoning Verbal Reasoning Non Verbal Reasoning
General Knowledge
Sudoku Number puzzles Missing letters puzzles Logical puzzles Playing cards puzzles Clock puzzles
C Programming C++ Programming C# Programming Java Programming
Microbiology Biochemistry Biotechnology Biochemical Engineering
Civil Engineering Mechanical Engineering Chemical Engineering Networking Database Questions Computer Science Basic Electronics Digital Electronics Electronic Devices Circuit Simulation Electrical Enigneering Engineering Mechanics Technical Drawing
Placement Papers Group Disucssion HR Interview Technical Interview Body Language
Aptitude Test Verbal Ability Test Verbal Reasoning Test Logical Reasoning Test C Programming Test Java Programming Test Data Interpretation Test General Knowledge Test
Data Structures Operating Systems Networking DATABASE Database Basics SQL Server Basics SQL Server Advanced SQL Server 2008 JAVA Core Java Java Basics Advanced Java UNIX Unix File Management Unix Memory Management Unix Process Managemnt C Interview Questions The C Language Basics .NET Interview Questions .NET Framework ADO.NET ASP.NET Software Testing

C Programming - Floating Point Issues

@ : Home > C Programming > Floating Point Issues > General Questions

Exercise

"Everything should be made as simple as possible, but not simpler."
- Albert Einstein
1. 

What are the different types of real data type in C ?

A. float, doubleB. short int, double, long int
C. float, double, long doubleD. double, long int, float

2. 

What will you do to treat the constant 3.14 as a long double?

A. use 3.14LDB. use 3.14L
C. use 3.14DLD. use 3.14LF

3. 

If the binary eauivalent of 5.375 in normalised form is 0100 0000 1010 1100 0000 0000 0000 0000, what will be the output of the program (on intel machine)?

#include<stdio.h>
#include<math.h>
int main()
{
    float a=5.375;
    char *p;
    int i;
    p = (char*)&a;
    for(i=0; i<=3; i++)
        printf("%02x\n", (unsigned char)p[i]);
    return 0;
}

A. 40 AC 00 00B. 04 CA 00 00
C. 00 00 AC 40D. 00 00 CA 04

4. 

Which of the following range is a valid long double (Turbo C in 16 bit DOS OS) ?

A. 3.4E-4932 to 1.1E+4932B. 3.4E-4932 to 3.4E+4932
C. 1.1E-4932 to 1.1E+4932D. 1.7E-4932 to 1.7E+4932

5. 

Which statement will you add in the following program to work it correctly?

#include<stdio.h>
int main()
{
    printf("%f\n", log(36.0));
    return 0;
}

A. #include<conio.h>B. #include<math.h>
C. #include<stdlib.h>D. #include<dos.h>




© 2008-2013 by IndiaBIX™ Technologies. All Rights Reserved | Copyright | Terms of Use & Privacy Policy

Contact us: info@indiabix.com     Follow us on twitter!