Describe forums.

What will be an ideal response?


Forums (also called discussion groups and message boards) are Web pages designed to facilitate written discussions between people on specific subjects, such as TV shows, computers, movies, investing, gardening, music, photography, or politics. When a participant posts a message, it is displayed for anyone accessing the forum to read and respond to. Messages are usually organized by topics (called threads); participants can post new messages in response to an existing message and stay within that thread, or they can post discussion group messages that start new threads. Participants in forums do not have to be online at the same time because participants can post and respond to messages at their convenience.

Computer Science & Information Technology

You might also like to view...

Given the following function definition, will repeated calls to the search function for the same target find all occurrences of that target in the array?

int search(const int array[], int target, int numElements) { int index=0; bool found=false; while((!found) && (index < numElements)) { if(array[index] == target) found=true; else index++; } if(found==true) return index; else return -1; } a. Yes b. No c. Impossible to tell without looking at the values of the array d. It depends on the value of target.

Computer Science & Information Technology

Which of the following is a place where steganography can hide data?

A. in the metadata of a file B. in the directory structure of the file system C. in the hard disk master boot record D. in the file allocation table

Computer Science & Information Technology

Infrastructure operating systems are those that generally run on client workstations.

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

Computer Science & Information Technology

Due to complexity, IT generally takes longer to move offshore than manufacturing.

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

Computer Science & Information Technology