Add Question Here
Total Page:16
File Type:pdf, Size:1020Kb
![Add Question Here](http://data.docslib.org/img/f2cfb129eb18e8ef8abf8dd289a62966-1.webp)
Add Question Here
Question 1 True/False 1 points Modify Remove
Question The CPU is considered the "brain" of the computer. Answer True False Add Question Here
Question 2 True/False 1 points Modify Remove
Question The bus is a group of parallel wires that carry control signals and data between the other components.
Answer True False Add Question Here
Question 3 True/False 1 points Modify Remove
Question Main memory is often referred to as RAM. Answer True False Add Question Here
Question 4 True/False 1 points Modify Remove
Question All computers store values using the decimal number system. Answer True False Add Question Here
Question 5 True/False 1 points Modify Remove
Question Only one program can be stored in memory at a time. Answer True False Add Question Here
Question 6 True/False 1 points Modify Remove
Question Putting data into a particular memory address is known as a READ. Answer True False Add Question Here
Question 7 Multiple Choice 1 points Modify Remove
Question Main memory is considered volatile because Answer it may change at any time without warning. the contents of memory are lost when the computer is turned off.
the contents of memory are the same each time the computer is turned on. the memory may be easily removed from the computer. Add Question Here Question 8 Multiple Choice 1 points Modify Remove
Question Secondary storage is considered persistent because Answer it may change at any time without warning. the contents of memory are lost when the computer is turned off.
unless problems occur, the information isn't corrupted when the computer is turned off. the memory may be easily removed from the computer. Add Question Here
Question 9 Multiple Choice 1 points Modify Remove
Question Each cell of memory is numbered and that number is referred to as the cell's Answer block.
identity. address. size. Add Question Here
Question 10 Multiple Choice 1 points Modify Remove
Question A byte is composed of Answer 2 bits. 4 bits. 8 bits. 16 bits. Add Question Here
Question 11 Multiple Choice 1 points Modify Remove
Question Secondary storage refers to: Answer swap or virtual memory, which creates the illusion of more RAM on the system.
RAM. ROM. devices such as hard disks, tapes, or floppy disks. Add Question Here
Question 12 Fill in Multiple Blanks 1 points Modify Remove
Question For logical operations, we consider a 1 to be [a]______and a 0 to be [b]______.
Answers for: a on,On,ON Answers for: b OFF,Off,off Add Question Here
Question 13 True/False 1 points Modify Remove
Question The operating system gives the illusion of several jobs executing simultaneously through the use of time sharing.
Answer True False Add Question Here
Question 14 True/False 1 points Modify Remove
Question The operating system is considered applications software. Answer True False Add Question Here
Question 15 True/False 1 points Modify Remove
Question UNIX filenames are case sensitive. Answer True False Add Question Here
Question 16 True/False 1 points Modify Remove
Question The UNIX command to copy a file is 'copy' . Answer True False Add Question Here
Question 17 True/False 1 points Modify Remove
Question It is possible to have more than one operating system available to run on a single machine.
Answer True False Add Question Here
Question 18 True/False 1 points Modify Remove
Question In UNIX we can combine commands using the pipe, | . Answer True False Add Question Here
Question 19 True/False 1 points Modify Remove
Question Directories and subdirectories are hierarchical in nature. Answer True False Add Question Here
Question 20 True/False 1 points Modify Remove
Question The UNIX command to list the files in a directory is 'lst'. Answer True False Add Question Here
Question 21 True/False 1 points Modify Remove Question The UNIX command to create a new directory is 'mkdir' . Answer True False Add Question Here
Question 22 True/False 1 points Modify Remove
Question The UNIX command to delete a directory is 'del' . Answer True False Add Question Here
Question 23 True/False 1 points Modify Remove
Question The UNIX command to display the contents of a file is 'cat' . Answer True False Add Question Here
Question 24 Multiple Choice 1 points Modify Remove
Question The coordination of a computer's activities is handled by Answer the operating system. peripheral devices. the computer operator. the keyboard. Add Question Here
Question 25 Multiple Choice 1 points Modify Remove
Question Which of the following is an operating system? Answer pico emacs UNIX pine Add Question Here
Question 26 Multiple Choice 1 points Modify Remove
Question pine is an example of a(n) Answer text editor. operating system. e-mail utility. word processor. Add Question Here
Question 27 Multiple Choice 1 points Modify Remove
Question UNIX is an example of a(n) Answer text editor. operating system. e-mail utility. word processor. Add Question Here
Question 28 Multiple Choice 1 points Modify Remove
Question emacs and pico are examples of Answer text editors. operating systems. e-mail utilities. word processors. Add Question Here
Question 29 Multiple Choice 1 points Modify Remove
Question The UNIX command to delete a file is Answer mv del rm pwd Add Question Here
Question 30 Multiple Choice 1 points Modify Remove
Question The notation .. (dot-dot) refers to the Answer parent directory. current directory. child directory. home directory. Add Question Here
Question 31 Multiple Choice 1 points Modify Remove
Question The notation . (dot) refers to the Answer parent directory. current directory. child directory home directory. Add Question Here
Question 32 Fill in the Blank 1 points Modify Remove
Question The computer's start-up procedure is called ______.
Answer boot, Boot, BOOT, booting, Booting, BOOTING Add Question Here
Question 33 Fill in the Blank 1 points Modify Remove
Question Explain what the following UNIX command does. cd ______Answer changes directory Add Question Here
Question 34 Fill in the Blank 1 points Modify Remove
Question The interface between the operating system and the user is called the ______. Answer user interface, User Interface, USER INTERFACE, User interface, user Interface Add Question Here
Question 35 Fill in the Blank 1 points Modify Remove
Question The UNIX command that when typed will return what directory you are currently in is ______. Answer pwd Add Question Here
Question 36 Fill in the Blank 1 points Modify Remove
Question An example of a wildcard character used by UNIX commands is ______.
Answer * ? Add Question Here
Question 37 True/False 1 points Modify Remove
Question The study of algorithms began in the 1900's when electronic computers began to be used.
Answer True False Add Question Here
Question 38 Multiple Choice 1 points Modify Remove
Question The best definition of an algorithm is Answer a step by step solution to a problem. a finite set of unambiguous executable instructions that directs a
terminating activity. a general solution to a problem. a finite set of steps that solve a problem. Add Question Here
Question 39 Multiple Choice 1 points Modify Remove
Question The study of algorithms began Answer when the first computer was invented. as a subject in mathematics. in the 1800's. in the 1940's. Add Question Here
Question 40 Multiple Choice 1 points Modify Remove
Question The concept or meaning represented by an algorithm is known as its Answer control structure. sequence. semantics. syntax. Add Question Here Question 41 Multiple Choice 1 points Modify Remove
Question Pseudocode Answer is English phrases or formulas used to express each step of a problem. could include code structures such as If/Else or While. is a notation used to express an algorithm. is all of the above. is none of the above. Add Question Here
Question 42 True/False 1 points Modify Remove
Question 'int' is a keyword in C. Answer True False Add Question Here
Question 43 True/False 1 points Modify Remove
Question In the C programming language, variable names can have at most 8 characters.
Answer True False Add Question Here
Question 44 True/False 1 points Modify Remove
Question A function with return type 'void' always returns the value '0'. Answer True False Add Question Here
Question 45 True/False 1 points Modify Remove
Question The preprocessor directive '#include ' instructs the preprocessor to place the contents of the file 'foo.h' into the code at that point.
Answer True False Add Question Here
Question 46 True/False 1 points Modify Remove
Question The '#include' preprocessor directive is used to insert one file into another.
Answer True False Add Question Here
Question 47 True/False 1 points Modify Remove
Question The preprocessor directive #define RING 1 tells the C preprocessor to replace each occurrence of the constant RING with 1. Answer True False Add Question Here
Question 48 True/False 1 points Modify Remove
Question All variables must be declared and given a type before they are used Answer True False Add Question Here
Question 49 True/False 1 points Modify Remove
Question You must use the newline ('\n') character to start printing at the beginning of the next line.
Answer True False Add Question Here
Question 50 True/False 1 points Modify Remove
Question A C program that prints three lines of output must contain three 'printf' statements.
Answer True False Add Question Here
Question 51 True/False 1 points Modify Remove
Question '3d' is a legal identifier in C Answer True False Add Question Here
Question 52 True/False 1 points Modify Remove
Question '__yes' is NOT a legal identifier in C Answer True False Add Question Here
Question 53 True/False 1 points Modify Remove
Question 'me_to-2' is a legal identifier in C. Answer True False Add Question Here
Question 54 True/False 1 points Modify Remove
Question 'XyYzZx' is a legal identifier in C. Answer True False Add Question Here Question 55 True/False 1 points Modify Remove
Question 'star*it' is a NOT legal identifier in C. Answer True False Add Question Here
Question 56 True/False 1 points Modify Remove
Question 'main' is a legal identifier in C. Answer True False Add Question Here
Question 57 True/False 1 points Modify Remove
Question 'ABC123' is a legal identifier in C. Answer True False Add Question Here
Question 58 True/False 1 points Modify Remove
Question 'm' is NOT a legal identifier in C. Answer True False Add Question Here
Question 59 True/False 1 points Modify Remove
Question 'money$' is a legal identifier in C. Answer True False Add Question Here
Question 60 True/False 1 points Modify Remove
Question If a is a variable of type int, the statement a = 17.76 is an expression with type int and value 17.
Answer True False Add Question Here
Question 61 True/False 1 points Modify Remove
Question If a is a variable of type int, the statement a = 17.76 is an expression with type double and value 17.76.
Answer True False Add Question Here
Question 62 True/False 1 points Modify Remove Question If a is a variable of type int, the statement a = 17.76 is an expression with type double and value 17.
Answer True False Add Question Here
Question 63 True/False 1 points Modify Remove
Question The statement printf("%d\n", 3, 5); prints the number 3 five times. Answer True False Add Question Here
Question 64 True/False 1 points Modify Remove
Question '1more' is a legal identifier in C Answer True False Add Question Here
Question 65 True/False 1 points Modify Remove
Question 'to_dec' is a legal identifier in C Answer True False Add Question Here
Question 66 True/False 1 points Modify Remove
Question 'forget-it' is a legal identifier in C Answer True False Add Question Here
Question 67 True/False 1 points Modify Remove
Question 'hex2dec' is a legal identifier in C. Answer True False Add Question Here
Question 68 True/False 1 points Modify Remove
Question 'floater' is a legal identifier in C. Answer True False Add Question Here
Question 69 True/False 1 points Modify Remove
Question 'horrendous' is a legal identifier in C. Answer True False Add Question Here
Question 70 True/False 1 points Modify Remove
Question 'rub-a-dub-dub' is not a legal identifier in C. Answer True False Add Question Here
Question 71 True/False 1 points Modify Remove
Question 'Let_it_be_me' is not a legal identifier in C. Answer True False Add Question Here
Question 72 True/False 1 points Modify Remove
Question 'two+four' is not a legal identifier in C. Answer True False Add Question Here
Question 73 True/False 1 points Modify Remove
Question 'UPPER' is not a legal identifier in C. Answer True False Add Question Here
Question 74 True/False 1 points Modify Remove
Question 'l_o_n_g' is not a legal identifier in C. Answer True False Add Question Here
Question 75 True/False 1 points Modify Remove
Question '_3angle' is not a legal identifier in C. Answer True False Add Question Here