Question
1. What is the output of below code? import numpy as np a = np.array([[[1,2,3],[4,5,6]]]) print(a.ndim) Group of answer choices 1 (1,3) (2,3) 3 2.
1. What is the output of below code?
import numpy as np a = np.array([[[1,2,3],[4,5,6]]]) print(a.ndim)
Group of answer choices
1
(1,3)
(2,3)
3
2. What is the output of below code?
import numpy as np a = np.array([[1,2,3],[4,5,6]]) a[1,2]
Group of answer choices
2
5
6
3. Which of the following feature is not provided by the Pandas module?Group of answer choices
Merge and join the data sets
Filter data using the condition
Plot and visualize the data
None of the above
4. Which of the following files pandas can read data from? (Select all that applies)Group of answer choices
JSON
HTML
Excel
5. Which one is the data structure used in standard implementation of Breadth First Search?Group of answer choices
Stack
Queue
Linked List
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started