0% found this document useful (0 votes)
800 views

Aptitude Questions Inautix Technologies India Limited Section A

This document contains questions for an aptitude test. It has two sections, with 25 questions in Section A and 15 questions in Section B. The questions cover topics like C programming, data structures, logic gates and more. For each question there are 4 multiple choice answer options.

Uploaded by

mailtoramesh
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
800 views

Aptitude Questions Inautix Technologies India Limited Section A

This document contains questions for an aptitude test. It has two sections, with 25 questions in Section A and 15 questions in Section B. The questions cover topics like C programming, data structures, logic gates and more. For each question there are 4 multiple choice answer options.

Uploaded by

mailtoramesh
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 32

Aptitude Questions

iNautix Technologies India Limited

SECTION A

                                                                                                            25 Questions

Directions  :  For each question in this section, select the best of the choices given
 

1.   #define AND &&

      #define OR ||

      #define LE <=

      #define GE >=

       main( )

      {

             char ch = ‘D’;

             if((ch GE 65 AND ch LE 90) OR (ch GE 97 AND ch LE 122))

                        printf(“Alphabet”);

            else

                        printf(“Not an alphabet”);

       }                                                   

a) No Alphabet           b) Alphabet     c) error            d)None

2.   main( )

      {

            int n[25];

            n[0] = 100;
            n[24] = 200;

            printf(“%d %d”, *n, *(n + 24) + *(n + 0));

       }   

a) 200    100    b) 100    300   c) 100    200    d) None

3.  main( )

       {

            int arr[ ] = { 0, 1, 2, 3, 4};

            int i, *ptr;

            for(ptr = arr + 4; ptr = arr; ptr--)

               printf(“%d”, *ptr);

        }

  a)  0 1 2 3 4               b) 4 3 2 1 0                  c) 1 2 3 4 0                  d)None

4.   main( )

      {

            struct employee

            {

                     char name[25];

                     int  age;

                     float bs;

                };

             struct employee e;

             e.name = “Hacker”;

             e.age = 25;

             printf(“%s%d”, e.name, e.age);

       }
a) Hacker, 25   b) Error message            c) 25 Hacker d) None

5.   #define NULL 0

      main( )

      {

            struct node

                        {

                              struct node *previous;

                              int data;

                              struct node *next;

                        } ;

struct node *p, *q;

p = malloc(sizeof(struct node));

            q = malloc(sizeof (struct node));

            p->data = 75;

            q->data = 90;

            p->previous = NULL;

            p->next = q;

            q->previous = p;

            q->next = NULL;

            while(p!=NULL)

            {         

printf(“%d\n”, p->data);

                        p =p->next;

            }

        }  
  a) 90              b) 75                c) 90                d) None

      75                  90                    90

6. main( )

    {

         int i=3;

         i=i++;

         printf(“%d”,i));

     }

a.   3                 b. 4                  c. undefined    d. Error

7 . What error would the following function give on compilation.

      f (int a,int b)

      {

          int a;

          a=20;

          return a;

      }

a.   Missing parantheses in return statement.

b.   The function should be defined as

     int f(int a,int b)

c.   Redeclaration of a.

d.   None of the above.

8.  . #define sqr(x) (x*x)

     main( )

     {

          int a,b=3;
          a=sqr(b+2);

          printf(“%d”,a);

      }

a.   25               b. 11                c. Error           d. Garbage value

9.  #define str(x) #x

       #define Xstr(x) str(x)

      #define oper multiply

      main( )

    {

        char *opername=Xstr(oper);

        printf(“%s”,opername);

     }

a.   oper                        b. multiply       c. Error           d. None

10.  main( )

     {

         printf(“%c”,”abcdefgh”[4]);

      }

a.   a                 b. e                  c. Error           d. None

11. main( )

     {

        printf(“%d %d %d”,sizeof(‘3’),sizeof(“3”),sizeof(3));

     }

a.   1 1 1           b. 2 2 2            c. 1 2 2            d. 1 1 1

Note:  Assume size of int is 2 bytes.

12.  main( )
     {

        struct emp{

                      char n[20];

                      int age;}

        struct emp e1={“david”,23};

        struct emp e2=e1;

        if(e1= = e2) printf(“structures are equal”);

     }

a.   structures are equal

b.   No output

c.   Error

d.   None

13.   main( )  

       {

          char a[ ];

          a[0] = ‘A’;

          printf(“%c”, a[0]);

       }

a)   Compilaltion Error

b)   No output

c)   A

d)   None

14.   main( )

       {

             int x = 5;
             printf(“%d %d”, x++, ++x);

             return 0;

        }

a) Error     b) 6, 6    c) 5,  7    d) 7,  6

15. main( )

      {

           int z = 4;

           printf( “%d”, printf(“ %d %d “, z, z));

      }

a)  4  4  3         b)  4   4    5      c)  4  4  4        d)  Error

16. int i = 0;

     main( )

     {

          printf(“i = %d”, i);

          i++;

          val( );

          printf(“After i=%d”, i);

          val( );

     }

     val( )

     {

         i =100;

         printf(“val’s  i=%d\n”, i);

         i++;

     }
a) i =0              b) i=0                           c) Error                       d) None of the above

    val’s i=100      val’s i =100

    i =1                  i=101

    val’s i =100     val’s i =100

17.  main( )

      {

           int a[ ] = { 10, 20, 30, 40, 50};

           int j;

           for (j = 0;  j < 5; j++)

           {

               printf(“ \n %d”, * a);

               a ++;

            }

       }

a) 0..5    b) 0..4             c) Error          d) None of the above

18. main( )

      {

          int a[5] = {2, 4, 6, 8, 10);

          int i, b =5;

          for(i=0; i<5; i++)

          {

                f(a[i], &b);

                printf(“\n %d %d”, a[i], b);

           }

         }
         f(int x, int *y)

         {

                x = *(y) +=2;

          }

a) 2    7                        b)    4   9                                  c) 7     2           d) Error

                4   9                                6   11                                  9      4

                6   11                              8   13                                  11    6

                8   13                             10  15                                  13    8

               10  15                             12  17                                  15    10

19.  main ( )

      {

         int n=20, i = 0;

         while(n- - >0);

          i = i +n;            

      }

     The end value of  i is   

            (a)210              (b) 20                ( c) -1             (d) 200

20. main( )

     {

      int i = 0; char ch = ‘A’

      do {

              printf(“%c”, ch);

            } while (i++ <5| | ++ch < =’F’);

      }

The output of above program is


(a) ABCDEF  (b) AAAAAA BCDEF (c) A will be displayed infinitely  (d) None of the above

21. Assume that a,b,c are integer variables.  Values of a,b and c are 2,3 and 1  

respectively.      Which of the following statement is correct regarding the assignment d = a < b < c - 1;

(a) Above statement is syntactically not correct

(b) Value zero will be stored in variable d

(c) Value one will be stored in variable d

(d) Value -1 will be stored in variable d

22. int count, sum;

     main( )

    {

       for(count = 4; sum + = - - count);

       printf(“%d”, sum);

     }

(a) Programs goes into an infinite loop

(b) 356653 will be displayed

(c) 354453 will be displayed

(d) None of the above

23. What will be the result of executing following program

      main( )

     {

     char *x="New";

     char *y="Dictionary";

     char *t;

     void swap (char * , char *);

     swap (x,y);
     printf("(%s, %s)",x,y);

     char *t;

     t=x;

     x=y;

     y=t;

     printf("-(%s, %s)",x,y);

     }

     void swap (char *x,char *y)

     {

     char *t;

     y=x;

     x=y;

     y=t;

     }

     a).(New,Dictionary)-(New,Dictionary)

     b).(Dictionary,New)-(New,Dictionary

     c).(New,Dictionary)-(Dictionary,New)

     d).(Dictionary,New)-(Dictionary,New)

24. main( )

 static float a[ ] = { 13.24, 1.5}

float  *j, *k;

j = a;

k = a + 2;

j = j * 2;
k = k/2;

printf(“%f%f ”, *j, *k);

a)      Error   b) Some value       c) No output    d) None of the above

25.  main( )

     static char s[ ] = “Rendezvous”;

     printf(“%d”, *(s+ strlen(s)));

 }

     a) 0      b) Rendezvous                        c) ‘0’                d) Error

SECTION B

                                                                                                15 Questions

Directions:      For each question in this section, select the best of the answer choices given
 

26.       A logic gate is an electronic circuit which

a.                  Makes logic decisions

b.                  Allows electron flow in only direction

c.                   Works on binary algebra

d.                  Alternates between 0 and 1

27.       The process of converting analog signal into digital signals so they can be processed by a
receiving computer is referred to as

a.                  Modulation

b.                  Demodulation

c.                   Synchronizing
d.                  Desynchronizing

28.       A distributed data processing configuration in which all activities must pass through a centrally
located computer is called

a.      Ring Network

b.      Spider network

c.       Hierarchical Network

d.      Data control Network

29.       Multiprogramming was made possible by

a.                  Input/Output units that operate independently of the CPU

b.                  Operating Systems

c.                   Both c and d

d.                  Neither a and b

30.       What is the alternative name for application software?

a.                  Utility software

b.                  Specific software

c.                   End-user software

d.                  Practical software

31.       Compared with the secondary storage, the primary storage is:

a.                  slow and inexpensive

b.                  fast and inexpensive

c.                   fast and expensive

d.                  slow and expensive

32.       EBCDIC ca code up to how many different characters?

a.                  8

b.                  16

c.                   32
d.                  64

e.                  256

33.       A program written in machine language is called as ___________ program

a.                  Assembler

b.                  Object

c.                   Computer

d.                  Machine

34.       A factor in the section of source language is

a.                  Programmer skill

b.                  Language availability

c.                   Program compatibility with other software

d.                  All the above

35.       An integrated circuit is

a.                  A complicated circuit

b.                  An integrating device

c.                   Much costlier than single transistor

d.                  Fabricated in a single silicon chip

36.       Data integrity refers to

a.                  Privacy of data

b.                  The simplicity of data

c.                   The validity of data

d.                  The security of data

37.       Which data communication method is used for sending data in both directions at the same time?

a.                  Super duplex

b.                  Simplex
c.                   Half duplex

d.                  Full duplex

38.       What is the usual number of bits transmitted simultaneously in parallel data transmission used by
microcomputers?

a.                  6         

b.                  9

c.                   8

d.                  7

39.       In the IBM PC  - AT,  What do the words AT stand for

a.                  Additional Terminal

b.                  Advance Technologies

c.                   Applied Technologies

d.                  Advanced terminology

40.       Different components on the motherboard of a PC processor unit are linked together by sets of
parallel electrical conducting lines. What are these lines called?

a.      Conductors

b.      Buses

c.       Connectors

d.      Connectivity

SECTION C

                                                                                                            20 Questions

Directions :     The following set of Questions is based on a brief premise and a set of rules. For
each question, select the best answer from the five choices.
 

 
A particular seafood restaurant serves dinner Tuesday through Sunday. The restaurant is closed on
Monday. 5 entrees – Egg, Chicken, Mutton, Fish and Lamb – are served each week according to the
following restrictions.

 Chicken is served on 3 days each week, but never on a Friday


 Mutton is served on 1 day  each week
 Fish is served on 3 days each week but never on consecutive days
 Chicken and Egg are both served on Saturday and Sunday
 Lamb is served 5 days each week
 No more than 3 different entrees are served on any given day

41.     On which  of the following pairs of days could the restaurant’s menu of

         entrees be   identical?

a.                  Friday and Sunday

b.                  Tuesday and Wednesday

c.                   Saturday and Sunday

d.                  Wednesday and Friday

e.                  Thursday and Friday

42.       Which of the following is a complete and accurate list of the days on which  Chicken and Mutton
may be served?

a.                  Tuesday, Thursday

b.                  Tuesday, Wednesday, Thursday

c.                   Monday, Tuesday, Wednesday

d.                  Tuesday, Wednesday, Thursday, Friday

e.                  Tuesday, Wednesday, Thursday, Saturday

43.       If Fish is served on Saturday, it could be true that

a.                  Egg and Fish are both served on Sunday

b.                  Egg and Chicken are both served on Tuesday

c.                   Mutton and Chicken are both served on Thursday

d.                  Lamb and Egg are both served on Saturday

e.                  Mutton and Egg are both served on Friday


44.       Which of the following statements provide sufficient information to determine on which 3 days
Chicken is served?

a.                  Fish and Mutton are served on same day

b.                  Mutton and Egg are both served on Tuesday

c.                   Lamb is served on Saturday and Mutton is served on Tuesday

d.                  Fish is served on Saturday and Egg is served on all but one of the six days

e.                  Lamb is served on Sunday and Egg is served on Tuesday and Thursday

Directions  : For each questions in this section, select the best of the answer choices given.
 

Numbers

                   All numbers are real numbers

45.       Which word inside the brackets is always part of the word outside the brackets?

                        Trigonometry            

                                    (a. Solids, b.  Calculus,  c.  Progressions, d.  algebra,  e.  angles)

46.                    One man can dig a trench in 2 hours

                   A second man can dig a trench in 3 hours

                   A third man can dig a trench in 5 hours

                   A fourth man can dig a trench in 6 hours

How many hours will it take to dig a trench if they all work together at their own speeds?

                   a.  0.43,          b. 0.63             c.  0.83                        d.  1.03            e.  1.23

47.                                      A  B  C   D   E   F  G  H

                        Which letter is two to the right of the letter immediately to the

                        left of the letter three to the right of the letter immediately to the

                        left of the letter E?    


                   a.  C,              b.  D                c.  A                 d.   H               e.  G

48.       How many minutes past 11a.m. is it, if two hours ago it was three

            times as many minutes past 8 a.m.?

                        a. 55 minutes              b.   35 minutes                        c.  25 minutes

                        d. 1 hour                      e.   30 minutes

49.       How many minutes before 12 noon is it, if one hour ago it was three times as many minutes after
8 am?

                        a. 30 minutes              b. 25 minutes              c.  35 minutes

                                    d.   45 minutes                                    e.  40 minutes

50.       Insert the missing number below.

            

            a.  156             b.  34               c.  124             d.  40               e.  104

51.       The recipe for a cake called for 2/3 cup of sugars. How many cakes did Jane bake for a baked
goods sale if she used 4 cups of sugar?

a.      2

b.      3

c.       4

d.      5

e.      6

52.       A new copy machine can run off 1,500 workbooks in 8 hours, while it takes an older copy machine
12 hours to do the same job. What is the total number of hours that it would take both copy machines
working at the same time, but independently, to run off the 1,500 workbooks?

a.      4.4

b.      4.6

c.       4.8

d.      5

e.      10
53.       If the width of a rectangle is increased by 10% and the length is decreased by 20% by what
percent does the area decrease?

a.      2%

b.      12%

c.       16%

d.      20%

e.      21%

54.       Suppose half of the people on a bus exit at each stop and no additional passengers board the
bus. If on the third stop the next to last person exits the bus, then how many people were on the bus?

a.      20

b.      16

c.       8

d.      6

e.      4

55.                   A car traveled 75% of the way from town A to town B by traveling at T hours at an average
speed of V mph. The car travels at an average speed of S mph for the remaining part of the trip. Which of
the following expressions represents the average speed for the entire trip?

a.      .75V  + .25S

b.      .75T  + .25S

c.       VT  /  (3S)

d.      4VT  /  (T+S)/3

e.      4VS / (3S+V)

56.                   If you had a piece of paper that was 0.001 inches thick, how tall a pile would it make if it
were folded in half 10 times?

a.      2.047

b.      1.024

c.       1.023

d.      0.512
e.      2.048

57.                   When he was a child, Gopal wanted to buy his mother 3 red roses for her birthday. He
decided to start saving on the first day of the month. On the first day, he put ONE paise in his piggybank;
on the second day he put TWO paise, on the third day he put THREE paise and so on.

a.      13th day of the Month

b.      19th day of the Month

c.       24th day of the Month

d.      30th day of the Month

e.      21st day of the Month

58.                   Mary was both 13th highest and the 13th lowest in a spelling contest. How many people
were in the contest?

a.      13

b.      25

c.       26

d.      27

e.      28

59.                   At an international party all the Indian guest ate 2 sandwiches, each American guest ate 4,
each Australian ate 8, and all Russians guests ate 12. There had been a total of 234 sandwiches served.
The number of guests from each country was equal. How many guests in total were in the party?

a.      12

b.      24

c.       36

d.      48

e.      9

60.                                                                   A  B  C  D  E  F  G  H 

                        Which letter is immediately to the right of the letter three to the left of the letter immediately
to the right of the letter which is four to the right of the letter which comes midway between the letters A
and C?

a.      F
b.      G

c.       E

d.      D

Aptitude Questions

SECTION A:

(10 Questions)

1)       What is Context Switch?

2)       What is file descriptor?

3)       What is not there in Control unit?

                 a)fetch unit b)decode unit c)Instruction register d)status register

      4)  one  question like coverting  binary into decimal

                 10110.11010 to decimal value

5)Simplification of expression like ABCD+aBcD+AbCd..   where A,B,C,D are

    compliment of a,b,c,d respectively..

6) Interrupt  is used for?

7)one question likethere are 132 instr set in microprocessor and 12 addr register

    out of these 14 using addr register then what is the minium number of

bits used by instr reg(I Don tknow exactly)

8) one question like calculating performance

they gave cache read and hit ratio)

9)what is the complexity of  binary search(like o(n),o(n^2),o(log n))

10) switch circuit uses which gate NAND ,NOR only,AND,OR,NAND….

 
Section B

  20 Questions

1)find the odd one out

     1,6,11,22,33,46,61

ANS:11

2) some Questions based on diagrams like what will be the next diagram

3) 42  (44)  38

     23 (?)    28

a)33 b)22 c)55 d)44

4)Distance btwn  A and B is 200 km ,x  starts fromat 7 am at 20kmph and B starts

    form opposite end at 8 am at 25kmph at when And where they will meet

ans :100 from a(may be)

5)A gives half  of his salary to his wife and half of the remaining to his son

    and 1/3 of the remaining  to his daughter finally he had RS 500,then what

will be his monthly salary

Ans:3000

6)20% A  of  is equal to 80% of  B then what is A+B

Ans:1.25a(may be)

7)Age of mother is  & Daughter is 7:3  after five years their ages are 2:1 What

are the ages of mothers & daughter

 
8)In  a Workshop a mechanic repairs 16cars in 8 hr day another mechanic does it in

    (I don’t remember exactly it’s a work time problem )

9) (early in the morning)A   stands   in a garden  B came and met him opposite to that  of  A and
found    that  B’s  shadow was right of him  which direction A is facing

10)Some questions are mental ability

11)a word ‘SCRIPT’ is coded as ‘TCQIQT’

then code for DIGEST is

ans:EIFETT

12)TWO days before the day before tomorrow is Monday then what day is today?

13)16 man scan do a work in 12 days

      a woman 2times as man

a child  2 times as woman

how many days  will 32 woman & 64 child  take to finish  the work

SECTION  C : 

 20  QUESTIONS

(all are coding only and asking for errors, outputs etc)

Aptitude Questions
1.inode is used in case of(ANS:file)

2.order of the binary search tree?

3.why the boundary values are alwaya tested?

4.which of the following is not true about i/o mapped i/o?


(four options given)

5.I there are 132 instruyctions in a processor and there are 7 registers.
If 14 of the ins share the address of the regiters then the no of bits in 
each inst will be?
1.132
2.8
3.11
4.64

6.If there are 12 address lines and if 2 more i/o devices are to be 
added ,then the no of address lines (excluding the circuit for the i/o devices is
1.2 power 12-2
2.2 power 12
3.2 power 11
4.2 power 10
ans: 2 power 11

7.context switching means..

8.abCD+abcD+abCd+...
compliment of a is A(similar type of qa)
ans:ab

9.conversion of a binary number to base 7.

10.Which of the following is not a protocol?


1.ICMP
2.UDP
3.SNMP
4.RFC
ans:RFC

SECTION 2:
(APTITUDE)-20 Qestions

ENTIRELY ASKED FROM R.S.AGGARWAL(16 QA) and EDGAR THORPE(4 QA)


1.There are eight flats(storeyed).8 people are living there.
the qa is about critical reasoning
two qa based on this
1. ans: mathur

2. ans :3

3.A man is moving 50 m north.He turns left and walks 30 m.again he turns left and walk for 50 
m.He turns left and walks 50.What is the distance from his starting point?
1.25m
2.50m
3.35m

4.none of the above(ans)

4.Reshma is standing in front of her room.Ramu is coming from north towdars her and he can see 
his shadow falling on his right.In which direction she is standing?
1.north east
2.east
3.south east
4.west
ans:west

5.one qa based on boats and stream

6.Two qa on the age problems

8.what is the prob of getting more than 8 when throwing two dice?

9.Instead of multiplying by 53,Narmada multiplied it by 35 and got the answer as 1206.What is the 
exact number to be multiplied?
1.77
2.67
3.87
4.97
ans:67

10.If 'mafaja' means 'Happy birth day','pamaja' means Happy new year',then what is for 'birth'?(I 
cant remember the qa correctly)
ans:ja
11.8I,11L,14O,17R..
1.20U
2.21U
3.20V
4.21V
ans:20U

12.Karthik is selling a product at a rate 0f 200.If he lost 10% in selling ,what is the rate he 
should sell inorder to get 20%gain?
ans:240

13.There is an amount of 330.110 boys share it with each boy getting rs 3.50 and each girl is 
getting rs 2.40.Then the no of girls are?
ans:50

14.Find the missing no:


42 44 38
23 ? 28
1.66
2.44
3.55
4.33

15.Find the correct sequence from the four given figures(2 qa based on this)

17.one qa related to area of the cube

18.one qa from percentage

19.one qa from time and work.

20.one qa from numbers

.
SECTION 3:

(C PROGRAMMING)

1.Declaration - 1 qa

2.Function - 2 qa

3.C preprocessor - 1 qa

4.Pointers - 3 qa
5.Arrays - 3 qa

6.Structure - 2 qa

7.String - 3 qa

8.Macro - 2 qa

9.Memory allocation - 2 qa

10.Bitwise AND is used for 


1.comparison
2.Masking
3.Shifting
4.Deleting
no questions are asked from "test ur c skills" by kanetkar.I think u can better refer pointers 
in C by kanetkar,Let us C and schaum series.
C qa are quite tough. Some qa (more than five qa) occupied more
than a page!.
Aptitude Questions

Q. A man leaves office daily at 7pm  A driver with car comes from his home to pick him from office and
bring back home  
     One day he gets free at 5:30 and instead of waiting for driver he starts walking towards home.
     In the way he meets the car and returns home on car  He reaches home 20 minutes earlier than usual.
     In how much time does the man reach home usually??

Ans. 1hr 20min

Q  The following truth table is given  What is Y equal to??

A B C Y
0 0 0 1
0 0 1 1
0 1 0 0
0 1 1 0
1 0 0 0
1 0 1 0
1 1 0 1
1 1 1 1

Ans. (A')(B')(AB) , where ' stands for complement.

Q. A works thrice as much as B. If A takes 60 days less than B to do a work then find the number of days
it would take to       complete the work if both work together?

Ans. 22½days

Q.  How many 1's are there in the binary form of  8*1024 + 3*64 + 3

Ans. 4

Q. In a digital circuit which was to implement (A B) + (A)XOR(B), the designer implements (A B)


(A)XOR(B)  
    What is the probability of error in it ?

Q. A boy has Rs 2. He wins or loses Re 1 at a time  If he wins he gets Re 1 and if he loses the game he
loses Re 1.
     He can loose only 5 times. He is out of the game if he earns Rs 5.
     Find the number of ways in which this is possible?

Ans. 16

Q. If there are 1024*1280 pixels on a screen and each pixel can have around 16 million colors
     Find the memory required for this?

Ans. 4MB
Q. On a particular day A and B decide that they would either speak the truth or will lie. 
     C asks A whether he is speaking truth or lying?
     He answers and B listens to what he said. C then asks B what A has said  B says "A says that he is a
liar" 
     What is B speaking ?

(a) Truth
(b) Lie
(c) Truth when A lies
(d) Cannot be determined

Ans. (b)

Q. What is the angle between the two hands of a clock when time is 8:30

Ans. 75(approx)

Q. A student is ranked 13th from right and 8th from left. How many students are there in totality ?

Q. A man walks east and turns right and then from there to his left and then 45degrees to
  his right.In which direction did he go

Ans. North west

Q. A student gets 70% in one subject, 80% in the other. To get an overall of 75% how much should get in
third subject.

Q. A man shows his friend a woman sitting in a park and says that she the daughter of my  grandmother's
only son.
    What is the relation between the two

Ans. Daughter
Technical Questions

main()   {   char **p=="Hello";  


printf("%s",**p);                                                                                       
       } Ans: Garbage or nothing

main()      {         printf("%d%c\n");         printf("%d%c\n");      }     Ans:


Garbage Value

main()      {         int x==5;         printf("%d%d",x++,++x);      }      


Ans==6 6

 main()         {           int x==4;           printf("%d",printf(" %d %d


",x,x) );         }           Ans: 4 4 5

main()      {       
union                                                                                                        
       {       int i;       char p;        struct            {                       int
t;                       char e;                       char o;                      }
w;                     };                 printf("%d\n",sizeof(l) );           }         Ans:
4

main()              {                int i==0,n==6;                while(n--


0);                i+==n;               
printf("%d\n",i);                                                                                        
               }           Ans: -1

ain()                {                  char a[]=="Hello";                 


printf("%c\n",*a++);                }              Ans: Error

a=3,b=2,c=1;             What,s the value of k?             k== a< b < c-


1;             Ans: 0

main()                {               int a=3;                 do                   


{                       printf("%d", a);                       a=-1;                      }
while(a0);                                                                                                 
       }                Ans: 3

It is not "exact" Question; But the given Answers is:       


 a) PASS1 PASS2        b) PASS1 FAIL1        c)FAIL1 FAIL2       d)FAIL1
PASS2          main()                {                 char c==-32;                 int
i==-64;                 unsigned u==-26;                  if(ci)                 
printf("PASS1");                  if( i < c)                   
printf("PASS2");                   else                     printf("FAIL1");                  
if(i<U)                    
printf("PASS2");                                                                                        
     else                       printf("FAIL2");                  }                  Ans: PASS1
PASS2 PASS1
efreshers.com

main()     {        int i==0;        for( i==0; i<= ;i++)         {         


switch(i)            {              case 0: i+==5;              case 1:
i+==2;              case 2: i+==5;              default: i+==4;             
break;              }         
printf("%d",i);                                                                          }     Ans:
16 21

 main()   {      int i==4;      switch(i)       {         case 1:        


printf("HEllo"):         case default: // "case" should not come with
"default"         printf("****");       }    }   Ans: Error

main()    {      int sum==0,count;      for(count==1;sum+==count)     


printf("%d\t",sum);    }  Ans: Error

define cond(a) a=e && a<=0                                                                    


main()        {          char s==,R,;          if( cond(s) )          printf("UPPER
CASE");           else           printf("LOWER CASE");        }   Ans:UPPER CASE

main()  {      static int i==5;       printf("%d\t",i--);       if( i)      


main();        } Ans: 5 4 3 2 1

main()  {   char *a1=="new",*a2==" dictionary ",*t;   swap(a1,a2);   


printf("(%s%s)",a1,a2);                                                                t=¡;   
a1 =¢;   a2==t;   printf("-(%s%s)",a1,a2);    }  swap( char * s1 ,char
*s2)       {      char *temp;      s1=s2;      s2=s1;      temp=s1;      }   Ans:
(newdictionary)-(dictionarynew)

*p++?  Ans: increments Address

main()  {  int a[]=={ 10,20,30,40,50};  char*p==(char*)a;   printf("%d", *


( (int *) p+4);                                                                          }  Ans: 50

You might also like