An online journal or column used to publish personal or company information in an informal manner is a ________

A) portal B) blog C) tweet D) newsfeed


B

Computer Science & Information Technology

You might also like to view...

Assume the following environment

``` #define MAX 50 int a[MAX], i, j, temp; ``` What is the effect of the following program segment? ``` temp = 0; for (i = 1; i < MAX; ++i) if (a[i] > a[0]) ++temp; ``` a. Arranges the elements of array a in ascending order. b. Counts the number of elements of array a greater than its initial element. c. Reverses the numbers stored in the array. d. Puts the largest value in the last array position. e. None of the above.

Computer Science & Information Technology

The ____ role is designed to enable the installation of Windows operating systems-Windows Vista, Windows 7, and Windows Server 2008-on multiple computers.

A. WDS B. ODS C. DHCP D. WDT

Computer Science & Information Technology

____ was born out of frustration with existing languages and environments for systems programming.

A. F# B. C# C. Go D. FORTRAN

Computer Science & Information Technology

Android Studio has responsive design templates, which allow you to build the app once, but display it on multiple devices. 

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

Computer Science & Information Technology