Spring Sale Special - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

Which file system is commonly used in Windows and supports file permissions?

A.

NTFS

B.

FAT32

C.

HFS+

D.

EXT4

Which protocol provides encryption while email messages are in transit?

A.

FTP

B.

HTTP

C.

TLS

D.

IMAP

What code would print a subarray of the first 5 elements in numpy_array?

A.

print(numpy_array[1:5])

B.

print(numpy_array.get(0, 5))

C.

print(numpy_array[:5])

D.

print(numpy_array.get(5, 1))

What is the component of the operating system that manages core system resources but allows no user access?

A.

The kernel

B.

The File Explorer

C.

User interface layer

D.

Device driver manager

What happens if one element of a NumPy array is changed to a string?

A.

All elements in the array are coerced to strings.

B.

The operation is not allowed and raises an error.

C.

All elements in the array are coerced to integers.

D.

The array becomes a list of the original integers.

What Python code would return the value 40 from np_2d, where np_2d = np.array([[1, 2, 3, 4], [10, 20, 30, 40]])?

A.

np_2d[3, 1]

B.

np_2d[1, 3]

C.

np_2d[0, 4]

D.

np_2d[4, 1]

What is a key advantage of using NumPy when handling large datasets?

A.

Built-in machine learning algorithms

B.

Automatic data cleaning

C.

Efficient storage and computation

D.

Interactive visualizations

What is the time complexity of a binary search algorithm?

A.

O(n^2)

B.

O(n)

C.

O(2^n)

D.

O(log n)

Which statement describes the data type restriction found in most NumPy arrays?

A.

NumPy arrays are restricted to string data types only.

B.

NumPy arrays must be of the same type of data.

C.

NumPy arrays can only hold integer data types.

D.

NumPy arrays adapt to the most complex data type on the fly.

Which process is designed to establish the identity of the user such as with a username and password?

A.

Certification

B.

Verification

C.

Authentication

D.

Registration