GuideFoot - Learn Together, Grow Smarter. Logo

Questions in computers-and-technology

📝 Answered - Which step is important to do before beginning the troubleshooting process in an AV system? A) Familiarize yourself with the system and equipment B) Call the manufacturer immediately C) Begin replacing random components D) Ignore the system's documentation

📝 Answered - 5. Answer the following questions: a. What is word processing software? Give two examples. b. What is MS-Word? c. Write down some features of MS-Word. d. What is header and footer? e. List out the components of MS Word Window. f. List out the tabs available in the Ribbon. g. What is formatting the text? h. What is bullet and numbering? i. What is superscript and subscript? j. What is alignment in the Word? Write its types. Lab work and activity: Activity 1: Create a Personal Profile Skills Covered: Inserting text, formatting text, and inserting pictures Instructions: 1. Open Microsoft Word and create a new document. 2. Type your name, grade, school name, and a short paragraph about yourself. 3. Change the font style, size, and color of your name.

📝 Answered - What document is included in the problem management artifacts? A. Incident history spreadsheet B. RACI spreadsheet C. Change request forms D. ITIL guidebook

📝 Answered - Which of the following are Microsoft tools you can use to manage and administer Windows networks and Windows Applications? Select two best answers. A. Command Prompt (cmd.exe) B. PowerShell C. C# D. MMC E. Bash F. Visual Studio Code

📝 Answered - An electric device delivers a current of [tex]$15.0 A$[/tex] for 30 seconds. How many electrons flow through it?

📝 Answered - The Information Technology Infrastructure Library (ITIL) is a collection of methods and practices primarily for A. managing the security infrastructure B. developing secure Web applications C. managing the development and operation of IT infrastructures D. operation of IT control systems to improve security

📝 Answered - Data Alert Designer is: A. Browser based Silverlight application B. Windows application that is deployed as part of SSRS C. Both D. None

📝 Answered - What is the output of the program below? total_classes = 100 attended_classes = 67 attendance = (attended_classes/total_classes)*100 if attendance >= 75: print ("You are eligible to appear for the test.") else: print ("Sorry, you are ineligible to appear for the test.") Options: - You are eligible to appear for the test. - Type Error - Value Error - Sorry, you are ineligible to appear for the test.

📝 Answered - What are two protocol options for transporting Fibre Channel over an IP network? (Choose two.) (A) iSNS (B) FCAL (C) FCLP (D) iFCP

📝 Answered - What is the output for this code? ```python if 'bin' in {'float': 1.2, 'bin': 0b010}: print('a') print('b') print('c') ```