GuideFoot - Learn Together, Grow Smarter. Logo

Questions in computers-and-technology

📝 Answered - Rename column 'Pld' to 'PlayerId' in table Player.

📝 Answered - To contact people using the Internet, you most often use their A. domain names B. usernames C. e-mail addresses D. passwords

📝 Answered - Which of the following is NOT a typical result of the integration of computers and automation in the manufacturing industry? A. The operator's job is safer B. Production decreases but has higher quality C. Product consistency is ensured D. Throughput is increased

📝 Answered - What is an advantage of using blockchain technology? Choose one of the following. A) Data and transactions are decentralized and distributed among participants in the network. B) The system creates a hash or digital fingerprint for each participant in the blockchain. C) All transactions must be approved by a single and impartial third party or authority. D) None of the participants are notified when changes are made to data stored in previous blocks.

📝 Answered - Which of the following contains a message server? A. Dialog Instance B. Central Instance C. Client Instance D. Both Dialog and Central Instances

📝 Answered - 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

📝 Answered - 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

📝 Answered - 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?

📝 Answered - 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

📝 Answered - 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.