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

WGU Foundations-of-Computer-Science - WGU Foundations of Computer Science

Which action is taken if the first number is the lowest value in a selection sort?

A.

The first number is increased by one.

B.

The first number is duplicated.

C.

It swaps the selected element with the last unsorted element.

D.

It swaps the selected element with the first unsorted element.

What type of encryption is provided by encryption utilities built into the file system?

A.

Encryption in motion

B.

Encryption authentication

C.

Encryption at rest

D.

Encryption steganography

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 is the purpose of user management and access control in a networked environment?

A.

To ensure all users have the same level of access to resources

B.

To establish permissions and monitor resource usage

C.

To provide unlimited access to all network resources

D.

To restrict all users from accessing confidential documents

Which Windows 11 tool enables a user to manually add a Bluetooth device if it does not automatically configure when first connected?

A.

Network center

B.

Task scheduler

C.

Windows defender

D.

Device manager

How is the NumPy package imported into a Python session?

A.

import num_py

B.

import numpy as np

C.

using numpy

D.

include numpy

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

Which order is impossible when traversing a binary tree using depth first search?

A.

Level-order traversal

B.

Pre-order traversal

C.

Post-order traversal

D.

In-order traversal

What is the correct way to convert an integer to a string in Python?

A.

tostring(variable)

B.

int_to_str(variable)

C.

string(variable)

D.

str(variable)

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)