Answers

KG

Answered

A user has configured a Google account and Gmail on an Android device.Where will the device synchronize to by default?

A) A host computer desktop
B) iTunes
C) The cloud
D) The SIM card

On Jul 24, 2024


C
KG

Answered

The statement ____ passes a copy of the structure member emp.idNum to a function named display() .

A) display(*emp.idNum) ;
B) display(emp.idNum) ;
C) display(&emp.idNum) ;
D) display(emp->idNum) ;

On Jul 22, 2024


B
KG

Answered

The Q in SQL stands for Structured ________ Language.

A) Question
B) Quiz
C) Query
D) Quick

On Jun 23, 2024


C
KG

Answered

Write a Java method as well as any facilitator methods needed to perform a sort on an array of whole numbers in descending order.

On Jun 22, 2024


/**
Precondition: The array has values.
Action: Sorts a so that a[0] >= a[1] >= ... >= a[a.length]
*/
public static void selectionSortint[] a)
{
int indexOfLargest;
forint i=0;i < a.length;++i)
{
indexOfLargest = LargestIndexi,a);
swapi,indexOfLargest,a);
}
}
/**
Returns the index of the largest value among
a[start],a[start + 1],...a[a.length-1]
*/
private static int LargestIndexint start,int[] a)
{
int max = a[start];
int indexOfMax = start;
forint i=start + 1;i < a.length;i++)
{
ifa[i] > max)
{
max = a[i];
indexOfMax = i;
}
}
return indexOfMax;
}
/**
Precondition: i and j are legal indices for the array a.
Postcondition: Values of a[i] and a[j] have been interchanged
*/
private static void swapint i,int j,int[] a)
{
int temp;
temp = a[i];
a[i] = a[j];
a[j] = temp;
}
KG

Answered

_____ is the gap between those who have access to technology and its resources and information, especially on the Internet, and those who do not.

A) The digital divide
B) The Internet lag
C) A digital assistant
D) An intelligent divide

On May 24, 2024


A
KG

Answered

Celeste is preparing to lead a training session during a webinar.How can she engage the audience and encourage active participation?

A) Encourage the audience to take notes
B) Incorporate polling questions
C) Wear a silly hat
D) Ask for feedback by email

On May 23, 2024


B