Which of the following is the Google developed open-source format for video?

A. AVI
B. MOV
C. MP4
D. WebM


Answer: D

Computer Science & Information Technology

You might also like to view...

A ________ is processed in a manner similar to customers standing in a grocery check-out line: The first customer in line is the first served.

A) stack B) vector C) queue D) All of the above E) None of the above

Computer Science & Information Technology

For this iterator which of the following is correct? If correct what does the expression produce?

Suppose we have the following definition: ``` vector vec; // use push_back to put 10 values into vec here. vector::iterator itr1, itr2,itr3; itr1 = vec.begin(); itr2 = vec.begin() + 5; itr3 = vec.end(); ``` a) *iter1 b) itr2[3] c) itr + 3 >>>there is no itr, Do you mean itr3? d) itr – 3 e) itr3 – itr1 (if valid, what does this produce?) >>You asked for what is produced for all of them in intro to question

Computer Science & Information Technology

A double value can be implicitly converted to a(n) _________ .

a) int b) float c) long d) None of the above.

Computer Science & Information Technology

Which of the following is the chipset used by the CPU to communicate with the system memory?

A. VLBUS B. ASIC C. Southbridge D. Northbridge

Computer Science & Information Technology