Basic Quiz for Embedded AI course

Basic Quiz for Embedded AI course

University

9 Qs

quiz-placeholder

Similar activities

CS6801- Multi­core Architectures and Programming

CS6801- Multi­core Architectures and Programming

University

10 Qs

C Program Array and strings

C Program Array and strings

University

10 Qs

Arrays in C (II yr 02.07.2020)

Arrays in C (II yr 02.07.2020)

University

10 Qs

Plot the Code

Plot the Code

University

10 Qs

FIND THE KEY

FIND THE KEY

University

10 Qs

unit3 pointers

unit3 pointers

University

10 Qs

pointers and structures

pointers and structures

University

10 Qs

TECHNICAL C POINTER JIT04

TECHNICAL C POINTER JIT04

University

8 Qs

Basic Quiz for Embedded AI course

Basic Quiz for Embedded AI course

Assessment

Quiz

Computers

University

Medium

Created by

Akshay Bhosale

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the typical voltage required to power a basic digital circuit, such as a microcontroller used in AI applications?

12V

5V

9V

15V

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a common semiconductor material used in electronics?

  • Copper

Silicon

Iron

Aluminum

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the abbreviation "LED" stand for in electronics?

Light Emitting Device

Low Energy Diode

Light Emitting Diode

Laser Emitting Device

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the function of a diode in an electronic circuit?

To conduct current in both directions

To store charge

To convert AC to DC

To increase current

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a basic circuit, what is the role of a resistor?

To store energy

To increase voltage

To limit current flow

To amplify signals

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which component is essential for data acquisition from the real world in embedded systems used in AI/ML applications?

Transistor

None of these

Diode

Resistor

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

#include <stdio.h>

int main() {

int x = 5;

printf("%d", x++);

return 0;

}

5

6

None of these

Error

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code?

#include <stdio.h>

int main() {

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

printf("%d", 2[arr]);

return 0;

}

Undefined behavior

2

3

Error

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the result of the following code?

#include <stdio.h>

int main() {

int a = 5;

if (a = 0)

printf("False\n");

else

printf("True\n");

return 0;

}

True

False

Error

None of these