Unit 3 - Practice Quiz

INT346 50 Questions
0 Correct 0 Wrong 50 Left
0/50

1 In the context of Robotic Process Automation (RPA), what is the primary function of a Package?

A. To compress files into a ZIP format for storage.
B. To create a graphical user interface for the end-user.
C. To bundle a specific set of actions or commands needed to perform tasks in a bot.
D. To encrypt data during transmission between the bot and the control room.

2 When integrating package actions into a bot, why is version control of the package important?

A. It automatically converts Excel files to PDF.
B. It increases the execution speed of the bot by .
C. It ensures the bot utilizes the correct set of features and bug fixes compatible with the existing code.
D. It is required to change the programming language of the bot.

3 Which of the following acts as the primary difference between 'Excel Basic' and 'Excel Advanced' packages in many RPA tools?

A. Excel Basic supports macros, while Advanced does not.
B. Excel Advanced requires Microsoft Excel to be installed, while Basic does not.
C. Excel Basic requires Microsoft Excel to be installed, while Advanced does not.
D. Excel Basic can only read CSV files, while Advanced reads XLSX.

4 When using an Excel action to read data, what does the 'Contains Header' option usually signify?

A. The first row of the data contains formatting styles.
B. The first row of the data contains column names and should not be processed as data.
C. The file is password protected.
D. The bot should add a header row to the output file.

5 Which action is required to initiate any read or write operation in an Excel Advanced session?

A. Open/Connect
B. Run Macro
C. Get All Cells
D. Activate Sheet

6 In Excel Automation, what is a 'Session Name' used for?

A. To serve as a unique identifier linking multiple actions to a specific open workbook.
B. To define the user credentials for logging into Windows.
C. To name the output PDF file.
D. To calculate formulas within the spreadsheet.

7 Which file extension is NOT typically supported by standard Excel Basic file operations?

A. .exe
B. .xlsx
C. .xls
D. .csv

8 To read a specific data point from the intersection of the 3rd column and 5th row, which cell reference is used?

A. E3
B. 5C
C. C5
D. Row3Col5

9 What is the result of the 'Get Single Cell' action in an RPA Excel package?

A. It deletes the content of the cell.
B. It merges the cell with the one next to it.
C. It retrieves the value from a specified cell and stores it in a variable.
D. It changes the background color of the cell.

10 Which technique is most efficient for processing a large dataset (e.g., rows) in Excel Automation?

A. Using the 'Get All Cells' action to load data into a DataTable variable and processing in memory.
B. Opening and closing the file for every single row.
C. Taking a screenshot of every page.
D. Looping through each row and reading cells one by one.

11 What does the 'Save As' action allow a bot to do?

A. Only save the changes in the current file.
B. Save the workbook to the cloud without a local copy.
C. Save the current workbook with a new name or different file format.
D. Delete the original file automatically.

12 In Excel Advanced, how can a bot execute complex pre-written VBA code?

A. By converting the file to a text file.
B. By using the 'Run Macro' action.
C. By typing the code into cell A1.
D. By using the 'Calculate Formula' action.

13 When generating a QR Code using RPA, what is the primary input required?

A. The text, URL, or data to be encoded.
B. The scanning camera resolution.
C. The color of the QR code.
D. The printer name.

14 Which action is used to interpret the information contained within a QR code image file?

A. Scan/Read QR Code
B. OCR to Text
C. Generate QR Code
D. Image Resize

15 Which of the following is a valid output format when using a 'Generate QR Code' action?

A. An image file (e.g., .png or .jpg)
B. A spreadsheet (.xlsx)
C. An audio file (.mp3)
D. A text file (.txt)

16 In File Operations, which action is used to combine multiple files into a compressed archive?

A. Merge Files
B. Zip/Compress Files
C. Concat Text
D. Encrypt Files

17 Why is the 'If File Exists' condition critical in file automation workflows?

A. It checks if the file has a virus.
B. It prevents errors by ensuring a file is present before attempting to read or move it.
C. It renames the file to avoid duplicates.
D. It automatically creates the file if it is missing.

18 Which Excel action allows you to filter rows based on specific criteria (e.g., Age )?

A. Filter/AutoFilter
B. Find and Replace
C. Merge Cells
D. Sort Data

19 To iterate through every file within a specific folder, which loop construct is used?

A. Loop n times
B. Loop for each file in folder
C. While loop
D. Loop for each row in CSV

20 When writing data to a text file, what does the 'Append' option do?

A. Overwrites the existing content of the file.
B. Deletes the file before writing.
C. Creates a new file with a timestamp.
D. Adds the new data to the end of the existing content without deleting it.

21 What happens if a bot attempts to 'Create Folder' using a path that already exists?

A. The bot usually ignores the command or returns an error depending on configuration.
B. All files inside the folder are duplicated.
C. The existing folder is deleted.
D. The computer restarts.

22 In Excel Advanced, what is the purpose of the 'Set Cell' action?

A. To write a value or formula into a specific cell.
B. To delete the cell row.
C. To read the value of a cell.
D. To lock the cell format.

23 Which of the following creates a robust file path reference that works across different users' machines?

A. Assuming the file is always on the Desktop.
B. Using system variables like \Documents\file.txt
C. Hardcoding C:\Users\JohnDoe\Documents\file.txt
D. Using only the filename without a path.

24 When deleting files, what is the primary risk of using the 'Delete File' action in RPA?

A. Permanent data loss if the wrong path pattern is provided.
B. It converts the file to a shortcut.
C. The file might be too large to delete.
D. It requires internet access.

25 Which Excel action is used to remove a specific worksheet from a workbook?

A. Delete Worksheet
B. Delete Row
C. Remove Column
D. Clear Cells

26 In the context of QR codes, what determines the amount of data that can be stored?

A. The version (size of the grid) and error correction level.
B. The color of the ink used.
C. The speed of the processor.
D. The file name of the image.

27 What is the function of 'Copy File' action?

A. Opens the file for editing.
B. Renames a file.
C. Duplicates a file from Source to Destination, keeping the Source intact.
D. Moves a file from Source to Destination, removing it from Source.

28 Which variable type is most appropriate to store the data retrieved from an 'Excel: Get All Cells' action?

A. Boolean
B. Number
C. String
D. DataTable / Table

29 How can a bot identify the extension of a file during a file loop?

A. By using the dictionary key associated with the file extension (e.g., ).
B. By opening the file and checking the header.
C. It is not possible to check extensions.
D. By guessing based on file size.

30 What does the 'Close' action in Excel Automation allow the user to define?

A. Whether to save changes or discard them.
B. Which font to use for the next session.
C. The password for the computer.
D. The color of the closed window.

31 Which of the following is a File Management operation?

A. Sending an email.
B. Summing column A.
C. Scanning a QR code.
D. Renaming a folder.

32 If you need to perform a VLOOKUP operation without opening the Excel UI, which approach is best?

A. Use Excel Advanced 'VLOOKUP' formula.
B. Use Database actions to treat the Excel file as a database and run a SQL query.
C. Manually search with Ctrl+F.
D. Use keystrokes to type VLOOKUP.

33 What is a CSV file?

A. Compiled Source Value
B. Complex Sheet View
C. Comma Separated Values
D. Computer System Video

34 When generating a QR code, what happens if the input text exceeds the capacity of the selected QR version?

A. It generates multiple QR codes automatically.
B. The action typically fails or throws an error.
C. The bot automatically compresses the text.
D. It prints the text below the QR code.

35 Which package action would you use to change the location of a file from Folder A to Folder B?

A. Move File
B. Copy File
C. Create File
D. Rename File

36 In Excel Advanced, what is the effect of 'Find and Replace'?

A. It finds a file on the hard drive and replaces it.
B. It finds the sum of a column.
C. It locates the Excel application.
D. It searches for specific content within the spreadsheet and replaces it with new content.

37 To read a QR code, the input file typically must be:

A. An Excel spreadsheet.
B. An image file format (PNG, JPG, BMP).
C. A Word document.
D. A PDF document with text.

38 Which File Operation is used to organize multiple files into a new hierarchical structure?

A. Print Files
B. Create Folder
C. Read Files
D. Zip Files

39 What is the purpose of the 'Get Active Cell' action?

A. To find the last used row.
B. To format the cell.
C. To activate a specific cell.
D. To retrieve the value from the currently selected or highlighted cell in the Excel UI.

40 When working with date values in Excel via RPA, why is it important to handle format correctly?

A. RPA bots cannot read numbers.
B. Excel may store dates as serial numbers (e.g., 44195), requiring conversion to be human-readable.
C. Dates are automatically deleted after 24 hours.
D. Dates usually take up too much memory.

41 Which action allows a bot to iterate through data in an Excel sheet row by row?

A. Loop: While x < y
B. Loop: For n times
C. Loop: For each row in worksheet/dataset
D. If/Else statement

42 What is the primary benefit of using System Variables (like ) in File Operations?

A. They allow the bot to be portable across different environments without changing hardcoded paths.
B. They encrypt the file names.
C. They increase the file size.
D. They make the bot code shorter.

43 In Excel, what does the 'Go to Cell' action do?

A. It changes the cell color.
B. It deletes the cell.
C. It moves the active cursor focus to a specific cell address.
D. It reads the value of the cell.

44 Which of the following is considered a Data Manipulation technique in Excel automation?

A. Closing the session.
B. Trimming whitespace from text in a column.
C. Saving the file.
D. Opening the application.

45 When using 'Rename File', what must remain unique in the destination folder?

A. The file size.
B. The file creation date.
C. The file name.
D. The file content.

46 What is the result of using a formula like =A1*B1 in the 'Set Cell' action?

A. Excel calculates the product of values in A1 and B1 and displays the result.
B. The cells A1 and B1 are deleted.
C. The bot writes the text '=A1*B1' as a string literal.
D. The bot crashes.

47 Which action checks the size of a file before emailing it?

A. Read File
B. Resize File
C. Open File
D. Get File Info / Properties

48 To convert an Excel file to PDF using RPA, which command is commonly used?

A. Excel: Save As (type PDF) or Export to PDF
B. Zip File
C. Rename File to .pdf
D. Move File

49 What is the main advantage of using 'Close All Excel Windows' at the end of a bot run?

A. It speeds up the internet connection.
B. It acts as a cleanup step to ensure no orphaned Excel processes consume memory.
C. It saves the data twice.
D. It deletes the Excel application.

50 When scanning a QR code containing a URL, the output is typically:

A. An image of the website.
B. A Boolean value (True/False).
C. The website opens automatically.
D. A string variable containing the URL address.