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

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

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

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

A. Excel Advanced requires Microsoft Excel to be installed, while Basic does not.
B. Excel Basic supports macros, while Advanced 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 file is password protected.
C. The bot should add a header row to the output file.
D. The first row of the data contains column names and should not be processed as data.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

A. Merge Files
B. Encrypt Files
C. Concat Text
D. Zip/Compress 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 renames the file to avoid duplicates.
C. It automatically creates the file if it is missing.
D. It prevents errors by ensuring a file is present before attempting to read or move it.

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 row in CSV
C. Loop for each file in folder
D. While loop

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

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

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

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

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

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

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

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

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

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

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

A. Delete Row
B. Delete Worksheet
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 speed of the processor.
B. The color of the ink used.
C. The file name of the image.
D. The version (size of the grid) and error correction level.

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

A. Opens the file for editing.
B. Duplicates a file from Source to Destination, keeping the Source intact.
C. Renames a file.
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. Number
B. DataTable / Table
C. String
D. Boolean

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 guessing based on file size.
C. It is not possible to check extensions.
D. By opening the file and checking the header.

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

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

31 Which of the following is a File Management operation?

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

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. Use keystrokes to type VLOOKUP.
D. Manually search with Ctrl+F.

33 What is a CSV file?

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

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

A. The action typically fails or throws an error.
B. It generates multiple QR codes automatically.
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. Create File
B. Rename File
C. Copy File
D. Move File

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

A. It finds the sum of a column.
B. It locates the Excel application.
C. It finds a file on the hard drive and replaces it.
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 PDF document with text.
D. A Word document.

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

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

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

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

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

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

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 each row in worksheet/dataset
C. If/Else statement
D. Loop: For n times

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

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

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. Trimming whitespace from text in a column.
B. Saving the file.
C. Opening the application.
D. Closing the session.

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

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

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

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

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

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

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

A. Zip File
B. Rename File to .pdf
C. Excel: Save As (type PDF) or Export 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 saves the data twice.
B. It deletes the Excel application.
C. It acts as a cleanup step to ensure no orphaned Excel processes consume memory.
D. It speeds up the internet connection.

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

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