logo

CuriousTab

CuriousTab

Discussion


Home Technical Questions Programming Comments

  • Question
  • What will be output when you will execute following c code? #include void main() { signed int a = -1; unsigned int b = -1u; if(a == b) printf( "The Lord of the Rings" ); else printf( "American Beauty" ); }


  • Options
  • A. The Lord of the Rings
  • B. American Beauty
  • C. Compilation error: Cannot compare signed number with unsigned number
  • D. Warning: Illegal operation

  • Correct Answer
  • The Lord of the Rings 


  • Programming problems


    Search Results


    • 1. enum colors {BLACK,BLUE,GREEN} main() { printf( "%d..%d..%d", BLACK, BLUE, GREEN ); return(1); }

    • Options
    • A. 1..2..3
    • B. 0..1..2
    • C. 1..1..1
    • D. 0..0..0
    • Discuss
    • 2. If the binary equivalent of 5.375 in normalized form is 0100 0000 1010 1100 0000 0000 0000 0000, what would be the output of the following program?
      main()
      
      {
      
          float a = 5.375 ;
      
          char *p;
      
          int i;
      
          p = ( char* ) &a ;
      
          for ( i = 0; i <= 3 ; i++ )
      
                printf ( " %02x ", (unsigned char ) p[i] );
      
      }
    • Discuss
    • 3. public static void main string[] args Meaning is?
    • Discuss
    • 4. The coding or scrambling of data so that humans cannot read them, is known as _____.

    • Options
    • A. Compression
    • B. Encryption
    • C. Ergonomics
    • D. Biometrics
    • Discuss
    • 5. Write a quick script for launching a new activity within your application.
    • Discuss
    • 6. What would be the output of the following program? main() { extern int fun ( float ); int a; a = fun ( 3. 14 ); printf ("%d", a); } int fun ( aa ) float aa ; { return ( (int) aa ); }
    • Discuss
    • 7. In programming, repeating some statements is usually called ?

    • Options
    • A. Running
    • B. Structure
    • C. Looping
    • D. Control structure
    • Discuss
    • 8. What will be output when you will execute following c code? #include void main() { int const SIZE = 5; int expr; double value[SIZE] = { 2.0, 4.0, 6.0, 8.0, 10.0 }; expr=1|2|3|4; printf ( "%f", value[expr] ); }

    • Options
    • A. 2.000000
    • B. 4.000000
    • C. 8.000000
    • D. Compilation error
    • Discuss
    • 9. A function cannot be defined inside another function

    • Options
    • A. TRUE
    • B. FALSE
    • Discuss
    • 10. What will be output of the following c program ? #include int main() { int max-val=100; int min-val=10; int avg-val; avg-val =( max-val + min-val ) / 2; printf( "%d", avg-val ); return 0; }

    • Options
    • A. 55
    • B. 105
    • C. 60
    • D. Compilation error
    • Discuss


    Comments

    There are no comments.

Enter a new Comment