Simulado AWS Certified Big Data – Specialty (BDS-C00) | Questões Atualizadas

Prepare-se para a certificação AWS Certified Big Data – Specialty (BDS-C00) com simulados completos, questões atualizadas, respostas comentadas e uma experiência semelhante ao exame oficial da AWS.

15 questões abertas
260 na preparação
01:00 duração
70% para passar
Pagamento seguro Acesso imediato PC, tablet e celular Foco em certificações de TI

Questões 1–10 de 15 (com resposta)

Clique em "Ver resposta" para revelar o gabarito e a explicação, e participe da discussão da comunidade em cada questão. Quer praticar como na prova? Use o teste gratuito (15 questões após cadastro rápido).

Questão 1 Simulado AWS Certified Big Data – Specialty (BDS-C00) | Questões Atualizadas

Gratuita
You are currently hosting multiple applications in a VPC and have logged numerous port scans coming in from a specific IP address block. Your security team has requested that all access from the offending IP address block be denied for the next 24 hours. Which of the following is the best method to quickly and temporarily deny access from the specified IP address block?
  • A Create an AD policy to modify Windows Firewall settings on all hosts in the VPC to deny access from the IP address block
  • B Modify the Network ACLs associated with all public subnets in the VPC to deny access from the IP address block Correta
  • C Add a rule to all of the VPC 5 Security Groups to deny access from the IP address block
  • D Modify the Windows Firewall settings on all Amazon Machine Images (AMIs) that your organization uses in that VPC to deny access from the IP address block
Resposta correta: B

Questão 2 Simulado AWS Certified Big Data – Specialty (BDS-C00) | Questões Atualizadas

Gratuita
A company that manufactures and sells smart air conditioning units also offers add-on services so that customers can see real-time dashboards in a mobile application or a web browser. Each unit sends its sensor information in JSON format every two seconds for processing and analysis. The company also needs to consume this data to predict possible equipment problems before they occur. A few thousand pre- purchased units will be delivered in the next couple of months. The company expects high market growth in the next year and needs to handle a massive amount of data and scale interruption. Which ingestion solution should the company use?
  • A Write sensor data records to Amazon Kinesis Streams. Process the data using KCL applications for the end-consumer dashboard and anomaly detection workflows. Correta
  • B Batch sensor data Amazon Simple Storage Service (S3) every 15 minutes. Flow the data downstream to the end-consumer dashboard and to the anomaly detection application.
  • C Write sensor data records to Amazon Kinesis Firehose with Amazon Simply Storage Service (S3) as the destination. Consume the data with a KCL application for the end-consumer dashboard and anomaly detection.
  • D Write sensor data records to Amazon Relational Database Service (RDS). Build both the end- consumer dashboard application on top of Amazon RDS.
Resposta correta: A

Explicação

Explanation: https://aws.amazon.com/kinesis/data-firehose/faqs/

Questão 3 Simulado AWS Certified Big Data – Specialty (BDS-C00) | Questões Atualizadas

Gratuita
Amazon S3 doesn't automatically give a user who creates permission to perform other actions on that bucket or object.
  • A a file
  • B a bucket or object Correta
  • C a bucket or file
  • D a object or file
Resposta correta: B

Questão 4 Simulado AWS Certified Big Data – Specialty (BDS-C00) | Questões Atualizadas

Gratuita
The operations team and the development team want a single place to view both operating system and application logs. How should you implement this using AWS services? Choose two answers
  • A Using AWS CloudFormation, create a CloudWatch Logs LogGroup and send the operating system and application logs of interest using the CloudWatch Logs Agent Correta
  • B Using AWS CloudFormation and configuration management, set up remote logging to send events via UDP packets to CloudTrail
  • C Using configuration management, set up remote logging to send events to Amazon Kinesis and insert these into Amazon CloudSearch or Amazon Redshift, depending on available analytic tools Correta
  • D Using AWS CloudFormation, create a CloudWatch Logs LogGroup. Because the CloudWatch log agent automatically sends all operating system logs, you only have to configure the application logs for sending off-machine
  • E Using AWS CloudFormation, merge the application logs with the operating system logs, and use IAM Roles to allow both teams to have access to view console output from Amazon EC2
Resposta correta: A, C

Questão 5 Simulado AWS Certified Big Data – Specialty (BDS-C00) | Questões Atualizadas

Gratuita
An administrator receives about 100 files per hour into Amazon S3 and will be loading the files into Amazon Redshift. Customers who analyze the data within Redshift gain significant value when they receive data as quickly as possible. The customers have agreed to a maximum loading interval of 5 minutes. Which loading approach should the administrator use to meet this objective?
  • A Load each file as it arrives because getting data into the cluster as quickly as possible is the priority.
  • B Load the cluster as soon as the administrator has the same number of files as nodes in the cluster.
  • C Load the cluster when the administrator has an even multiple of files relative to Cluster Slice Count, or 5 minutes whichever comes first. Correta
  • D Load the cluster when the number files is less than the Cluster Slice Count.
Resposta correta: C

Questão 6 Simulado AWS Certified Big Data – Specialty (BDS-C00) | Questões Atualizadas

Gratuita
Can I attach more than one policy to a particular entity?
  • A Yes always Correta
  • B Only if within GovCloud
  • C No
  • D Only if within VPC
Resposta correta: A

Questão 7 Simulado AWS Certified Big Data – Specialty (BDS-C00) | Questões Atualizadas

Gratuita
You are working with customer who has 10 TB of archival data that they want to migrate to Amazon Glacier. The customer has a 1Mbps connection to the Internet. Which service or feature provide the fastest method of getting the data into Amazon Glacier?
  • A Amazon Glacier multipart upload
  • B AWS Storage Gateway
  • C VM Import/Export
  • D AWS Import/Export Correta
Resposta correta: D

Questão 8 Simulado AWS Certified Big Data – Specialty (BDS-C00) | Questões Atualizadas

Gratuita
An online retailer is using Amazon DynamoDB to store data relate to customer transactions. The items in the table contain several string attributes describing the transaction as well as a JSON attribute containing the shopping cart and other details corresponding to the transactions. Average item size is ~250KB, most of which is associated with the JSON attribute. The average generates ~3GB of data per month. Customers access the table to display their transaction history and review transaction details as needed. Ninety percent of queries against the table are executed when building the transaction history view, with the other 10% retrieving transaction details. The table is partitioned on CustomerID and sorted on transaction data. The client has very high read capacity provisioned for the table and experiences very even utilization, but complains about the cost of Amazon DynamoDB compared to other NoSQL solutions. Which strategy will reduce the cost associated with the client's read queries while not degrading quality?
  • A Modify all database calls to use eventually consistent reads and advise customers that transaction history may be one second out-of-date.
  • B Change the primary table to partition on TransactionID, create a GSI partitioned on customer and sorted on date, project small attributes into GSI and then query GSI for summary data and the primary table for JSON details.
  • C Vertically partition the table, store base attributes on the primary table and create a foreign key reference to a secondary table containing the JSON data. Query the primary table for summary data and the secondary table for JSON details. Correta
  • D Create an LSI sorted on date project the JSON attribute into the index and then query the primary table for summary data and the LSI for JSON details
Resposta correta: C

Questão 9 Simulado AWS Certified Big Data – Specialty (BDS-C00) | Questões Atualizadas

Gratuita
Fill in the blanks: A is a storage device that moves data in sequences of bytes or bits (blocks). Hint: These devices support random access and generally use buffered I/O.
  • A block map
  • B storage block
  • C mapping device
  • D block device Correta
Resposta correta: D

Questão 10 Simulado AWS Certified Big Data – Specialty (BDS-C00) | Questões Atualizadas

Gratuita
A user has provisioned 2000 IOPS to the EBS volume. The application hosted on that EBS is experiencing less IOPS than provisioned. Which of the below mentioned options does not affect the IOPS of the volume?
  • A The application does not have enough IO for the volume
  • B The instance is EBS optimized
  • C The EC2 instance has 10 Gigabit Network connectivity
  • D The volume size is too large Correta
Resposta correta: D

Pronto para a prática real?

Teste 15 questões no player com interface de prova — cronômetro, navegação e revisão. Depois garanta acesso a todas as 260 questões.

Simular a prova grátis agora Quero me preparar

Desbloqueie 260 questões

Você já viu o índice das 15 questões abertas. A preparação completa inclui mais 245 questões, modo prova, progresso salvo e acesso por 90 dias.

R$ 198,00

Quero me preparar