Answers

YH

Answered

Data aggregators can collect public and non-public information to create digital dossiers.

On Jul 16, 2024


True
YH

Answered

You can replace lines 5 and 6 in the following function with ____.
1 /* copy string2 to string1 */
2 void strcopy(char string1[], char string2[])
3 {
4 int i = 0;
5 while (string1[i] = string2[i])
6 i++;
7 }

A) while (*string1 = *string2) ;
B) while (*string1 = string2) ;
C) while (*string1++ = *string2++) ;
D) while (*++string1 = *++string2) ;

On Jul 13, 2024


C
YH

Answered

A _____ query in a real estate database could list property types as row headings, number of bedrooms as column headings, and the count of each property type as values.

A) select
B) grouped
C) crosstab
D) calculated

On Jun 15, 2024


C
YH

Answered

Multitasking is when one user can do multiple processes at the same time.

On Jun 13, 2024


True
YH

Answered

In addition to improving their pizzas, __________ improved its ordering process with digital technologies such as a voice-ordering chatbot and a robot delivery system.

A) Domino's
B) Little Caesars
C) Papa John's
D) Pizza Hut

On May 16, 2024


A
YH

Answered

What is the output of the following Java code?int num = 15;
While (num > 0)
Num = num - 3;
System.out.println(num) ;

A) 0
B) 3
C) 12
D) 15

On May 14, 2024


A
YH

Answered

_________ are IS professionals who either modify existing computer programs or write new programs to satisfy user requirements.

A) Programmers
B) Systems analysts
C) Technical specialists
D) Users

On May 13, 2024


A
YH

Answered

Add a _____ to an animation to play the animation only after you perform an action such as clicking a shape.

A) motion path
B) sound
C) prompt
D) trigger

On May 11, 2024


D
YH

Answered

The horizontal and vertical lines on an Excel worksheet are called _________________________.

On May 10, 2024


gridlines