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

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 Basic requires Microsoft Excel to be installed, while Advanced does not.
B. Excel Basic can only read CSV files, while Advanced reads XLSX.
C. Excel Advanced requires Microsoft Excel to be installed, while Basic does not.
D. Excel Basic supports macros, while Advanced does not.

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 column names and should not be processed as data.
B. The first row of the data contains formatting styles.
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. Activate Sheet
B. Run Macro
C. Get All Cells
D. Open/Connect

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

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

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

A. .csv
B. .exe
C. .xls
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. 5C
B. C5
C. E3
D. Row3Col5

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

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

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. 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. Delete the original file automatically.
B. Save the current workbook with a new name or different file format.
C. Save the workbook to the cloud without a local copy.
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 typing the code into cell A1.
B. By using the 'Run Macro' action.
C. By converting the file to a text file.
D. By using the 'Calculate Formula' action.

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

A. The scanning camera resolution.
B. The text, URL, or data to be encoded.
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. Generate QR Code
B. Scan/Read QR Code
C. OCR to Text
D. Image Resize

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

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

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

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

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

A. It renames the file to avoid duplicates.
B. It automatically creates the file if it is missing.
C. It checks if the file has a virus.
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. Sort Data
B. Find and Replace
C. Filter/AutoFilter
D. Merge Cells

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

A. While loop
B. Loop for each file in folder
C. Loop n times
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 existing folder is deleted.
B. The bot usually ignores the command or returns an error depending on configuration.
C. All files inside the folder are duplicated.
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 read the value of a cell.
C. To delete the cell row.
D. To lock the cell format.

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. Using only the filename without a path.
C. Hardcoding C:\Users\JohnDoe\Documents\file.txt
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. Permanent data loss if the wrong path pattern is provided.
D. The file might be too large to delete.

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

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

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

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

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

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

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

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

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

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

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. Sending an email.
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. Manually search with Ctrl+F.
B. Use keystrokes to type VLOOKUP.
C. Use Database actions to treat the Excel file as a database and run a SQL query.
D. Use Excel Advanced 'VLOOKUP' formula.

33 What is a CSV file?

A. Complex Sheet View
B. Comma Separated Values
C. Computer System Video
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 bot automatically compresses the text.
B. It generates multiple QR codes automatically.
C. It prints the text below the QR code.
D. The action typically fails or throws an error.

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 locates the Excel application.
B. It finds a file on the hard drive and replaces it.
C. It finds the sum of a column.
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. A PDF document with text.
B. A Word document.
C. An Excel spreadsheet.
D. An image file format (PNG, JPG, BMP).

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

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

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

A. To activate a specific cell.
B. To format the cell.
C. To find the last used row.
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. Excel may store dates as serial numbers (e.g., 44195), requiring conversion to be human-readable.
B. RPA bots cannot read numbers.
C. Dates usually take up too much memory.
D. Dates are automatically deleted after 24 hours.

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

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

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

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

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

A. It changes the cell color.
B. It reads the value of the cell.
C. It moves the active cursor focus to a specific cell address.
D. It deletes 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. Opening the application.
D. Saving the file.

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

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

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 bot writes the text '=A1*B1' as a string literal.
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. Get File Info / Properties
C. Resize File
D. Read File

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. Move File
C. Rename File to .pdf
D. Zip 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 deletes the Excel application.
D. It saves the data twice.

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

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