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

What is another term for the inputs into a function?

A.

Variables

B.

Procedures

C.

Outputs

D.

Arguments

Which protocol provides encryption while email messages are in transit?

A.

FTP

B.

HTTP

C.

TLS

D.

IMAP

Which character is used to indicate a range of values to be sliced into a new list?

A.

","

B.

"+"

C.

"="

D.

":"

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

A.

NTFS

B.

FAT32

C.

HFS+

D.

EXT4

What will be the result of performing the slice fam[:3]?

A.

A list with the first three elements of fam

B.

A list with the first four elements of fam

C.

A list with the first two elements of fam

D.

A list with the last three elements of fam

What is the method for changing an element in a Python list?

A.

Use square brackets and the equals sign

B.

Use parentheses and the plus sign

C.

Use curly brackets and the equals sign

D.

Use the del keyword and the element’s value

What statistical measure can be used to detect outliers in a dataset using NumPy?

A.

Variance

B.

Standard deviation

C.

Median absolute deviation

D.

Mode

Which aspect of a security policy would define the ramifications of abusing company resources?

A.

Network Security Policy

B.

Physical Security Policy

C.

Acceptable Use Policy

D.

Data Retention Policy

What is the slicing outcome of client_locations[1:3] from client_locations = ["TX", "AZ", "UT", "NY"]?

A.

["TX", "AZ"]

B.

["AZ", "UT"]

C.

["UT", "NY"]

D.

["TX", "UT"]

How does the data type of a variable get set in Python?

A.

It is explicitly declared by the programmer.

B.

It is chosen randomly.

C.

It is always set to string by default.

D.

It is determined by the value assigned to it.