All Rounder Flashcards

1
Q

What is NumPy?

A

A library for efficient numerical computing in Python, providing N-dimensional arrays (ndarray), mathematical functions, and tools for linear algebra, Fourier transforms, and random number generation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How to install NumPy?

A

Use pip install numpy.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How to import NumPy?

A

import numpy as np.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the key features of NumPy arrays?

A

Homogeneous data type, fixed size, and support for vectorized operations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How to create a 1D array from a Python list?

A

arr = np.array([1, 2, 3]).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How to create a 2D array from a Python list?

A

matrix = np.array([[1, 2], [3, 4]]).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How to create an array filled with zeros?

A

np.zeros((3, 3)).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How to create an array filled with ones?

A

np.ones((2, 2)).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How to create an uninitialized array?

A

np.empty((3, 3)).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How to create an array with values from 0 to 10 with a step of 2?

A

np.arange(0, 10, 2)[0, 2, 4, 6, 8].

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How to create an array with 5 evenly spaced values between 0 and 1?

A

np.linspace(0, 1, 5)[0, 0.25, 0.5, 0.75, 1].

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How to create an array with random values between 0 and 1?

A

np.random.rand(2, 3).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What does arr.shape return?

A

The dimensions of the array (e.g., (3, 3) for a 3x3 array).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does arr.ndim return?

A

The number of dimensions in the array (e.g., 2 for a 2D array).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What does arr.dtype return?

A

The data type of the array elements (e.g., float64).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What does arr.size return?

A

The total number of elements in the array (e.g., 9 for a 3x3 array).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

How to perform element-wise addition on two arrays?

A

a + b (e.g., [1, 2, 3] + [4, 5, 6][5, 7, 9]).

18
Q

How to calculate the sum of all elements in an array?

A

np.sum(arr).

19
Q

How to calculate the mean of all elements in an array?

A

np.mean(arr).

20
Q

How to find the maximum value along columns in a 2D array?

A

np.max(arr, axis=0).

21
Q

What is a universal function (ufunc) in NumPy?

A

A function that performs element-wise operations on arrays (e.g., np.sqrt(arr)).

22
Q

How to access the first element of a 1D array?

23
Q

How to slice a 1D array to get elements from index 1 to 3?

24
Q

How to filter an array using a boolean condition?

A

arr[arr > 2].

25
Q

How to access elements of an array using a list of indices?

A

arr[[3, 1]].

26
Q

How to reshape a 1D array into a 2D array?

A

arr.reshape((2, 2)).

27
Q

How to flatten a 2D array into a 1D array?

A

arr.flatten().

28
Q

How to transpose a matrix?

A

arr.T or np.transpose(arr).

29
Q

How to join two arrays along rows?

A

np.concatenate([a, b], axis=0).

30
Q

How to calculate the dot product of two matrices?

A

np.dot(a, b) or a @ b.

31
Q

How to calculate the inverse of a matrix?

A

np.linalg.inv(a).

32
Q

How to generate random integers between 0 and 10?

A

np.random.randint(0, 10, size=5).

33
Q

How to shuffle the elements of an array?

A

np.random.shuffle(arr).

34
Q

How to save an array to a .npy file?

A

np.save('array.npy', arr).

35
Q

How to load an array from a .npy file?

A

loaded_arr = np.load('array.npy').

36
Q

How to save multiple arrays to a .npz file?

A

np.savez('data.npz', arr1=arr1, arr2=arr2).

37
Q

What is vectorization in NumPy?

A

Avoiding loops by using built-in functions for array operations.

38
Q

How to preallocate memory for a large array?

A

Use np.empty() or np.zeros().

39
Q

How to add 10 to every element of a 3x3 array?

40
Q

How to perform linear regression using NumPy?

A

Use np.linalg.lstsq() to compute coefficients.