Robotics & Artificial Intelligence
Which one of the following is a single board computer?
- Raspberry Pi
- TensorFlow
- PyTorch
- Media center
Answer
Raspberry Pi
Reason — Raspberry Pi is a single board computer that integrates the processor, memory, input/output interfaces, and other components on a single circuit board. It is widely used for learning programming, electronics, and building small computing and robotic projects.
Related Questions
What will be the output of the code given below?
st = "This is a test String" v = st.count("s") print(v)- 1
- 2
- 3
- 4
Identify the type of graph shown below.

- Line graph
- Pie plot
- Bar graph
- Scatter plot
Give the output of the following Python code.
my_list = [1, 2, 3, 4] my_list.append(5) my_list.insert(2, 10) print(my_list)- [1, 2, 3, 4, 5, 10]
- [1, 10, 2, 3, 4, 5]
- [1, 2, 10, 3, 4, 5]
- [1, 2, 3, 10, 4, 5]
What are warehouse robots and how are they used in transport industry?