What is a the output signal when the input to NOT gate is A=11100?
00000
00011
11111
None of these
Answer: Option B
What is function of logic gate?
It makes logic decisions
It works on binary algebra
It alternates between 0 and 1 values
None of these
Answer: Option A
What is output of division of (100011)2 by (101)2?
1002
10102
1112
1012
Answer: Option B
Are the expressions arr and &arr same for an array of integers?
Answer: They are not same. They just exist at the same memory location.arr has the type int *,where as &arr has the type int (*)[size].&arr points to the entire array where as arr points to the first element of the array
What is the difference between union and structure?
Answer: Structures allocate enough space to store all of the fields in the structure. The first one is stored at the beginning of the structure; the second is stored after that, and so on. Unions only allocate enough space to store the largest field listed, and all fields are stored at the same space i.e. all fields