SAP Caa - SAP Bo Web Intelligence Xi 3.X

Reviewed by Editorial Team
The ProProfs editorial team is comprised of experienced subject matter experts. They've collectively created over 10,000 quizzes and lessons, serving over 100 million users. Our team includes in-house content moderators and subject matter experts, as well as a global network of rigorously trained contributors. All adhere to our comprehensive editorial guidelines, ensuring the delivery of high-quality content.
Learn about Our Editorial Process
| By CRTH
C
CRTH
Community Contributor
Quizzes Created: 1 | Total Attempts: 1,689
| Attempts: 1,689 | Questions: 152
Please wait...
Question 1 / 152
0 %
0/100
Score 0/100
1. Which three calculations can you use in a measure object in Web Intelligence? (Choose three.)

Explanation

In Web Intelligence, a measure object is used to perform calculations on data. The three calculations that can be used in a measure object are Min, Max, and Count. The Min calculation returns the smallest value in a set of data, the Max calculation returns the largest value, and the Count calculation returns the number of values in a set of data. These calculations are commonly used to analyze and summarize data in reports or visualizations.

Submit
Please wait...
About This Quiz
SAP Quizzes & Trivia

SAP Certified Application Associate - SAP BusinessObjects Web Intelligence XI 3. X

2. Which panel should you use to create sub-queries?

Explanation

The correct answer is "Query Panel". The Query Panel is used to create sub-queries in order to retrieve specific data from a database. This panel allows users to define and customize their queries by selecting the desired fields, applying filters, and specifying sorting criteria. By using the Query Panel, users can create complex queries and retrieve the exact data they need for analysis or reporting purposes.

Submit
3. How many blocks can you create in a Web Intelligence document (WID)?

Explanation

There is no limit to the number of blocks that can be created in a Web Intelligence document. This means that users can create as many blocks as needed to organize and present their data effectively.

Submit
4. Which Pos() function syntax should you use to find the location of the space in the Category string "Evening wear"?

Explanation

The correct answer is "Pos([Category] ; " " )". This syntax is using square brackets to reference the Category field and a semicolon to separate the field and the space character that we want to find the location of.

Submit
5. In the creation of a document, you have to import a personal data file. The data file contains date information, but when the file is imported, the dates are imported as character strings. Which function should you use to change the format from string to date?

Explanation

The function "ToDate()" should be used to change the format from string to date. This function is specifically designed to convert character strings into date format.

Submit
6. Which three object types can you use in a Web Intelligence universe query? (Choose three.)

Explanation

In a Web Intelligence universe query, you can use three object types: Detail, Measure, and Dimension. Detail objects provide specific information about a data point, Measure objects perform calculations on data, and Dimension objects provide context or grouping for data analysis. These three object types allow users to retrieve and analyze data effectively in a Web Intelligence universe query.

Submit
7. Which function would you use to extract the word "pants" from the product name "casual pants" of the Product Name field?

Explanation

The correct answer is "Right([Product Name]; 5)". The Right function is used to extract a specified number of characters from the right side of a text string. In this case, it is used to extract the last 5 characters from the "Product Name" field, which would be the word "pants".

Submit
8. Which three elements are parts of a query filter? (Choose three.)

Explanation

The three elements that are parts of a query filter are Object, Operator, and Operand. The Object refers to the attribute or field that is being filtered, the Operator defines the comparison or condition to be applied, and the Operand is the value or criteria that is used for the comparison. These three elements work together to specify the conditions that must be met in order for a query to return the desired results.

Submit
9. Which object types can you merge when using Multi Queries in a Web Intelligence document (WID)?

Explanation

When using Multi Queries in a Web Intelligence document, you can merge objects of the same type, specifically Dimension - Dimension. This means that you can merge two dimensions together to create a combined result. Merging other object types such as Dimension - Detail, Measure - Measure, or Dimension - Measure is not possible in this scenario.

Submit
10. Which three objects represent qualifications from a local data provider? (Choose three.)

Explanation

The three objects that represent qualifications from a local data provider are DATE, TEXT, and NUMBER. These are commonly used data types to represent qualifications in a database. DATE is used to store dates, TEXT is used to store textual data, and NUMBER is used to store numerical data. BLOB, on the other hand, is used to store large binary objects such as images or files and is not typically used to represent qualifications.

Submit
11. You are creating a report to summarize the number of cars sold by region. Which object should you use to aggregate the number of cars sold?

Explanation

To aggregate the number of cars sold by region in a report, you should use a "Measure" object. A Measure is used to perform calculations and aggregate data, such as summing up the number of cars sold. It allows you to apply mathematical operations to the data and provide meaningful insights by summarizing the information. Therefore, using a Measure object would be the appropriate choice in this scenario.

Submit
12. Which BusinessObjects Enterprise tool supports Offline Mode logins?

Explanation

The Web Intelligence Rich Client supports Offline Mode logins in BusinessObjects Enterprise. This means that users can access and work with their reports and data even when they are not connected to the network or internet. The client allows users to download and save reports locally, and then access and modify them offline. Once the user reconnects to the network, any changes made offline can be synchronized with the server. This feature provides flexibility and convenience for users who need to access and work with their reports while on the go or in areas with limited connectivity.

Submit
13. Where is a Web Intelligence variable stored?

Explanation

A Web Intelligence variable is stored in the document. This means that the variable is saved within the specific Web Intelligence document where it is created and can be accessed and used within that document only. It is not stored in the cell, Metadata Cube, or the Central Management Server (CMS).

Submit
14. Where should you configure the regional settings of a Web Intelligence document (WID) within InfoView?

Explanation

In InfoView, the regional settings of a Web Intelligence document can be configured in the InfoView Preferences. This allows the user to set the desired regional settings for their specific needs, such as language, date format, currency, and number format. By configuring these settings in InfoView Preferences, the user ensures that the Web Intelligence document will be displayed according to their preferred regional settings.

Submit
15. Which sort option should you use to add Temporary Values?

Explanation

To add temporary values, you should use the "Custom Sort" option. This option allows you to manually define the order in which the values should be sorted. Unlike ascending or descending sort, which permanently rearrange the values, custom sort allows you to temporarily organize the values in a specific way without permanently altering their original order. This can be useful when you need to group or prioritize certain values for a specific purpose or analysis.

Submit
16. A variable in your report contains the statement: =If[State] = "California" Then [Sales revenue] * 1.05 Else If[State] = "Colorado" Then [Sales revenue] * 1.1 Else If[State] InList ("DC";"Texas ") Then [Sales revenue] * 1.15 Else If[State] = "Massachusetts" Then [Sales revenue] * 1.18 Else [Sales revenue] Sales revenue for Florida is $1,879,159. Which rate is applied to the Florida revenue by the formula?

Explanation

The formula contains multiple conditions to determine the rate applied to the sales revenue. However, none of these conditions match with the state "Florida". Therefore, the default rate of 1.00 is applied to the Florida revenue.

Submit
17. Which type of relationship links sub-queries by default?

Explanation

The correct answer is AND because when sub-queries are linked using the AND operator, both conditions need to be true for the overall query to return a result. This means that the result set will only include records that satisfy both sub-queries.

Submit
18. Which function would you use to extract the word "casual" from the product name "casual pants" of the Product Name field?

Explanation

The function "Left([Product Name]; 5)" would be used to extract the word "casual" from the product name "casual pants" of the Product Name field. This function takes the leftmost characters of a string, and in this case, it would take the first 5 characters of the product name.

Submit
19. Which option can you use to convert a table block into a chart in Web Intelligence Rich Client?

Explanation

In Web Intelligence Rich Client, to convert a table block into a chart, you can right-click the table block and select "Turn To". This option allows you to transform the table block into a chart format.

Submit
20. Which two operators are used as calculation context operators? (Choose two.)

Explanation

The operators "In" and "Where" are used as calculation context operators. The "In" operator is used to specify a set of values that a column must match in a query. The "Where" operator is used to filter the rows in a query based on a specified condition. Both operators are commonly used in SQL queries to manipulate and retrieve data from a database.

Submit
21. You are creating a report to summarize the number of cars sold by region. Which object should you use to aggregate the number of cars sold?

Explanation

To aggregate the number of cars sold by region, you should use the "Measure" object. Measures are used to calculate aggregated values based on the data in a dataset. In this case, you want to calculate the total number of cars sold, which is an aggregated value. Therefore, using the Measure object will allow you to perform the necessary calculations and summarize the data by region.

Submit
22. For what purposes can you use the Page Layout of a report? Note: There are 2 correct answers to this question.

Explanation

The Page Layout of a report can be used to define how the report will look like in PDF mode and when printed. It allows the user to customize the formatting and arrangement of the report elements specifically for these purposes.

Submit
23. Which three options are default page number cells? (Choose three.)

Explanation

The three default page number cells are "Page Number," "Total Number of Pages," and "Page Number / Total Pages." These options allow users to easily insert and display page numbers in a document. "Page Number" shows the current page number, "Total Number of Pages" displays the total number of pages in the document, and "Page Number / Total Pages" shows the current page number and the total number of pages in the document together.

Submit
24. Which four authentication methods are available for Web intelligence Rich Client? (Choose four.)

Explanation

The correct answer is AD, NT, LDAP, and Enterprise. These four authentication methods are available for Web Intelligence Rich Client. AD refers to Active Directory, which is a directory service provided by Microsoft. NT refers to Windows NT authentication, which is a legacy authentication method used by older versions of Windows. LDAP stands for Lightweight Directory Access Protocol and is a protocol used for accessing and managing directory information. Enterprise refers to the Enterprise authentication method, which is a custom authentication method specific to the organization's infrastructure. Vintella and Kerberos are not mentioned as available authentication methods for Web Intelligence Rich Client.

Submit
25. Which reporting tool should you use to create a Web Intelligence document (WID) directly from an Excel data source?

Explanation

The Web Intelligence Rich Client is the correct reporting tool to use in order to create a Web Intelligence document directly from an Excel data source. This tool allows users to easily connect to and import data from Excel files, and then create interactive and visually appealing reports using that data. The Web Intelligence Rich Client provides a user-friendly interface and a wide range of features and functionalities to efficiently analyze and present data from Excel sources.

Submit
26. Which two are calculation context types?

Explanation

The two calculation context types mentioned in the options are "Input" and "Output." These types refer to the different contexts in which calculations are performed. "Input" refers to the data or values that are provided as input for a calculation, while "Output" refers to the result or outcome of the calculation. These context types help in understanding and analyzing how calculations are performed and their relationship with the given input and resulting output.

Submit
27. You use the Last Refresh Date cell from the Templates in the Report Manager on your report page. You then reformat the cell as Tuesday, January 22, 2008. What is the result when you edit the formula, using the Formula toolbar, to concatenate the string "Last Refresh Date: " and the LastExecutiondate() function?

Explanation

When you edit the formula using the Formula toolbar to concatenate the string "Last Refresh Date: " and the LastExecutiondate() function, the result is that the cell reads "Last Refresh Date: 1/22/08".

Submit
28. Which two break properties can you use when setting Break Priority? (Choose two.)

Explanation

Break properties are used to control the layout and organization of data in a report. When setting Break Priority, two break properties that can be used are Vertical Breaks and Horizontal Breaks. Vertical Breaks allow for grouping and organizing data vertically, typically by a specific field or category. Horizontal Breaks, on the other hand, group and organize data horizontally, often by time periods or intervals. By using these two break properties, the report can be structured in a way that effectively presents and summarizes the data based on the desired grouping and organization.

Submit
29. Which two panels can you use to purge data from a BusinessObjects Web Intelligence XI 3.0 document (WID)? (Choose two.)

Explanation

not-available-via-ai

Submit
30. You use the Last Refresh Date cell from the Templates in the Report Manager on your report page. You then reformat the cell as Tuesday, January 22, 2008. What is the result when you edit the formula, using the Formula toolbar, to concatenate the string "Last Refresh Date: " and the LastExecutiondate() function?

Explanation

When you edit the formula to concatenate the string "Last Refresh Date: " and the LastExecutiondate() function, the result is that the cell reads "Last Refresh Date: 1/22/08".

Submit
31. You need to create a report displaying a year-to-date aggregation on sales revenue across all months. The report should be sectioned on Region. Additionally, you would like to reset the running aggregation to restart for each Region. Which syntax should you use to accomplish this task?

Explanation

The correct syntax to accomplish the given task is =RunningSum([Sales Revenue] ; ([Region])). This syntax will calculate a running sum of the sales revenue, restarting the aggregation for each region.

Submit
32. Which three types of local data files can you use to create a BusinessObjects Web Intelligence XI 3.0 document (WID)? (Choose three.)

Explanation

You can use TXT, CSV, and XLS files to create a BusinessObjects Web Intelligence XI 3.0 document. These file types are commonly used for storing and organizing data, and can be easily imported into the Web Intelligence tool for analysis and reporting purposes. XML files, on the other hand, are not mentioned as an option in the answer and therefore cannot be used to create a WID document.

Submit
33. Which three options are valid Page Layout Options in the Properties tab of a document? (Choose three.)

Explanation

The given options are valid Page Layout Options in the Properties tab of a document. The top margin option allows the user to adjust the margin at the top of the page. The left margin option allows the user to adjust the margin on the left side of the page. The page orientation option allows the user to choose between portrait or landscape orientation for the page layout. These options are commonly found in document editing software and are essential for customizing the layout and formatting of a document.

Submit
34. Where are formulas stored when created in Web Intelligence?

Explanation

When formulas are created in Web Intelligence, they are stored on the report page. This means that the formulas are saved within the specific report document where they were created. They are not stored in the universe, the Central Management Server (CMS) database, or the metadata of the Cube. The report page serves as the container for all the formulas and allows users to access and use them within the context of the report.

Submit
35. Which two statements are true about Page Layout of a report? (Choose two.)

Explanation

The two true statements about Page Layout of a report are that it defines what the report will look like when printed and it defines what the report will look like in PDF mode. The page layout determines the formatting, arrangement, and appearance of the report when it is printed or viewed in PDF format. It includes settings such as page size, margins, headers, footers, and the placement of report elements.

Submit
36. Which statement describes a Web Intelligence variable?

Explanation

A Web Intelligence variable is a formula that is given a name and stored within the document. It allows users to create custom calculations or manipulate data within the document. This statement accurately describes a Web Intelligence variable.

Submit
37. You are working with a set of store revenues. All stores have positive revenue values. Which formula should you use to display the variance value of the Revenue measure in your document when data tracking is active?

Explanation

The formula =[Revenue]/RefValue([Revenue]) should be used to display the variance value of the Revenue measure in the document when data tracking is active. This formula divides the current revenue value by the reference value of revenue, which allows for a comparison and calculation of the variance.

Submit
38. Where are contexts created?

Explanation

Contexts are created in a universe. A universe is a semantic layer that sits between the database and the end-user reporting tool. It acts as a bridge, allowing users to access data from the database in a more user-friendly manner. Contexts in a universe are used to define conditions or filters that restrict the data returned in a query. By creating contexts in a universe, users can control and manipulate the data that is presented to them in their reports.

Submit
39. You open a Web Intelligence document (WID) with tracked data changes. You wish to change the color of the tracked data. You however cannot change the format of the tracked data. What should you do to enable formatting of the tracked data?

Explanation

not-available-via-ai

Submit
40. Which options can you select when you save a Web Intelligence document (WID)? Note: There are 2 correct answers to this question.

Explanation

When saving a Web Intelligence document, you can select the options "Refresh on open" and "Permanent regional formatting". The "Refresh on open" option ensures that the data in the document is updated every time it is opened. The "Permanent regional formatting" option allows the document to retain its formatting based on the regional settings of the user, even if the document is opened on a different machine or in a different location.

Submit
41. Which two options should you take before you finish creating a variable in Web Intelligence? (Choose two.)

Explanation

Before finishing creating a variable in Web Intelligence, it is important to save the variable to ensure that any changes made are not lost. Additionally, validating the variable is necessary to check for any errors or inconsistencies in the formula or logic used. Therefore, the correct options to take before finishing creating a variable in Web Intelligence are to save and validate.

Submit
42. Which two Web Intelligence Rich Client authentication methods enable you to export Web Intelligence documents (WID) to the Central Management Server (CMS)? (Choose two.)

Explanation

LDAP and Enterprise are the two Web Intelligence Rich Client authentication methods that enable the export of Web Intelligence documents (WID) to the Central Management Server (CMS). LDAP (Lightweight Directory Access Protocol) is a protocol used to access and manage directory information, including user authentication. Enterprise authentication method allows users to authenticate using their enterprise credentials, such as Active Directory or SAP authentication. Both of these methods provide the necessary authentication for exporting WID to the CMS.

Submit
43. Which method should you use to activate "Interactive Viewing"?

Explanation

To activate "Interactive Viewing," you should use the method of accessing Preferences in InfoView. This suggests that within the InfoView interface, there is a specific section or option labeled "Preferences" where you can enable the "Interactive Viewing" feature.

Submit
44. Which three rules apply when you manually synchronize queries? (Choose three.)

Explanation

When manually synchronizing queries, there are three rules that apply. First, the dimension value formats must be the same, meaning that the values representing the dimensions should be in the same format across all queries. Second, dimensions with different names can be merged, allowing for consolidation and alignment of data. Lastly, dimensions from multiple data sources can be merged, enabling the combination of data from different sources into a single query.

Submit
45. Which three statements are true about alerters? (Choose three.)

Explanation

Alerters can be applied to charts, multiple alerters can be applied to one block, the same alerter can be applied to multiple blocks, and the order in which alerters are applied can be controlled.

Submit
46. Which three methods can you use to combine queries using the Web Intelligence Rich Client? (Choose three.)

Explanation

The correct answer is UNION, MINUS, INTERSECT. These are three methods that can be used to combine queries using the Web Intelligence Rich Client. UNION is used to combine the results of two or more queries into a single result set, MINUS is used to retrieve the records that are in the first query but not in the second query, and INTERSECT is used to retrieve the records that are common to both queries.

Submit
47. Which Report Manager tab should you use to add a free-standing cell to a BusinessObjects Web Intelligence XI 3.0 document (WID)?

Explanation

To add a free-standing cell to a BusinessObjects Web Intelligence XI 3.0 document (WID), you should use the Template tab in the Report Manager. This tab allows you to create and customize templates for your reports, including adding free-standing cells.

Submit
48. Which method can you use to hide data using an alerter?

Explanation

not-available-via-ai

Submit
49. Which Report Manager tab should you use to change report formatting?

Explanation

To change report formatting, you should use the "Properties" tab in the Report Manager. This tab allows you to modify various properties of the report, such as the layout, style, and appearance. By accessing the Properties tab, you can make adjustments to the report's formatting to meet your specific requirements or preferences.

Submit
50. You open a Web Intelligence document (WID) with data and want to use data tracking. The Data Tracking button is however grayed out. Which action should you take to enable formatting of the tracked data?

Explanation

To enable formatting of the tracked data in a Web Intelligence document, you should contact the system administrator.

Submit
51. Which two functions could you use to concatenate the First Name and Last Name objects? (Choose two.)

Explanation

The correct answers are =[First Name]+[Last Name] and =Concatenation([First Name];[Last Name]). These two functions can be used to combine the First Name and Last Name objects. The first answer uses the plus symbol (+) to concatenate the two objects, while the second answer uses the Concatenation function with a semicolon (;) as the separator. Both options will result in the desired concatenation of the First Name and Last Name.

Submit
52. Which three methods can you use to apply a section in the Web Intelligence Rich Client? (Choose three.)

Explanation

To apply a section in the Web Intelligence Rich Client, you can use the following three methods:
1. Drag the column to be sectioned outside the block.
2. Select the column, then select the Reporting Menu Option, and choose "Set As Section".
3. Right-click on the column you want to create a section on, and from the drop-down menu, select "Set As Section". These methods allow you to easily organize and categorize data within your report for better analysis and presentation.

Submit
53. You are working in the Web Intelligence Rich Client. Which two file formats can you save a document in? (Choose two.)

Explanation

In the Web Intelligence Rich Client, you have the option to save a document in two file formats: XLS and PDF. XLS refers to the Microsoft Excel file format, which allows for easy data manipulation and analysis. PDF, on the other hand, is a widely used file format for sharing documents that preserves the formatting and layout of the original document. Both formats offer different advantages, with XLS being more suitable for data analysis and manipulation, while PDF is better for sharing and preserving the document's appearance.

Submit
54. Which method should you use to group query filters together to form one AND statement?

Explanation

To group query filters together to form one AND statement, you should drag the queries together. This allows you to combine multiple filters into a single logical statement, ensuring that all conditions must be met for the query to return results. By dragging the queries together, you are effectively grouping them and indicating that they should be treated as a single unit in the query.

Submit
55. What is the default behavior when creating a report from two queries from the same universe?

Explanation

When creating a report from two queries from the same universe, the default behavior is that the dimension objects are automatically merged. This means that if both queries have the same dimension, it will be merged into a single dimension in the report. This allows for easy comparison and analysis of data from both queries.

Submit
56. Which two options are valid options when you save a Web Intelligence document (WID) in the Web Intelligence Rich Client? (Choose two.)

Explanation

When saving a Web Intelligence document (WID) in the Web Intelligence Rich Client, two valid options are "Save As" and "Save to My Computer As". The "Save As" option allows the user to save the document with a different name or in a different location. The "Save to My Computer As" option enables the user to save the document directly to their computer. These options provide flexibility in managing and organizing the saved WID files.

Submit
57. Which method should you use to see report filters?

Explanation

To see report filters, you should click the "Show/Hide Filter Pane" button on the toolbar. This button allows you to display or hide the filter pane, which contains all the report filters. By clicking this button, you can easily access and view the report filters.

Submit
58. You try to select a number of data objects from the Data tab to drag into a report, but some of them are grayed out and in italics. Which statement explains this behavior?

Explanation

Some of the selected objects being grayed out and in italics indicates that they are not synchronized. This means that these objects are not up to date or are not in sync with the current state of the data.

Submit
59. Which three data sources can you synchronize in a Web Intelligence XI 3.0 document (WID)? (Choose three.)

Explanation

In a Web Intelligence XI 3.0 document, you can synchronize three data sources: personal data files, queries from the same universe, and queries from different universes. This means that you can combine and analyze data from personal data files, as well as run queries within the same universe or across different universes to gather data from multiple sources.

Submit
60. In which two situations should you use sub-queries? (Choose two.)

Explanation

Sub-queries should be used in two situations: when the query filter involves values that are not known and when the query filter for the report involves a value that will change over time. In the first situation, sub-queries can be used to retrieve information based on unknown values, allowing for more dynamic and flexible queries. In the second situation, sub-queries can be used to ensure that the report accurately reflects the changing value over time, providing up-to-date information.

Submit
61. You are reviewing a report with the following statement in a variable: =If([Sales revenue] > 750000) Then "Top Performer" Else If([Sales revenue] Between (200000;650000)) Then "Average Performer" Else If([Sales revenue] < 200000) Then "Low Performer" Which statement is true of the results produced by the statement for sales representatives with sales between 650,000 and 750,000?

Explanation

The statement in the variable specifies that if the sales revenue is greater than 750,000, the sales representative will be classified as a "Top Performer". If the sales revenue is between 200,000 and 650,000, the sales representative will be classified as an "Average Performer". However, for sales representatives with sales between 650,000 and 750,000, there is no specific condition mentioned in the statement. Therefore, they will not have a performance value assigned.

Submit
62. Where can you set the default universe when using Web Intelligence within InfoView?

Explanation

In Web Intelligence within InfoView, the default universe can be set in InfoView Preferences. This means that when creating reports or queries, the selected universe will be the default one unless specified otherwise. By setting the default universe in InfoView Preferences, it allows for a more streamlined and efficient workflow as users do not have to manually select the universe each time they create a new report or query.

Submit
63. Which statement is a benefit of using a Web Intelligence formula?

Explanation

A benefit of using a Web Intelligence formula is that it can be reused to create a variable. This means that once a formula has been created, it can be used again in different parts of the document or in other documents, without having to recreate it from scratch. This saves time and effort, as the formula only needs to be created once and can then be easily reused as needed.

Submit
64. Which two are running aggregate functions in Web Intelligence? (Choose two.)

Explanation

Running aggregate functions are used to calculate cumulative values over a specific range or sequence of values. In this case, the correct answers are RunningMax() and RunningSum(). RunningMax() calculates the maximum value encountered so far in the sequence, while RunningSum() calculates the sum of all values encountered so far. These functions are commonly used in Web Intelligence to track and analyze cumulative data trends.

Submit
65. Which two operators can you use with output context in the Web Intelligence Rich Client? (Choose two.)

Explanation

In the Web Intelligence Rich Client, the "In" operator can be used with output context to filter data based on a specific set of values. This operator allows you to specify a list of values and only include data that matches those values. The "ForAll" operator can also be used with output context to perform calculations or aggregations on a specific set of values. This operator allows you to apply a formula or function to each value in the specified set.

Submit
66. Which Web Intelligence viewer panel should you use to create links to documents by browsing to the file without typing any syntax?

Explanation

The Interactive HTML Panel should be used to create links to documents by browsing to the file without typing any syntax. This panel allows users to interact with the report and its data using hyperlinks, without requiring any coding or syntax knowledge. It provides a user-friendly interface for creating and managing links to external documents, making it easy to navigate and access relevant information.

Submit
67. Which combination of functions should you use to convert the string "13/11/46 12:00:00 AM" to "Wednesday 13 Nov 1946"?

Explanation

The correct combination of functions to convert the string "13/11/46 12:00:00 AM" to "Wednesday 13 Nov 1946" is SubStr() using Pos(), ToDate(), and FormatDate(). The SubStr() function is used to extract the date portion "13/11/46" from the original string. The Pos() function is used to find the position of the first occurrence of the delimiter ("/") in the date portion. The ToDate() function is then used to convert the extracted date string into a date value. Finally, the FormatDate() function is used to format the date value into the desired "Wednesday 13 Nov 1946" format.

Submit
68. Which three can you use to start the Web Intelligence Rich Client from? (Choose three.)

Explanation

You can start the Web Intelligence Rich Client from InfoView, Command Line, and Start > All Programs. InfoView is a web-based portal that allows users to access and interact with Web Intelligence documents. The Command Line option allows users to launch the Rich Client using specific commands and parameters. Start > All Programs is a common method to access and launch applications on a Windows operating system. Central Management Console is not a valid option to start the Web Intelligence Rich Client.

Submit
69. Which two options can you change when using Quick Display Mode? (Choose two.)

Explanation

When using Quick Display Mode, you have the option to change the number of Vertical Records Per Page and Horizontal Records Per Page. This allows you to customize the display of query results based on your preferences and requirements. By adjusting these settings, you can control the number of records displayed vertically and horizontally on each page, providing a more efficient and organized view of the data.

Submit
70. Which two personal folders are available by default to Web Intelligence users? (Choose two.)

Explanation

By default, Web Intelligence users have access to two personal folders: Inbox and My Favorites. The Inbox folder is where users receive and store incoming messages and documents. My Favorites is a folder where users can save and organize their frequently accessed reports or documents for quick and easy access. These two folders provide users with a convenient way to manage their personal files and ensure efficient workflow within the Web Intelligence platform.

Submit
71. Which two statements are correct about saving documents? (Choose two.)

Explanation

Documents are typically stored in folders to help organize and manage them. This allows users to easily locate and access specific documents when needed. Additionally, documents can be assigned to categories, which further helps in organizing and classifying them based on their content or purpose. Assigning documents to categories can make it easier to search for and retrieve related documents, improving efficiency and productivity.

Submit
72. Which three features can you use in Interactive View mode of BusinessObjects Web Intelligence XI 3.0? (Choose three.)

Explanation

In Interactive View mode of BusinessObjects Web Intelligence XI 3.0, you can use the Sort feature to arrange the data in ascending or descending order. The Filters feature allows you to apply filters to the data to view specific information. The Format Cell feature allows you to customize the appearance of the data, such as changing font size or color. The Merge Dimensions feature is not available in Interactive View mode, so it is not one of the features that can be used.

Submit
73. Which two data sources can you directly access from a Web Intelligence document (WID) using the Web Intelligence Rich Client? (Choose two.)

Explanation

The Web Intelligence Rich Client allows direct access to two data sources from a Web Intelligence document: Universe and Text File. A Universe is a semantic layer that provides a simplified view of a database, making it easier for users to query and analyze data. Text Files are flat files that contain data in a structured or unstructured format, such as CSV or TXT files. Both of these data sources can be accessed and analyzed directly within the Web Intelligence Rich Client tool.

Submit
74. You are using calculation contexts within an If() function. Which two are valid contexts for use in an If() function? (Choose two.)

Explanation

The If() function allows you to perform calculations based on a condition. The valid contexts for use in an If() function are "In Block" and "In Report". "In Block" means that the calculation context is limited to the current block of cells, while "In Report" means that the calculation context is expanded to include the entire report.

Submit
75. Which DaysBetween() function syntax should you use to calculate the number of years since your birth, assuming the date object is Birth_date?

Explanation

The correct answer is DaysBetween([Birth_date] ; CurrentDate() ) / 365.25. This syntax uses the DaysBetween() function to calculate the number of days between the Birth_date and the current date, and then divides it by 365.25 to get the number of years. The semicolon (;) is used to separate the arguments in the function.

Submit
76. You want to compare the sales revenue performance of the top 20% of your customers to the average of all of your customers. You decide to apply a rank on the table that shows customers and revenue and create a variable to show the average revenue for all customers. Which function should you use in the variable?

Explanation

To compare the sales revenue performance of the top 20% of customers to the average of all customers, the NoFilter() function should be used in the variable. This function will calculate the average revenue for all customers without applying any filters or conditions. By using NoFilter(), the variable will include all customers in the calculation, providing an accurate comparison between the top 20% and the overall average.

Submit
77. Which two statements about the If() function are correct? (Choose two.)

Explanation

The If() function is used to perform conditional logic in programming. It evaluates a Boolean expression and returns a value based on the result of the evaluation. The statement "Contains a Boolean expression" is correct because the If() function requires a Boolean expression to determine which branch of code to execute. The statement "Can contain nested If() statements" is also correct because the If() function can be nested within another If() function to create more complex conditional logic.

Submit
78. What automatically happens when you create a chart using the Templates tab in Web Intelligence?

Explanation

When you create a chart using the Templates tab in Web Intelligence, the structure mode is automatically selected. This means that you can modify the structure of the chart, such as adding or removing dimensions and measures, to customize it according to your needs.

Submit
79. Which two statements are true about the AND operator? (Choose two.)

Explanation

The AND operator is used when all conditions are met by two filters and when all conditions are met by more than two filters. This means that both conditions must be true for the AND operator to return a true result. It is not used when any condition is met by two filters or when only one condition is met by any of the filters.

Submit
80. How do you duplicate a query?

Explanation

To duplicate a query, you need to right-click on the Query Tab in the Query Panel and select Duplicate Query. This action will create a copy of the existing query, allowing you to make any necessary modifications without affecting the original query.

Submit
81. Which two operators are available when using wildcards in a query filter? (Choose two.)

Explanation

The two operators available when using wildcards in a query filter are "Matches Pattern" and "Different from Pattern". The "Matches Pattern" operator is used to search for values that match a specific pattern, while the "Different from Pattern" operator is used to search for values that do not match a specific pattern. These operators allow for more flexible and precise filtering of query results.

Submit
82. Which three options are Web Intelligence drill mode options? (Choose three.)

Explanation

The correct answer is Drill By, Drill Up, and Drill Down. These are the three options available in Web Intelligence drill mode. "Drill By" allows users to drill into a specific dimension or attribute to get more detailed information. "Drill Up" enables users to go back to a higher level of aggregation in the data. "Drill Down" allows users to drill into a lower level of detail in the data. These options provide users with the flexibility to explore and analyze data at different levels of granularity.

Submit
83. Which method should you use to activate data tracking?

Explanation

To activate data tracking, you should select the "Track" button on the toolbar. This button is specifically designed for this purpose and allows you to start tracking changes in the data.

Submit
84. Which two statements are true of the Web Intelligence default behavior when performing a UNION combined query method? (Choose two.)

Explanation

The Web Intelligence default behavior when performing a UNION combined query method is to perform a UNION, which means it combines the results of two queries and removes any duplicate values. Therefore, the correct statements are: It performs a UNION and It returns all values less the duplicates.

Submit
85. Which statement describes the performance impact that data tracking has on report refresh times, assuming that the data changes but the number of rows retrieved and the data volume stays the same?

Explanation

not-available-via-ai

Submit
86. What is the maximum number of sub-alerts that an alerter can contain?

Explanation

The maximum number of sub-alerts that an alerter can contain is 8.

Submit
87. Which two are benefits of using breaks? (Choose two.)

Explanation

"Using breaks" = Benutzung von Umbrüchen

Submit
88. Where can you set the priority options for saving a Web Intelligence document (WID) to Microsoft Excel?

Explanation

In InfoView Preferences, you can set the priority options for saving a Web Intelligence document (WID) to Microsoft Excel. This means that you can customize how the document is saved and prioritize certain settings or options. By accessing the InfoView Preferences, users can define their preferred settings for exporting Web Intelligence documents to Excel, ensuring that the saved document meets their specific requirements.

Submit
89. Which four Report Elements can you select from the Templates tab of Web Intelligence? (Choose four.)

Explanation

From the Templates tab of Web Intelligence, you can select four Report Elements: Report, Tables, Charts, and Free-standing cells. These elements are commonly used in creating reports and analyzing data. The Report element allows you to organize and present data in a structured format. Tables enable you to display data in rows and columns. Charts provide visual representations of data, making it easier to interpret and analyze. Free-standing cells allow you to add individual data cells or text boxes to the report for customization purposes.

Submit
90. You are creating a "Target Revenue Based on Required % Growth" variable that is represented by 5% revenue growth for California and 18% for Massachusetts. Which If() function statement is valid?

Explanation

The correct answer is =If[State] = "California" Then [Sales revenue] * 1.05 ElseIf[State] = "Massachusetts" Then [Sales revenue] * 1.18 Else [Sales revenue]. This statement correctly uses the If() function to calculate the target revenue based on the required % growth for each state. It checks if the state is California, and if true, multiplies the sales revenue by 1.05. If the state is Massachusetts, it multiplies the sales revenue by 1.18. For any other state, it returns the sales revenue as is.

Submit
91. Which two statements describe reasons for using the FormatDate() function? (Choose two.)

Explanation

The FormatDate() function is used for converting a date object into a string object. This allows for easier manipulation and concatenation of the date with other strings. Additionally, the function can be used to format the date in a specific way, such as changing it to a non-standard date format.

Submit
92. Which Web Intelligence component should you use to list the existing variables in a report?

Explanation

not-available-via-ai

Submit
93. You are working with a previously saved document and you have deleted a logical operator. Which two methods can you use to recover the logical operator? (Choose two.)

Explanation

To recover the deleted logical operator in a previously saved document, you can use two methods. First, you can rebuild the filters to recreate the logical operator. Second, you can close the Query panel without executing the query and then reopen it, which will restore the deleted logical operator.

Submit
94. What happens when you drop a dimension into a blank part of a report that contains two blocks, without the ALT key selected?

Explanation

When you drop a dimension into a blank part of a report that contains two blocks without the ALT key selected, a new section is created. This means that the dimension will be added as a separate section in the report, allowing for further analysis and organization of the data.

Submit
95. Which two functions can you use to concatenate the strings "England" and "New" to create the string "New England"? (Choose two.)

Explanation

The LeftPad() function is not used to concatenate strings, but rather to add padding characters to the left of a string. The LeftTrim() function is also not used for concatenation, but rather to remove leading spaces from a string. The Concatenate() function is used to join two or more strings together, making it a suitable choice for concatenating "England" and "New" to create "New England". Therefore, the correct answer is Concatenate().

Submit
96. Which panel should you use to view a Document Summary of a BusinessObjects Web Intelligence XI 3.0 document (WID)?

Explanation

To view a Document Summary of a BusinessObjects Web Intelligence XI 3.0 document (WID), you should use the Interactive panel. This panel allows users to interact with the document and access various features and functionalities. It provides a comprehensive view of the document's summary, including key information such as data sources, variables, filters, and other document properties. The Interactive panel is designed to enhance the user experience and make it easier to navigate and analyze the document effectively.

Submit
97. Where do you set the "Optional prompt" option in Web Intelligence Rich Client?

Explanation

In Web Intelligence Rich Client, the "Optional prompt" option is set in the Query Panel. This panel allows users to create and modify queries for their reports. By setting the "Optional prompt" option in the Query Panel, users can define prompts that are not mandatory for the report execution. This means that users have the choice to enter values for these prompts or leave them blank, without affecting the report results.

Submit
98. You create a document with data from multiple data providers. Which two tasks can you perform to include all data from all providers in the same report block? (Choose two.)

Explanation

To include all data from multiple data providers in the same report block, you can perform two tasks. Firstly, you need to synchronize the data providers, which ensures that the data from all providers is aligned and can be combined effectively. Secondly, you need to manually merge all dimensions, which involves combining the dimensions from each data provider into a single dimension in the report block. By synchronizing the data providers and merging the dimensions, you can include all the data from all providers in the same report block.

Submit
99. Which tool do you use to edit merged objects in BusinessObjects Web Intelligence XI 3.0?

Explanation

The Merge Dimensions button on the Reporting toolbar is used to edit merged objects in BusinessObjects Web Intelligence XI 3.0. This button allows users to merge dimensions from different data providers, which helps in creating a consolidated view of data. By clicking on this button, users can select the dimensions they want to merge and specify the merging criteria. This allows for the creation of complex reports and analysis by combining data from multiple sources.

Submit
100. Which three statements are true of contexts? (Choose three.)

Explanation

Contexts are defined in a universe, meaning that they are created and managed at the universe level. This allows for the organization and segmentation of data within the universe. Additionally, you can combine objects in different contexts, meaning that you can bring together data from different segments or categories within the universe. Lastly, you can combine any objects within the same context to create a query, allowing for flexibility and customization in data retrieval and analysis.

Submit
101. Which two statements are true of contexts? (Choose two.)

Explanation

Contexts in this scenario refer to the different levels or categories within a dataset. The first true statement is that you can combine objects in different contexts, meaning that you can analyze and compare data from different levels or categories. The second true statement is that you can combine any object within the same context to create a query, indicating that you can perform analysis within a specific level or category of data by combining different objects within that context.

Submit
102. Where in Web Intelligence Rich Client interface can you see the data source for a document built on a local data source?

Explanation

In the Web Intelligence Rich Client interface, the data source for a document built on a local data source can be seen in the Query Properties. This section provides information about the data source used in the document, such as the connection details, database type, and query parameters. By accessing the Query Properties, users can view and modify the settings related to the data source used in the document.

Submit
103. You have a regional sales report with State, City and Sales Revenue dimensions. You want to create a variable that excludes State from the output context. Which output statement should you use?

Explanation

The ForAll([State]) output statement should be used to create a variable that excludes the State dimension from the output context. This statement iterates over all the values of the State dimension, allowing you to perform calculations or operations without considering the State dimension.

Submit
104. Which two search criteria are valid when using Delegated List of Values? (Choose two.)

Explanation

The two valid search criteria when using Delegated List of Values are "a*" and "*a". The search criteria "a*" allows you to search for values that start with the letter "a", while "*a" allows you to search for values that end with the letter "a". These search criteria provide flexibility in finding specific values within the list of values.

Submit
105. Which statement is true of the Where operator when used within a variable?

Explanation

The Where operator, when used within a variable, instructs the variable to calculate only where certain values are true. This means that the variable will only perform calculations on the data that meets the specified conditions in the Where operator. It allows for filtering and selecting specific data to be included in the calculation.

Submit
106. Why would you use the FormatDate() function? Note: There are 2 correct answers to this question.

Explanation

The FormatDate() function is used to convert a date object into a string object. This is useful when you need to display the date as a string or when you want to concatenate the date with another string. The function allows you to format the date in a specific way so that it can be easily understood and displayed correctly.

Submit
107. Which three options appear in the Scope of Analysis pane in the Query panel? (Choose three.)

Explanation

In the Scope of Analysis pane in the Query panel, three options appear: None, Custom, and One Level. The "None" option indicates that no scope of analysis is applied to the query. The "Custom" option allows the user to define a specific scope of analysis based on their requirements. The "One Level" option limits the analysis to only one level of the hierarchy.

Submit
108. Which three output context expressions are valid extended syntax expressions? (Choose three.)

Explanation

The three valid extended syntax expressions are: Where ([State] = "CA"), In Section Where ([State] = "CA"), and Where ([State]="CA" And [Year] ="2006"). These expressions follow the correct syntax for specifying conditions and filtering data in the output context.

Submit
109. Which two are benefits of creating queries from existing queries? (Choose two.)

Explanation

Creating queries from existing queries provides the benefit of accurate duplication of query parameters. This means that when creating a new query based on an existing one, all the parameters and settings from the original query are automatically carried over, ensuring that the new query will produce the same results. This saves time and reduces the risk of errors when recreating complex queries.

Another benefit is the reduced creation time for complex reports. By starting with an existing query, which may already have some of the necessary data and calculations in place, it becomes easier and faster to build more complex reports on top of it. This can be especially helpful when dealing with large datasets or when there are multiple layers of calculations and aggregations involved.

Submit
110. Which message appears when you select "Use query drill" while Scope of Analysis is set in a BusinessObjects Web Intelligence XI 3.0 report?

Explanation

When you select "Use query drill" while the Scope of Analysis is set in a BusinessObjects Web Intelligence XI 3.0 report, the message that appears is "The Scope of Analysis is not empty." This means that there is already a defined scope for analysis in the report, and selecting the "Use query drill" option will allow you to drill down further within that scope to analyze the data in more detail.

Submit
111. Which method can you use to build a custom sort?

Explanation

To build a custom sort, you can select a column in the table and then click the "Apply Sort" button on the toolbar. From there, you can select the option for "Custom Sort". This method allows you to define specific sorting criteria and order for the data in the selected column.

Submit
112. How much impact does data tracking have on the data size of a Web Intelligence document (WID) compared to the same document without data tracking?

Explanation

Data tracking in a Web Intelligence document refers to the process of capturing and storing changes made to the data in the document. When data tracking is enabled, the document needs to store additional information about these changes, which increases the overall size of the document. Therefore, compared to the same document without data tracking, enabling data tracking will cause the document size to increase two times.

Submit
113. To which destinations can you send a Web Intelligence document (WID) through InfoView of BusinessObjects Web Intelligence XI 3.0? Note: There are 3 correct answers to this question

Explanation

You can send a Web Intelligence document (WID) through InfoView of BusinessObjects Web Intelligence XI 3.0 to the Business Objects Inbox, FTP, and Email.

Submit
114. Where in a Web Intelligence report do you view merged objects in BusinessObjects Web Intelligence XI 3.x?

Explanation

In BusinessObjects Web Intelligence XI 3.x, merged objects can be viewed in the Data tab of a Web Intelligence report. This tab allows users to access and manipulate the data in the report, including merged objects that have been created. The Data tab provides a comprehensive view of the report's data, making it the appropriate location to view merged objects.

Submit
115. Which two methods can you use to aggregate measures at the section level in BusinessObjects Web Intelligence XI 3.0? (Choose two.)

Explanation

To aggregate measures at the section level in BusinessObjects Web Intelligence XI 3.0, you can use two methods. The first method is to drag the measure from the Data tab into the section header. This will automatically aggregate the measure at the section level. The second method is to press the CTRL key and drag the measure from the table to the section header. This will also aggregate the measure at the section level.

Submit
116. Which two methods can you use to apply report filters to a BusinessObjects Web Intelligence XI 3.0 document (WID)? (Choose two.)

Explanation

In BusinessObjects Web Intelligence XI 3.0, two methods can be used to apply report filters to a document: Block and Global. The Block method allows filters to be applied to specific blocks within the report, while the Global method applies filters to the entire report. These methods provide flexibility in filtering data based on specific criteria, allowing users to analyze and present information in a more targeted and meaningful way.

Submit
117. Which two properties can you set in the hyperlink dialog box when you create a hyperlink to a document? (Choose two.)

Explanation

In the hyperlink dialog box, you can set the "Refresh on open" property to automatically update the linked document when it is opened. Additionally, you can set the "Link to a specific area in the document" property to specify a particular section or location within the document that the hyperlink should navigate to.

Submit
118. Which two character functions can modify character string and return the word "Department" from the string "Department Fast Foods"? (Choose two.)

Explanation

The SubStr() function can be used to extract a portion of the string "Department Fast Foods", starting from a specified position and with a specified length. In this case, using SubStr(1, 9) would return the word "Department". The Replace() function can be used to replace a specified substring within a string with another substring. In this case, using Replace("Department Fast Foods", " Fast Foods", "") would also return the word "Department" by removing the substring " Fast Foods" from the original string.

Submit
119. Which three are prerequisites for combining data from multiple data providers? (Choose three.)

Explanation

To combine data from multiple data providers, there must be two or more queries in the document, ensuring that data is being pulled from different sources. Additionally, both data providers must have the same dimension values, allowing for consistent comparisons and analysis. Lastly, the data values from each linked dimension must have a common format to ensure accurate and meaningful integration of the data.

Submit
120. Which method should you use to force each section of a report to start on a new page?

Explanation

To force each section of a report to start on a new page, you should select the section and then go to the Properties tab. In the Properties tab, there is an option to check "Start on New Page". By enabling this option, each section will be forced to start on a new page.

Submit
121. You need to create a report that compares data to a reference data set. You create the report and activate the track data option. The report correctly indicates the changes in the data; however when you make another change to the report, the display no longer indicates any data tracking.  What actions could have caused this behavior? Note: There are 2 correct answers to this question.

Explanation

The behavior could have been caused by drilling outside the scope of analysis, which means navigating to a different level or dimension of data that is not included in the report's reference data set. It could also be caused by activating query drill mode, which allows for further exploration of the data but may result in the loss of data tracking.

Submit
122. Which operators can be used in an Input calculation context ? Note: There are 2 correct answers to this question.

Explanation

In an input calculation context, the ForEach operator can be used to iterate over a collection and perform calculations on each element. The In operator can be used to specify the input variable or range of values to be used in the calculation. These operators allow for the manipulation and calculation of data in an input context.

Submit
123. Which scenarios should you use breaks for? (Choose two.)

Explanation

Breaks should be used for generating subtotals in one table block and grouping repeated values in one table block. These scenarios require breaking the table into smaller sections to calculate subtotals or group similar values together. By using breaks, the data can be organized and summarized effectively within a single table block.

Submit
124. Which is a benefit of using query drill?

Explanation

Query drill allows users to explore data in a hierarchical manner by drilling down into different levels of detail. The benefit of using query drill is that it generates dedicated SQL statements for each drill, which ensures that the data retrieved is specific to the selected level of detail. This allows for more precise and targeted analysis of the data, as well as efficient retrieval of information.

Submit
125. What is the maximum number for alerters in a document?

Explanation

In a document, the maximum number of alerters is 30. This means that within the document, there can be a maximum of 30 instances or occurrences of alerters. Any number beyond 30 would exceed the maximum limit allowed for alerters in the document.

Submit
126. A variable is a formula with a name stored in the query. (Choose two.)

Explanation

Variables in a query are formulas with names that are stored within the query. They cannot be drilled on, meaning they cannot be used to further analyze or explore data. Additionally, variables cannot be merged in a document, meaning they cannot be used to combine or merge data from different sources into a single document. However, variables can be used in the report filter and in the WHERE statement of the query to filter and manipulate data.

Submit
127. Which two settings can you configure for the Sample option in the Properties tab of the Web Intelligence Query panel? (Choose two.)

Explanation

In the Properties tab of the Web Intelligence Query panel, there are two settings that can be configured for the Sample option. The first setting is enabling the "Fixed" option, which allows the user to fix the sample result set so that it remains the same even if the underlying data changes. The second setting is specifying a "Sample Result" set, which allows the user to define the specific data subset they want to retrieve from the query.

Submit
128. Which method should you use to view alerts in a report?

Explanation

To view alerts in a report, the method suggested is to select a block and then click the "Alerters" button on the toolbar. This option allows the user to easily access and view any alerts associated with the selected block in the report.

Submit
129. You want to force the calculation context for a variable in a large report with many dimensions. Which operator allows you to add a dimension to the default context?

Explanation

The ForEach operator allows you to add a dimension to the default context in a large report with many dimensions. This operator ensures that the calculation is performed for each value of the added dimension, allowing you to force the calculation context for a specific variable.

Submit
130. Which three statements about the If() function are correct? (Choose three.)

Explanation

The If() function can be used to create a variable, as it allows for conditional assignment of values. The function can also contain an aggregate function, allowing for conditional calculations. Additionally, the Then and Else keywords can be used within the function instead of the semicolon to specify different actions based on the condition.

Submit
131. You have created a BusinessObjects Web Intelligence XI 3.0 document (WID) within InfoView that has a single table block on a single report page. Where will a new object be displayed when you add it to the query?

Explanation

When you add a new object to the query in a BusinessObjects Web Intelligence XI 3.0 document, it will be displayed in the Report Manager. This means that the new object will be added to the existing report and can be accessed and managed within the Report Manager interface. It will not be displayed in the block or a new report page, but rather integrated into the existing report structure. The Query Panel is where you create and modify the query itself, but the new object will not be displayed there.

Submit
132. Which statement is true about calculation contexts?

Explanation

Calculation contexts in data analysis allow for the manipulation of variables to alter the way data is aggregated. This means that by adjusting the variables, the data can be grouped and summarized in different ways, providing alternative perspectives and insights. Calculation contexts do not directly affect the display of data or the manipulation of universe objects, but rather focus on the aggregation and organization of data based on variables.

Submit
133. Which statement is true of an output context operator?

Explanation

The output context operator is placed outside of the brackets of the aggregation function. This means that it is used to specify the context in which the aggregation function should be applied. By placing the output context operator outside of the brackets, it is clear that it is separate from the aggregation function and defines the scope or context for the calculation.

Submit
134. Which wildcards can you use in a query filter? Note: There are 2 correct answers to this question.

Explanation

In a query filter, the wildcards % and - can be used. The % wildcard represents any number of characters, while the - wildcard represents a single character. These wildcards are useful for performing pattern matching in queries, allowing for more flexible and dynamic filtering of data.

Submit
135. Your document displays all data in black. Which dialog box should you use to configure the colors of your document data?

Explanation

Antwort ist nicht genau bekannt. Kann eigentlich nur A oder B sein. Ich habe mit für A entschieden.

Submit
136. Which method can you use to change the object qualification of an object within Web Intelligence Rich Client?

Explanation

To change the object qualification of an object within Web Intelligence Rich Client, you can select the qualification in the Query panel. This means that you need to navigate to the Query panel and choose the desired qualification for the object in question.

Submit
137. Which keyword is defined as flexible for input contexts?

Explanation

The keyword "ForEach" is defined as flexible for input contexts. This means that it allows for iterating over each item in a collection or array, providing a convenient way to perform operations on each element individually. This keyword is commonly used in programming languages to simplify and streamline the process of working with collections.

Submit
138. Which three statements are true of calculation contexts? (Choose three.)

Explanation

The first statement is true because if no context is defined, the default context is assumed. The second statement is false because "NoFilter()" is not a valid extended syntax keyword for using contexts. The third statement is true because the ForEach context operator automatically takes the dimensions in the block into account. The fourth statement is false because you do not need to place parentheses around the values listed after the Where keyword when using the Where operator.

Submit
139. Which tab should you use to change the page orientation of a report?

Explanation

not-available-via-ai

Submit
140. For which tasks do you use an If() function? Note: There are 2 correct answers to this question.

Explanation

The If() function is used to conditionally show rows in a block and to display dynamically grouped values. This means that the function allows you to specify certain conditions that need to be met in order for certain rows to be displayed in a block. Additionally, it allows you to dynamically group values based on specific criteria.

Submit
141. Which two statements are correct about hierarchies in Web Intelligence? (Choose two.)

Explanation

Hierarchies in Web Intelligence can be chosen using a custom Scope of Analysis, allowing users to select specific hierarchies for analysis. Additionally, hierarchies are used to define the drill path in the Scope of Analysis, enabling users to navigate and drill down into data based on the defined hierarchy structure.

Submit
142. You want to force the calculation context of a variable in a table so that its values do not change when a dimension is added to the table. Which of the following statements is correct?

Explanation

When you want to force the calculation context of a variable in a table so that its values do not change when a dimension is added, you should exclude the dimension using the output context. By excluding the dimension using the output context, the variable's values will remain constant regardless of any additional dimensions added to the table.

Submit
143. Which statement describes a benefit of using the NoFilter() function?

Explanation

The NoFilter() function is used to override report ranking. This means that when this function is applied, the default ranking of the report will be ignored, allowing the user to specify their own ranking criteria. This can be beneficial in situations where the default ranking is not suitable for the specific needs of the user, allowing them to customize the ranking to better suit their requirements.

Submit
144. Which method should you use to store a Web Intelligence Rich Client document in an enterprise secured location?

Explanation

To store a Web Intelligence Rich Client document in an enterprise secured location, the recommended method is to save the document to the Enterprise documents. This ensures that the document is stored in a location that is specifically designed for enterprise use and is secured according to the organization's security protocols. Saving the document to the Enterprise directories may not provide the same level of security and may not have the necessary access controls in place. Exporting the document to the Central Management Server (CMS) or the Central Configuration Manager (CCM) may not be appropriate for storing the document, as these options are typically used for managing server configurations and not for document storage.

Submit
145. Which two statements are true about using the Where operator with an output context? (Choose two.)

Explanation

The first statement, "It must contain Boolean operators," is true because the Where operator is used to filter data based on certain conditions, and Boolean operators are necessary to define these conditions.

The second statement, "It restricts the data used to calculate the measure expression," is true because the Where operator allows you to specify criteria for selecting specific data points to be included in the calculation of a measure expression, effectively limiting the data set used for the calculation.

Submit
146. Which two methods can you use to define document properties? (Choose two.)

Explanation

To define document properties, you can use two methods: right-clicking the report tab and selecting "Document Properties" and entering the required information, and right-clicking a blank space on the report page, selecting "Document Properties" and entering the required information. These methods allow you to access the document properties and input the necessary details for the report.

Submit
147. Which two statements are true of an ambiguous query? (Choose two.)

Explanation

An ambiguous query can be resolved with a context because the context provides additional information or constraints that help clarify the query's meaning. Additionally, an ambiguous query contains all possible combinations of rows from the tables inferred by the objects because it lacks specificity or clarity, resulting in multiple potential interpretations or outcomes.

Submit
148. Which three are drill options? (Choose three.)

Explanation

The question asks for three drill options. The options "Hide drill toolbar," "Show drill filters," and "Synchronize drill on report blocks" are all drill options because they provide different functionalities related to drilling in a report. "Hide drill toolbar" allows the user to hide the toolbar that contains drill options, "Show drill filters" allows the user to see the filters applied during drilling, and "Synchronize drill on report blocks" ensures that drilling actions are synchronized across different report blocks.

Submit
149. Which operator should you use to control the output context of a calculation that is relevant to the different environment levels within your document?

Explanation

The operator "In" should be used to control the output context of a calculation that is relevant to the different environment levels within your document. This operator allows you to specify the scope or context in which the calculation should be performed, ensuring that it is applied only to the specific environment levels you want.

Submit
150. Which two locations can you use to set the drill options? (Choose two.)

Explanation

You can set the drill options in Preferences in InfoView and Tools/Options in Web Intelligence Rich Client. These locations provide settings and options for customizing the drill behavior and functionality in the respective platforms.

Submit
151. Which three layout options can you use when creating sections in a report? (Choose three.)

Explanation

When creating sections in a report, there are three layout options that can be used. The first option is "Relative Position", which allows the sections to be positioned relative to each other. The second option is "Start on New Page", which ensures that each section starts on a new page. The third option is "Keep Blocks Together", which prevents any blocks within a section from being split across multiple pages. These three options provide flexibility in organizing and presenting the content in a report.

Submit
152. Which two statements are true of grouping sets when using smart measures? (Choose two.)

Explanation

Grouping sets are sets of dimensions that generate results for measures. This means that when using smart measures, the grouping sets will determine how the measures are aggregated based on the dimensions included in the report. The generated SQL will include grouping sets for all the aggregations of the dimensions included in the report, allowing for comprehensive analysis and reporting.

Submit
View My Results

Quiz Review Timeline (Updated): Mar 22, 2023 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 22, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • May 05, 2011
    Quiz Created by
    CRTH
Cancel
  • All
    All (152)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
Which three calculations can you use in a measure object in Web...
Which panel should you use to create sub-queries?
How many blocks can you create in a Web Intelligence document (WID)?
Which Pos() function syntax should you use to find the location of the...
In the creation of a document, you have to import a personal data...
Which three object types can you use in a Web Intelligence universe...
Which function would you use to extract the word "pants"...
Which three elements are parts of a query filter? (Choose three.)
Which object types can you merge when using Multi Queries in a Web...
Which three objects represent qualifications from a local data...
You are creating a report to summarize the number of cars sold by...
Which BusinessObjects Enterprise tool supports Offline Mode logins?
Where is a Web Intelligence variable stored?
Where should you configure the regional settings of a Web Intelligence...
Which sort option should you use to add Temporary Values?
A variable in your report contains the statement:...
Which type of relationship links sub-queries by default?
Which function would you use to extract the word "casual"...
Which option can you use to convert a table block into a chart in Web...
Which two operators are used as calculation context operators? (Choose...
You are creating a report to summarize the number of cars sold by...
For what purposes can you use the Page Layout of a report?...
Which three options are default page number cells? (Choose three.)
Which four authentication methods are available for Web intelligence...
Which reporting tool should you use to create a Web Intelligence...
Which two are calculation context types?
You use the Last Refresh Date cell from the Templates in the Report...
Which two break properties can you use when setting Break Priority?...
Which two panels can you use to purge data from a BusinessObjects Web...
You use the Last Refresh Date cell from the Templates in the Report...
You need to create a report displaying a year-to-date aggregation on...
Which three types of local data files can you use to create a...
Which three options are valid Page Layout Options in the Properties...
Where are formulas stored when created in Web Intelligence?
Which two statements are true about Page Layout of a report? (Choose...
Which statement describes a Web Intelligence variable?
You are working with a set of store revenues. All stores have positive...
Where are contexts created?
You open a Web Intelligence document (WID) with tracked data changes....
Which options can you select when you save a Web Intelligence document...
Which two options should you take before you finish creating a...
Which two Web Intelligence Rich Client authentication methods enable...
Which method should you use to activate "Interactive...
Which three rules apply when you manually synchronize queries? (Choose...
Which three statements are true about alerters? (Choose three.)
Which three methods can you use to combine queries using the Web...
Which Report Manager tab should you use to add a free-standing cell to...
Which method can you use to hide data using an alerter?
Which Report Manager tab should you use to change report formatting?
You open a Web Intelligence document (WID) with data and want to use...
Which two functions could you use to concatenate the First Name and...
Which three methods can you use to apply a section in the Web...
You are working in the Web Intelligence Rich Client. Which two file...
Which method should you use to group query filters together to form...
What is the default behavior when creating a report from two queries...
Which two options are valid options when you save a Web Intelligence...
Which method should you use to see report filters?
You try to select a number of data objects from the Data tab to drag...
Which three data sources can you synchronize in a Web Intelligence XI...
In which two situations should you use sub-queries? (Choose two.)
You are reviewing a report with the following statement in a variable:...
Where can you set the default universe when using Web Intelligence...
Which statement is a benefit of using a Web Intelligence formula?
Which two are running aggregate functions in Web Intelligence? (Choose...
Which two operators can you use with output context in the Web...
Which Web Intelligence viewer panel should you use to create links to...
Which combination of functions should you use to convert the string...
Which three can you use to start the Web Intelligence Rich Client...
Which two options can you change when using Quick Display Mode?...
Which two personal folders are available by default to Web...
Which two statements are correct about saving documents? (Choose two.)
Which three features can you use in Interactive View mode of...
Which two data sources can you directly access from a Web Intelligence...
You are using calculation contexts within an If() function. Which two...
Which DaysBetween() function syntax should you use to calculate the...
You want to compare the sales revenue performance of the top 20% of...
Which two statements about the If() function are correct? (Choose...
What automatically happens when you create a chart using the Templates...
Which two statements are true about the AND operator? (Choose two.)
How do you duplicate a query?
Which two operators are available when using wildcards in a query...
Which three options are Web Intelligence drill mode options? (Choose...
Which method should you use to activate data tracking?
Which two statements are true of the Web Intelligence default behavior...
Which statement describes the performance impact that data tracking...
What is the maximum number of sub-alerts that an alerter can contain?
Which two are benefits of using breaks? (Choose two.)
Where can you set the priority options for saving a Web Intelligence...
Which four Report Elements can you select from the Templates tab of...
You are creating a "Target Revenue Based on Required %...
Which two statements describe reasons for using the FormatDate()...
Which Web Intelligence component should you use to list the existing...
You are working with a previously saved document and you have deleted...
What happens when you drop a dimension into a blank part of a report...
Which two functions can you use to concatenate the strings...
Which panel should you use to view a Document Summary of a...
Where do you set the "Optional prompt" option in Web...
You create a document with data from multiple data providers. Which...
Which tool do you use to edit merged objects in BusinessObjects Web...
Which three statements are true of contexts? (Choose three.)
Which two statements are true of contexts? (Choose two.)
Where in Web Intelligence Rich Client interface can you see the data...
You have a regional sales report with State, City and Sales Revenue...
Which two search criteria are valid when using Delegated List of...
Which statement is true of the Where operator when used within a...
Why would you use the FormatDate() function?...
Which three options appear in the Scope of Analysis pane in the Query...
Which three output context expressions are valid extended syntax...
Which two are benefits of creating queries from existing queries?...
Which message appears when you select "Use query drill"...
Which method can you use to build a custom sort?
How much impact does data tracking have on the data size of a Web...
To which destinations can you send a Web Intelligence document (WID)...
Where in a Web Intelligence report do you view merged objects in...
Which two methods can you use to aggregate measures at the section...
Which two methods can you use to apply report filters to a...
Which two properties can you set in the hyperlink dialog box when you...
Which two character functions can modify character string and return...
Which three are prerequisites for combining data from multiple data...
Which method should you use to force each section of a report to start...
You need to create a report that compares data to a reference data...
Which operators can be used in an Input calculation context ?...
Which scenarios should you use breaks for? (Choose two.)
Which is a benefit of using query drill?
What is the maximum number for alerters in a document?
A variable is a formula with a name stored in the query....
Which two settings can you configure for the Sample option in the...
Which method should you use to view alerts in a report?
You want to force the calculation context for a variable in a large...
Which three statements about the If() function are correct? (Choose...
You have created a BusinessObjects Web Intelligence XI 3.0 document...
Which statement is true about calculation contexts?
Which statement is true of an output context operator?
Which wildcards can you use in a query filter?...
Your document displays all data in black. Which dialog box should you...
Which method can you use to change the object qualification of an...
Which keyword is defined as flexible for input contexts?
Which three statements are true of calculation contexts? (Choose...
Which tab should you use to change the page orientation of a report?
For which tasks do you use an If() function?...
Which two statements are correct about hierarchies in Web...
You want to force the calculation context of a variable in a table so...
Which statement describes a benefit of using the NoFilter() function?
Which method should you use to store a Web Intelligence Rich Client...
Which two statements are true about using the Where operator with an...
Which two methods can you use to define document properties? (Choose...
Which two statements are true of an ambiguous query? (Choose two.)
Which three are drill options? (Choose three.)
Which operator should you use to control the output context of a...
Which two locations can you use to set the drill options? (Choose...
Which three layout options can you use when creating sections in a...
Which two statements are true of grouping sets when using smart...
Alert!

Advertisement