JY CHEN - Ask Anything, Learn Everything. Logo

Questions in computers-and-technology

[Free] Which of the following contains a message server? A. Dialog Instance B. Central Instance C. Client Instance D. Both Dialog and Central Instances

[Free] What is required to create a field generation prompt template using Prompt Builder? A) Template Name B) Recipient Object C) Object D) A and B E) A and C

[Free] What is the definition of the Internet? A) The World Wide Web B) A Public Network Of Computers C) A Fake Network Used To Catch Hackers D) A Private Network Of Computers

[Free] I. Let's Recall! (Vocabulary Matching) Match the tool to its correct use. Write the letter of your answer on the blank. A. Removes dust and debris B. Used for hardware repair C. Captures or scans artwork D. Measures electrical parameters E. Creates 3D art and animations 1. Cleaning Kits 2. Screwdrivers and Pliers 3. Digital Cameras and Scanners 4. Multimeters 5. 3D Modeling Software II. Let's Understand! (Multiple Choice) Choose the best answer. Write the letter only. 6. What tool helps protect you from static electricity when repairing a computer? A. Cable Tester B. Anti-static Wristband C. Screwdriver D. Drawing Pad Answer: _____ 7. Which tool is used to diagnose problems in a computer system? A. Graphic Design Software B. Diagnostic Software C. Drawing Tablet D. 3D Software Answer: _____ 8. What device allows an artist to draw directly into a computer? A. Mouse B. Scanner C. Drawing Pad D. Cable Tester Answer: _____ 9. Which of the following is an example of graphic design software? A. Blender B. Photoshop C. File Explorer D. Disk Cleanup Answer: _____ 10. What is the purpose of a cable tester? A. To draw illustrations B. To take photographs C. To test network connections D. To install applications Answer: _____ III. Let's Reflect! (Short Answer) Answer in 1-2 sentences. 11. Why is it important to keep computer hardware clean and free of dust? 12. How can using a drawing tablet help a digital artist?

[Free] Conventional personal computers that are designed to fit on or next to a desk are often referred to as A. laptop computers B. office computers C. desktop computers D. processor computers

[Free] 9) L is a list of names. Create a list P of names that contain only those names in L that begin with a capital letter. Select all correct implementations. [MSQ] 1 P = [name for name in L if 'a' <= name[0] <= 'z'] 1 P = [name for name in L if 'A' <= name[0] <= 'Z'] 1 P = [] 2 for name in L: 3 if 'A' <= name[0] <= 'Z': 4 P.append(name) 10) Accept a sequence of comma-separated strings as input from the user and populate a list of strings that do not have the letter 'e' in them. Print this list as output to the console. Select all snippets of code that achieve this. [MSQ] 1 P = input().split(',') 2 L = [] 3 for word in P: 4 if 'e' not in word: 5 L.append(word) 6 print(L) 1 L = [word for word in input().split(',') if 'e' not in word] 2 print(L) 1 print([word for word in input().split(',') if 'e' not in word]) 11) Consider the following snippet of code. 1 def minmax(a, b): 2 if a <= b: 3 return a, b 4 return b, a x is a real number. When minmax(x, x) is called, which return statement in the function is executed? The return statement in line-3 which is inside the if-block. The return statement in line-4 which is outside the if-block. Both the return statements are executed. Neither return statement is executed.

[Free] In terms of computing, what does CPU stand for? A) Computer Protection Universe B) Cost Per Unit C) Computer Practical Unit D) Central Processing Unit

[Free] What term is used to refer to a public website that anyone can edit? A) Wonkie B) BitBin C) Blog D) Wiki

[Free] Write NET if the statement is about the Internet, and WWW if it is about the Web. 1. It enables file transfer. 2. It contains information about various topics. 3. It utilizes special languages such as HTML. 4. It uses computers and mobile devices to access services. 5. It is a network of computers. 6. It is a software that allows a user to see web pages. 7. It allows a person to communicate with friends all over the world. 8. It enables a user to search for a person's profile. 9. It refers to the contents found in interconnected computers. 10. It allows users to play online games.

[Free] Which subnet is used for Condensing Tokens in BitMind? A. Subnet 34 B. Subnet 22 C. Subnet 47 D. Subnet 1