You can have your processor test whether it supports a particular extension function using the _____ function.

A. ?function-available()
B. ?available()
C. ?test-function()
D. ?function-check()


Answer: A

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1. Arrays cannot have more than two dimensions. 2. If a function takes a two dimensional array as a parameter, the prototype must specify the number of rows, but not the number of columns. 3. A struct can have a component that is an array. 4. struct type addressBook has a component people which is an array of elements of struct type person. person has a component address which is of struct type personAddress and has a component street. The correct reference for the street of the fifth person in myFriends (type addressBook) is myFriends.people[4].personAddress.street

Computer Science & Information Technology

Answer the following questions true (T) or false (F)

1. The final modifier is included before the definition of the method, then the method can be redefined in a derived class. 2. Java uses late binding with private methods, methods marked final, or static methods.

Computer Science & Information Technology

Which of the following is an IT environment isolated from the production environment?

A. sandbox B. playbox C. virtual network D. virtual domain

Computer Science & Information Technology

When a superclass contains only constructors that require arguments, you must include at least ____ constructor(s) for each subclass you create.

A. zero B. one C. two D. three

Computer Science & Information Technology