What is the intangible creative work that is embodied in physical form and includes trademarks and patents?
A. Intellectual software
B. Intellectual property
C. Trademark property
D. Ethical property
B. Intellectual property
You might also like to view...
Which of type of light in 3D graphics determines how shiny an object appears?
a. ambient b. specular c. diffuse d. emissive
Which of the following is LEAST likely related to a slow Internet connection?
A. the number of users logged in to your Internet service B. the amount of traffic that is circulating on the Internet C. environmental factors that affect the speed of wireless connections D. the speed of your computer's processor
Transfer a memory card from your camera to your computer or connect your camera to your computer cable, and use your ____ software to control the data transfer.
A. video editing B. edit for video C. video production D. production
Assume that i = 1, j = 2, k = 3 and m = 2. What does each of the following statements print?
``` a) cout << (i == 1) << endl; b) cout << (j == 3) << endl; c) cout << (i >= 1 && j < 4) << endl; d) cout << (m <= 99 && k < m) << endl; e) cout << (j >= i || k == m) << endl; f) cout << (k + m < j || 3 - j >= k) << endl; g) cout << (!m ) << endl; h) cout << (!(j - m)) << endl; i) cout << (!(k > m)) << endl; ```