Embedded System Test -July

This test will require password

73

Quiz will be automatically submitted after set duration


Embedded_Software_Junior

1 / 24

What is your EmailID?

2 / 24

In which tool you worked for more than 1yr ?

3 / 24

What was the most critical issue you faced in certification/debugging ? How you resolved that ?

4 / 24

If MCU based board is not booting , the issue can be due to

5 / 24

What should be output of the following ?

#include <stdio.h>
int main(void)
{
char a = 255;
char b = 127;
b = ~b;
a = a ^ b;
printf("\n%d, %d \r\n", a, b);
return 0;
}

6 / 24

What will be output of the following ?

#include <stdio.h>

void main()
{
int m,n;
m= 2,3,5;
n = (3,5,7);
printf("%d \r\n", m-n);

}

7 / 24

What will be output of following ?

#include <stdio.h>

void main()
{
int i =0;
if (i==0)
{
i= ( (7, (i=6)), i=5);
printf("%d \r\n",i);
}

else  printf("Nothing \r\n");

}

8 / 24

Recursive functions are executed as

9 / 24

How a register  variable (register int x)  life time can be increased to program scope ?

10 / 24

How to make a register variable (register int x) scope at file level ?

11 / 24

Which of the following storage specifier can be used as a function parameter ?

12 / 24

Watchdog provision to reset any MCU can be :

13 / 24

In case of a code hang, which action you will prefer ?

14 / 24

One can halt cpu execution based on a particular data status using :

15 / 24

One can put breakpoint in :

16 / 24

What is the size of int data type?

17 / 24

%lf is used to display which of the follow?

18 / 24

What is the correct size of data types relative to each other?

19 / 24

Usually monolithic kernels are large in space.

20 / 24

Metadata of filesystem in EXT2 is stored in

21 / 24

Which of the following is not  related to Memory Management ?

22 / 24

How many bits are of major/minor numbers

23 / 24

Can we use & with Register variable ?

24 / 24

One can load any new compiled kernel module at run time.

Your score is

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Scroll to Top

Discover more from

Subscribe now to keep reading and get access to the full archive.

Continue reading