Which two technologies can use a Type-C cable? (Select two.)

A) Thunderbolt
B) Audio
C) USB
D) Network
E) Mouse


A, C

Computer Science & Information Technology

You might also like to view...

Given the following code, find the compile error.

``` public class Test { public static void main(String[] args) { m(new GraduateStudent()); m(new Student()); m(new Person()); m(new Object()); } public static void m(Student x) { System.out.println(x.toString()); } } class GraduateStudent extends Student { } class Student extends Person { @Override public String toString() { return "Student"; } } class Person extends Object { @Override public String toString() { return "Person"; } }``` a. m(new GraduateStudent()) causes an error b. m(new Student()) causes an error c. m(new Person()) causes an error d. m(new Object()) causes an error

Computer Science & Information Technology

In a database, tables, queries, forms, and reports are referred to as ________

A) relationships B) keys C) properties D) objects

Computer Science & Information Technology

A group of Excel functions that look up a value in a defined range of cells located in another part of the workbook to find a corresponding value is referred to as:

A. logical functions B. lookup functions C. tabs

Computer Science & Information Technology

In an expert system, the ____ is a software program that applies the rules to the data stored in the knowledge base in order to reach decisions.

A. rules processor B. inference engine C. data authority D. knowledge bus

Computer Science & Information Technology