Verified Professional-Data-Engineer Exam Dumps Q&As - Provide Professional-Data-Engineer with Correct Answers
Pass Your Professional-Data-Engineer Dumps Free Latest Google Practice Tests
How to Prepare For Google Professional Data Engineer Exam
Preparation Guide for Google Professional Data Engineer Exam
Introduction to Google Professional Data Engineer Exam
Google has established a path for IT professionals endorse as a Data Engineer on the GCP platform. This accreditation program gives Google cloud professionals a way to endorse their skills. The evaluation relies on a meticulous exam using industry standard methodology to conclude whether or not a aspirant meets Google's proficiency standards.
The Professional Data Engineer exam assesses your ability to:
- Ensure solution quality
- Design data processing systems
- Build and operationalize data processing systems
- Operationalize machine learning models
Google Professional Data Engineer Exam certification is evidence of your skills, expertise in those areas in which you like to work. If candidate wants to work on Google Professional Data Engineer and prove his knowledge, Certification offered by Google. This Google Professional Data Engineer Certification helps a candidate to validates his skills in Big Data and Data engineering Technology.
NEW QUESTION # 143
Your financial services company is moving to cloud technology and wants to store 50 TB of financial time-
series data in the cloud. This data is updated frequently and new data will be streaming in all the time.
Your company also wants to move their existing Apache Hadoop jobs to the cloud to get insights into this
data. Which product should they use to store the data?
- A. Google BigQuery
- B. Google Cloud Storage
- C. Cloud Bigtable
- D. Google Cloud Datastore
Answer: C
Explanation:
Explanation/Reference:
Reference: https://cloud.google.com/bigtable/docs/schema-design-time-series
NEW QUESTION # 144
You are designing storage for 20 TB of text files as part of deploying a data pipeline on Google Cloud. Your input data is in CSV format. You want to minimize the cost of querying aggregate values for multiple users who will query the data in Cloud Storage with multiple engines. Which storage service and schema design should you use?
- A. Use Cloud Storage for storage. Link as temporary tables in BigQuery for query.
- B. Use Cloud Bigtable for storage. Link as permanent tables in BigQuery for query.
- C. Use Cloud Bigtable for storage. Install the HBase shell on a Compute Engine instance to query the Cloud Bigtable data.
- D. Use Cloud Storage for storage. Link as permanent tables in BigQuery for query.
Answer: C
NEW QUESTION # 145
You want to use a database of information about tissue samples to classify future tissue samples as either normal or mutated. You are evaluating an unsupervised anomaly detection method for classifying the tissue samples. Which two characteristic support this method? (Choose two.)
- A. There are roughly equal occurrences of both normal and mutated samples in the database.
- B. You expect future mutations to have different features from the mutated samples in the database.
- C. You expect future mutations to have similar features to the mutated samples in the database.
- D. There are very few occurrences of mutations relative to normal samples.
- E. You already have labels for which samples are mutated and which are normal in the database.
Answer: C,D
Explanation:
Unsupervised anomaly detection techniques detect anomalies in an unlabeled test data set under the assumption that the majority of the instances in the data set are normal by looking for instances that seem to fit least to the remainder of the data set. https://en.wikipedia.org/wiki/Anomaly_detection
NEW QUESTION # 146
You are deploying a new storage system for your mobile application, which is a media streaming service.
You decide the best fit is Google Cloud Datastore. You have entities with multiple properties, some of which can take on multiple values. For example, in the entity 'Movie'the property 'actors'and the property 'tags' have multiple values but the property 'date released' does not. A typical query would ask for all movies with actor=<actorname>ordered by date_releasedor all movies with tag=Comedyordered by date_released. How should you avoid a combinatorial explosion in the number of indexes?
- A. Set the following in your entity options: exclude_from_indexes = 'date_published'
- B. Manually configure the index in your index config as follows:

- C. Manually configure the index in your index config as follows:

- D. Set the following in your entity options: exclude_from_indexes = 'actors, tags'
Answer: C
NEW QUESTION # 147
Dataproc clusters contain many configuration files. To update these files, you will need to use the --properties option. The format for the option is: file_prefix:property=_____.
- A. value
- B. id
- C. null
- D. details
Answer: A
Explanation:
To make updating files and properties easy, the --properties command uses a special format to specify the configuration file and the property and value within the file that should be updated. The formatting is as follows: file_prefix:property=value.
Reference: https://cloud.google.com/dataproc/docs/concepts/cluster-properties#formatting
NEW QUESTION # 148
Which of the following IAM roles does your Compute Engine account require to be able to run pipeline jobs?
- A. dataflow.compute
- B. dataflow.viewer
- C. dataflow.developer
- D. dataflow.worker
Answer: D
Explanation:
The dataflow.worker role provides the permissions necessary for a Compute Engine service account to execute work units for a Dataflow pipeline Reference: https://cloud.google.com/dataflow/access-control
NEW QUESTION # 149
You create an important report for your large team in Google Data Studio 360. The report uses Google
BigQuery as its data source. You notice that visualizations are not showing data that is less than 1 hour
old. What should you do?
- A. Refresh your browser tab showing the visualizations.
- B. Disable caching in BigQuery by editing table details.
- C. Clear your browser history for the past hour then reload the tab showing the virtualizations.
- D. Disable caching by editing the report settings.
Answer: D
Explanation:
Explanation/Reference:
Reference: https://support.google.com/datastudio/answer/7020039?hl=en
NEW QUESTION # 150
Your financial services company is moving to cloud technology and wants to store 50 TB of financial time- series data in the cloud. This data is updated frequently and new data will be streaming in all the time. Your company also wants to move their existing Apache Hadoop jobs to the cloud to get insights into this data.
Which product should they use to store the data?
- A. Google BigQuery
- B. Google Cloud Storage
- C. Cloud Bigtable
- D. Google Cloud Datastore
Answer: C
Explanation:
https://cloud.google.com/blog/products/databases/getting-started-with-time-series-trend-predictions-using- gcp
NEW QUESTION # 151
You need to choose a database to store time series CPU and memory usage for millions of computers. You need to store this data in one-second interval samples. Analysts will be performing real-time, ad hoc analytics against the database. You want to avoid being charged for every query executed and ensure that the schema design will allow for future growth of the dataset. Which database and data model should you choose?
- A. Create a wide table in Cloud Bigtable with a row key that combines the computer identifier with the sample time at each minute, and combine the values for each second as column data.
- B. Create a narrow table in Cloud Bigtable with a row key that combines the Computer Engine computer identifier with the sample time at each second
- C. Create a wide table in BigQuery, create a column for the sample value at each second, and update the row with the interval for each second
- D. Create a table in BigQuery, and append the new samples for CPU and memory to the table
Answer: B
Explanation:
A tall and narrow table has a small number of events per row, which could be just one event, whereas a short and wide table has a large number of events per row. As explained in a moment, tall and narrow tables are best suited for time-series data. For time series, you should generally use tall and narrow tables. This is for two reasons: Storing one event per row makes it easier to run queries against your data. Storing many events per row makes it more likely that the total row size will exceed the recommended maximum (see Rows can be big but are not infinite).
https://cloud.google.com/bigtable/docs/schema-design-time-series#patterns_for_row_key_design
NEW QUESTION # 152
You have some data, which is shown in the graphic below. The two dimensions are X and Y, and the shade of each dot represents what class it is. You want to classify this data accurately using a linear algorithm.
To do this you need to add a synthetic feature. What should the value of that feature be?
- A. Y^2
- B. X^2+Y^2
- C. X^2
- D. cos(X)
Answer: D
NEW QUESTION # 153
You work for an economic consulting firm that helps companies identify economic trends as they happen. As part of your analysis, you use Google BigQuery to correlate customer data with the average prices of the 100 most common goods sold, including bread, gasoline, milk, and others. The average prices of these goods are updated every 30 minutes. You want to make sure this data stays up to date so you can combine it with other data in BigQuery as cheaply as possible. What should you do?
- A. Store the data in Google Cloud Datastore. Use Google Cloud Dataflow to query BigQuery and combine the data programmatically with the data stored in Cloud Datastore
- B. Store and update the data in a regional Google Cloud Storage bucket and create a federated data source in BigQuery
- C. Load the data every 30 minutes into a new partitioned table in BigQuery.
- D. Store the data in a file in a regional Google Cloud Storage bucket. Use Cloud Dataflow to query BigQuery and combine the data programmatically with the data stored in Google Cloud Storage.
Answer: A
Explanation:
Explanation
NEW QUESTION # 154
MJTelco Case Study
Company Overview
MJTelco is a startup that plans to build networks in rapidly growing, underserved markets around the
world. The company has patents for innovative optical communications hardware. Based on these patents,
they can create many reliable, high-speed backbone links with inexpensive hardware.
Company Background
Founded by experienced telecom executives, MJTelco uses technologies originally developed to
overcome communications challenges in space. Fundamental to their operation, they need to create a
distributed data infrastructure that drives real-time analysis and incorporates machine learning to
continuously optimize their topologies. Because their hardware is inexpensive, they plan to overdeploy the
network allowing them to account for the impact of dynamic regional politics on location availability and
cost.
Their management and operations teams are situated all around the globe creating many-to-many
relationship between data consumers and provides in their system. After careful consideration, they
decided public cloud is the perfect environment to support their needs.
Solution Concept
MJTelco is running a successful proof-of-concept (PoC) project in its labs. They have two primary needs:
Scale and harden their PoC to support significantly more data flows generated when they ramp to more
than 50,000 installations.
Refine their machine-learning cycles to verify and improve the dynamic models they use to control
topology definition.
MJTelco will also use three separate operating environments - development/test, staging, and production
- to meet the needs of running experiments, deploying new features, and serving production customers.
Business Requirements
Scale up their production environment with minimal cost, instantiating resources when and where
needed in an unpredictable, distributed telecom user community.
Ensure security of their proprietary data to protect their leading-edge machine learning and analysis.
Provide reliable and timely access to data for analysis from distributed research workers
Maintain isolated environments that support rapid iteration of their machine-learning models without
affecting their customers.
Technical Requirements
Ensure secure and efficient transport and storage of telemetry data
Rapidly scale instances to support between 10,000 and 100,000 data providers with multiple flows
each.
Allow analysis and presentation against data tables tracking up to 2 years of data storing approximately
100m records/day
Support rapid iteration of monitoring infrastructure focused on awareness of data pipeline problems
both in telemetry flows and in production learning cycles.
CEO Statement
Our business model relies on our patents, analytics and dynamic machine learning. Our inexpensive
hardware is organized to be highly reliable, which gives us cost advantages. We need to quickly stabilize
our large distributed data pipelines to meet our reliability and capacity commitments.
CTO Statement
Our public cloud services must operate as advertised. We need resources that scale and keep our data
secure. We also need environments in which our data scientists can carefully study and quickly adapt our
models. Because we rely on automation to process our data, we also need our development and test
environments to work as we iterate.
CFO Statement
The project is too large for us to maintain the hardware and software required for the data and analysis.
Also, we cannot afford to staff an operations team to monitor so many data feeds, so we will rely on
automation and infrastructure. Google Cloud's machine learning will allow our quantitative researchers to
work on our high-value problems instead of problems with our data pipelines.
You need to compose visualizations for operations teams with the following requirements:
The report must include telemetry data from all 50,000 installations for the most resent 6 weeks
(sampling once every minute).
The report must not be more than 3 hours delayed from live data.
The actionable report should only show suboptimal links.
Most suboptimal links should be sorted to the top.
Suboptimal links can be grouped and filtered by regional geography.
User response time to load the report must be <5 seconds.
Which approach meets the requirements?
- A. Load the data into Google BigQuery tables, write a Google Data Studio 360 report that connects to
your data, calculates a metric, and then uses a filter expression to show only suboptimal rows in a
table. - B. Load the data into Google BigQuery tables, write Google Apps Script that queries the data, calculates
the metric, and shows only suboptimal rows in a table in Google Sheets. - C. Load the data into Google Sheets, use formulas to calculate a metric, and use filters/sorting to show
only suboptimal links in a table. - D. Load the data into Google Cloud Datastore tables, write a Google App Engine Application that queries
all rows, applies a function to derive the metric, and then renders results in a table using the Google
charts and visualization API.
Answer: D
NEW QUESTION # 155
A shipping company has live package-tracking data that is sent to an Apache Kafka stream in real time. This is then loaded into BigQuery. Analysts in your company want to query the tracking data in BigQuery to analyze geospatial trends in the lifecycle of a package. The table was originally created with ingest-date partitioning.
Over time, the query processing time has increased. You need to implement a change that would improve query performance in BigQuery. What should you do?
- A. Implement clustering in BigQuery on the ingest date column.
- B. Implement clustering in BigQuery on the package-tracking ID column.
- C. Tier older data onto Google Cloud Storage files and create a BigQuery table using GCS as an external data source.
- D. Re-create the table using data partitioning on the package delivery date.
Answer: B
NEW QUESTION # 156
When you store data in Cloud Bigtable, what is the recommended minimum amount of stored data?
- A. 1 GB
- B. 1 TB
- C. 500 GB
- D. 500 TB
Answer: B
Explanation:
Explanation
Cloud Bigtable is not a relational database. It does not support SQL queries, joins, or multi-row transactions. It is not a good solution for less than 1 TB of data.
Reference: https://cloud.google.com/bigtable/docs/overview#title_short_and_other_storage_options
NEW QUESTION # 157
You need to move 2 PB of historical data from an on-premises storage appliance to Cloud Storage within six months, and your outbound network capacity is constrained to 20 Mb/sec. How should you migrate this data to Cloud Storage?
- A. Use Transfer Appliance to copy the data to Cloud Storage
- B. Use trickle or ionice along with gsutil cp to limit the amount of bandwidth gsutil utilizes to less than 20 Mb/ sec so it does not interfere with the production traffic
- C. Create a private URL for the historical data, and then use Storage Transfer Service to copy the data to Cloud Storage
- D. Use gsutil cp -Jto compress the content being uploaded to Cloud Storage
Answer: A
Explanation:
Explanation/Reference:
NEW QUESTION # 158
Your company has hired a new data scientist who wants to perform complicated analyses across very large datasets stored in Google Cloud Storage and in a Cassandra cluster on Google Compute Engine.
The scientist primarily wants to create labelled data sets for machine learning projects, along with some visualization tasks. She reports that her laptop is not powerful enough to perform her tasks and it is slowing her down. You want to help her perform her tasks. What should you do?
- A. Host a visualization tool on a VM on Google Compute Engine.
- B. Deploy Google Cloud Datalab to a virtual machine (VM) on Google Compute Engine.
- C. Grant the user access to Google Cloud Shell.
- D. Run a local version of Jupiter on the laptop.
Answer: C
NEW QUESTION # 159
You have a petabyte of analytics data and need to design a storage and processing platform for it. You must be able to perform data warehouse-style analytics on the data in Google Cloud and expose the dataset as files for batch analysis tools in other cloud providers. What should you do?
- A. Store and process the entire dataset in Cloud Bigtable.
- B. Store and process the entire dataset in BigQuery.
- C. Store the warm data as files in Cloud Storage, and store the active data in BigQuery. Keep this ratio as
80% warm and 20% active. - D. Store the full dataset in BigQuery, and store a compressed copy of the data in a Cloud Storage bucket.
Answer: D
NEW QUESTION # 160
Your company is migrating its on-premises data warehousing solution to BigQuery. The existing data warehouse uses trigger-based change data capture (CDC) to apply daily updates from transactional database sources Your company wants to use BigQuery to improve its handling of CDC and to optimize the performance of the data warehouse Source system changes must be available for query m near-real time using tog-based CDC streams You need to ensure that changes in the BigQuery reporting table are available with minimal latency and reduced overhead. What should you do? Choose 2 answers
- A. Insert each new CDC record and corresponding operation type into the reporting table in real time and use a materialized view to expose only the current version of each unique record.
- B. Periodically DELETE outdated records from the reporting table
Periodically use a DML MERGE to simultaneously perform DML INSERT. UPDATE, and DELETE operations in the reporting table - C. Insert each new CDC record and corresponding operation type into a staging table in real time
- D. Perform a DML INSERT UPDATE, or DELETE to replicate each CDC record in the reporting table m real time.
Answer: A,B
NEW QUESTION # 161
You are working on a sensitive project involving private user dat
- A. You have set up a project on Google Cloud Platform to house your work internally. An external consultant is going to assist with coding a complex transformation in a Google Cloud Dataflow pipeline for your project. How should you maintain users' privacy?
- B. Grant the consultant the Cloud Dataflow Developer role on the project.
- C. Create an anonymized sample of the data for the consultant to work with in a different project.
- D. Grant the consultant the Viewer role on the project.
- E. Create a service account and allow the consultant to log on with it.
Answer: B
NEW QUESTION # 162
You are building a data pipeline on Google Cloud. You need to prepare data using a casual method for a machine-learning process. You want to support a logistic regression model. You also need to monitor and adjust for null values, which must remain real-valued and cannot be removed. What should you do?
- A. Use Cloud Dataprep to find null values in sample source data. Convert all nulls to `none' using a Cloud Dataproc job.
- B. Use Cloud Dataflow to find null values in sample source data. Convert all nulls to using a custom script.
- C. Use Cloud Dataprep to find null values in sample source data. Convert all nulls to 0 using a Cloud Dataprep job.
- D. Use Cloud Dataflow to find null values in sample source data. Convert all nulls to `none' using a Cloud Dataprep job.
Answer: C
NEW QUESTION # 163
Flowlogistic's CEO wants to gain rapid insight into their customer base so his sales team can be better informed in the field. This team is not very technical, so they've purchased a visualization tool to simplify the creation of BigQuery reports. However, they've been overwhelmed by all the data in the table, and are spending a lot of money on queries trying to find the data they need. You want to solve their problem in the most cost-effective way. What should you do?
- A. Export the data into a Google Sheet for virtualization.
- B. Create a view on the table to present to the virtualization tool.
- C. Create an additional table with only the necessary columns.
- D. Create identity and access management (IAM) roles on the appropriate columns, so only they appear in a query.
Answer: B
Explanation:
Topic 2, MJTelco Case Study
Company Overview
MJTelco is a startup that plans to build networks in rapidly growing, underserved markets around the world.
The company has patents for innovative optical communications hardware. Based on these patents, they can create many reliable, high-speed backbone links with inexpensive hardware.
Company Background
Founded by experienced telecom executives, MJTelco uses technologies originally developed to overcome communications challenges in space. Fundamental to their operation, they need to create a distributed data infrastructure that drives real-time analysis and incorporates machine learning to continuously optimize their topologies. Because their hardware is inexpensive, they plan to overdeploy the network allowing them to account for the impact of dynamic regional politics on location availability and cost.
Their management and operations teams are situated all around the globe creating many-to-many relationship between data consumers and provides in their system. After careful consideration, they decided public cloud is the perfect environment to support their needs.
Solution Concept
MJTelco is running a successful proof-of-concept (PoC) project in its labs. They have two primary needs:
* Scale and harden their PoC to support significantly more data flows generated when they ramp to more than 50,000 installations.
* Refine their machine-learning cycles to verify and improve the dynamic models they use to control topology definition.
MJTelco will also use three separate operating environments - development/test, staging, and production - to meet the needs of running experiments, deploying new features, and serving production customers.
Business Requirements
* Scale up their production environment with minimal cost, instantiating resources when and where needed in an unpredictable, distributed telecom user community.
* Ensure security of their proprietary data to protect their leading-edge machine learning and analysis.
* Provide reliable and timely access to data for analysis from distributed research workers
* Maintain isolated environments that support rapid iteration of their machine-learning models without affecting their customers.
Technical Requirements
Ensure secure and efficient transport and storage of telemetry data
Rapidly scale instances to support between 10,000 and 100,000 data providers with multiple flows each.
Allow analysis and presentation against data tables tracking up to 2 years of data storing approximately 100m records/day Support rapid iteration of monitoring infrastructure focused on awareness of data pipeline problems both in telemetry flows and in production learning cycles.
CEO Statement
Our business model relies on our patents, analytics and dynamic machine learning. Our inexpensive hardware is organized to be highly reliable, which gives us cost advantages. We need to quickly stabilize our large distributed data pipelines to meet our reliability and capacity commitments.
CTO Statement
Our public cloud services must operate as advertised. We need resources that scale and keep our data secure.
We also need environments in which our data scientists can carefully study and quickly adapt our models.
Because we rely on automation to process our data, we also need our development and test environments to work as we iterate.
CFO Statement
The project is too large for us to maintain the hardware and software required for the data and analysis. Also, we cannot afford to staff an operations team to monitor so many data feeds, so we will rely on automation and infrastructure. Google Cloud's machine learning will allow our quantitative researchers to work on our high-value problems instead of problems with our data pipelines.
NEW QUESTION # 164
......
Get Top-Rated Google Professional-Data-Engineer Exam Dumps Now: https://www.trainingdump.com/Google/Professional-Data-Engineer-practice-exam-dumps.html
Professional-Data-Engineer Exam Dumps Pass with Updated Tests Dumps: https://drive.google.com/open?id=1juWIl9vtSu02gGw-YpUMKccbstU0N9H7