Google Cloud Professional Data Engineer — Question 48

You work for a large fast food restaurant chain with over 400,000 employees. You store employee information in Google BigQuery in a Users table consisting of a FirstName field and a LastName field. A member of IT is building an application and asks you to modify the schema and data in BigQuery so the application can query a FullName field consisting of the value of the FirstName field concatenated with a space, followed by the value of the LastName field for each employee. How can you make that data available while minimizing cost?

Answer options

Correct answer: A

Explanation

Creating a view in BigQuery is the most cost-effective solution because it does not require additional storage or data manipulation, allowing real-time querying of the FullName without altering the existing structure. The other options involve more complex processes that incur higher costs, such as updating the table, creating new tables, or exporting and importing data.