-
Notifications
You must be signed in to change notification settings - Fork 3
/
web-scrap-exam4training.csv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 2123.
3816 lines (2123 loc) · 155 KB
/
web-scrap-exam4training.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
### You have an Azure Active Directory (Azure AD) tenant named adatum.com that contains the users shown in the following table
- [x]
### You have an Azure subscription named Subscription1 that contains the resources in the following table
### Which blade should you instruct the finance department auditors to use?
- [ ] invoices
- [ ] partner information
- [x] cost analysis
- [ ] External services
### You have a sync group named Sync1 that has a cloud endpoint. The cloud endpoint includes a file named File1.txt.
You on-premises network contains servers that run Windows Server 2016.
The servers are configured as shown in the following table
### Which two actions should you perform? Each correct selection presents part of the solution. NOTE: Each correct selection is worth one point.
- [x] From the Firewalls and virtual networks blade of account1, add the 131.107.1.0/24 IP address range.
- [ ] From the Firewalls and virtual networks blade of account1, select Selected networks.
- [ ] From the Firewalls and virtual networks blade of acount1, add VNet1.
- [ ] From the Firewalls and virtual networks blade of account1, select Allow trusted Microsoft services to access this storage account. From the Service endpoints blade of VNet1, add a service endpoint.
- [ ] From the Service endpoints blade of VNet1, add a service endpoint### What should you do?
- [ ] From the Groups blade, invite the user accounts to a new group.
- [x] From the Profile blade, modify the usage locationTopic 3, Contoso Ltd
- [x]
### Does this meet the goal?
- [x] YesB ### What should you create and configure?
- [ ] an Azure Notification Hub
- [x] an Azure Event Hub
- [ ] an Azure Logic App
- [ ] an Azure services Bus
### You need to the appropriate sizes for the Azure virtual for Server2.
What should you do? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point
### You have an Azure subscription that contains an Azure Storage account named storage1 and the users shown in the following table
### You need to prepare the environment to ensure that the web administrators can deploy the web apps as quickly as possible.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order
### What should you do?
- [ ] From the Roles and administrators blade, assign the Security administrator role to Admin1.
- [ ] From the Organizational relationships blade, add an identity provider.
- [ ] From the Custom domain names blade, add a custom domain.
- [x] From the Users blade, modify the External collaboration settings
### What should you do first?
- [ ] From contoso.com, modify the Organization relationships settings.
- [x] From contoso.com, create an OAuth 2.0 authorization endpoint.
- [ ] Recreate AKS1.
- [ ] From AKS1, create a namespace
### You need to configure the Device settings to meet the technical requirements and the user requirements.
Which two settings should you modify? To answer, select the appropriate settings in the answer area
### You need to meet the connection requirements for the New York office.
What should you do? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point
### You have an Azure subscription named Subscription1 that contains the resources shown in the following table
### Which two actions should you perform? Each correct selection presents part of the solution. NOTE: Each correct selection is worth one point.
- [x] From the Firewalls and virtual networks blade of account1, add the 131.107.1.0/24 IP address range.
- [ ] From the Firewalls and virtual networks blade of account1, select Selected networks.
- [ ] From the Firewalls and virtual networks blade of acount1, add VNet1.
- [ ] From the Firewalls and virtual networks blade of account1, select Allow trusted Microsoft services to access this storage account. From the Service endpoints blade of VNet1, add a service endpoint.
- [ ] From the Service endpoints blade of VNet1, add a service endpoint### What should you use?
- [ ] Diagram in VNet1
- [ ] the security recommendations in Azure Advisor
- [ ] Diagnostic settings in Azure Monitor
- [ ] Diagnose and solve problems in Traffic Manager ProfilesIP flow verify in Azure Network Watcher
- [ ] IP flow verify in Azure Network Watcher
### Does this meet the goal?
- [ ] Yes
- [x]
You have an Azure virtual machine named VM1.
The network interface for VM1 is configured as shown in the exhibit. (Click the Exhibit tab.)
You have an azure subscription named Subscription that contains the resource groups shown in the following table- [x]
### You need to prepare the environment to ensure that the web administrators can deploy the web apps as quickly as possible.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order
Topic 1, Litware, inc
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have an Azure subscription that contains the following users in an Azure Active Directory tenant named contoso.onmicrosoft.com:
- [x]
### Which two actions should you perform? Each correct selection presents part of the solution. NOTE: Each correct selection is worth one point.
- [x] From the Firewalls and virtual networks blade of account1, add the 131.107.1.0/24 IP address range.
- [ ] From the Firewalls and virtual networks blade of account1, select Selected networks.
- [ ] From the Firewalls and virtual networks blade of acount1, add VNet1.
- [ ] From the Firewalls and virtual networks blade of account1, select Allow trusted Microsoft services to access this storage account. From the Service endpoints blade of VNet1, add a service endpoint.
- [ ] From the Service endpoints blade of VNet1, add a service endpoint### You need to identify the storage requirements for Contoso.
For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point
### What should you do?
- [ ] From the Groups blade, invite the user accounts to a new group.
- [x] From the Profile blade, modify the usage location
### Which two actions should you perform? Each correct selection presents part of the solution. NOTE: Each correct selection is worth one point.
- [x] From the Firewalls and virtual networks blade of account1, add the 131.107.1.0/24 IP address range.
- [ ] From the Firewalls and virtual networks blade of account1, select Selected networks.
- [ ] From the Firewalls and virtual networks blade of acount1, add VNet1.
- [ ] From the Firewalls and virtual networks blade of account1, select Allow trusted Microsoft services to access this storage account. From the Service endpoints blade of VNet1, add a service endpoint.
- [ ] From the Service endpoints blade of VNet1, add a service endpoint.
Your on-premises network contains an Active Directory domain named adatum.com that is synced to Azure Active Directory (Azure AD). Password writeback is disabled.
In adatum.com, you create the users shown in the following table
### What should you do?
- [ ] From Active Directory Users and Computers, select the user accounts, and then modify the User Principal Name value.
- [x] Run idfix.exe, and then use the Edit action.
- [ ] From Active Directory Domains and Trusts, modify the list of UPN suffixes.
- [ ] From Azure AD Connect, modify the outbound synchronization rule
### You have an Azure Active Directory (Azure AD) tenant named adatum.com.
Adatum.com contains the groups in the following table
### You need to identify the storage requirements for Contoso.
For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point
### You have an Azure subscription that contains an Azure Availability Set named WEBPROD-AS-USE2 as shown in the following exhibit
You have an Azure subscription named Subscription1 that contains the resources shown in the following table- [x]
### You have an Azure subscription that contains the public load balancers shown in the following table
### What should you specify?
- [ ] metric alert
- [x] Azure Log Analytics workspace
- [ ] virtual machine
- [ ] virtual machine extension
### Which changes will be lost after you redeploy VM1?
- [ ] the modified screen saver timeout
- [ ] the new desktop background
- [x] the new files on drive
- [ ] The new files on drive C
### What is the minimum number of backup policies that you must create?
- [ ] 1
- [ ] 2
- [x] 3
- [ ] 150170
- [ ] 170
You have an Azure Active Directory (Azure AD) tenant named contoso.com that is synced to an Active Directory domain.
The tenant contains the users shown in the following table
- [x]
You have the Azure virtual machines shown in the following table
- [x]
### You deploy an Azure Kubernetes Service (AKS) cluster that has the network profile shown in the following exhibit
### You have peering configured as shown in the following exhibit
### Which two files should you create before you prepare the drives for the import job? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point.
- [ ] an XML manifest file
- [x] a driveset CSV file
- [ ] a dataset CSV file
- [ ] a PowerShell PS1 file
- [ ] a JSON configuration file
### What should you do first?
- [ ] Upload a certificate.
- [ ] Add a connection string.
- [ ] Stop webapp1.
- [x] Create a DNS recordYou create an Azure VM named VM1 that runs Windows Server 2019.
VM1 is configured as shown in the exhibit. (Click the Exhibit button.)
- [x]
You have an Azure subscription that contains the resources shown in the following table
- [x]
### What should you do?
- [x] From the Subscriptions blade, select the subscription, and then modify the Properties.
- [ ] From the Subscriptions blade, select the subscription, and then modify the Access control (IAM) settings.
- [ ] From the Azure Active Directory blade, modify the Properties.
- [ ] From the Azure Active Directory blade, modify the Groups
### Which two actions should you perform? Each correct selection presents part of the solution. NOTE: Each correct selection is worth one point.
- [x] From the Firewalls and virtual networks blade of account1, add the 131.107.1.0/24 IP address range.
- [ ] From the Firewalls and virtual networks blade of account1, select Selected networks.
- [ ] From the Firewalls and virtual networks blade of acount1, add VNet1.
- [ ] From the Firewalls and virtual networks blade of account1, select Allow trusted Microsoft services to access this storage account. From the Service endpoints blade of VNet1, add a service endpoint.
- [ ] From the Service endpoints blade of VNet1, add a service endpoint### Does this meet the goal?
- [ ] Yes
- [x]
Topic 4, Misc. Questions Set A
- [x]
### NOTE Each correct selection is worth one point.
- [ ] Azure Active Directory (AD) Identity Protection and an Azure policy
- [x] a Recovery Services vault and a backup policy
- [ ] an Azure Key Vault and an access policy
- [ ] an Azure Storage account and an access policy
### Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a
correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have an Azure subscription named Subscription1 that contains the resources shown in the following table
- [x]
You have the Azure virtual machines shown in the following table
- [x] You have an Azure subscription that contains the resources in the following table- [x]
### You have an Azure subscription that contains the resource groups shown in the following table
### You have an Azure subscription named Subcription1 that contains a resource group named RG1.
In RG1. you create an internal load balancer named LB1 and a public load balancer named 162.
You need to ensure that an administrator named Admin 1 can manage LB1 and LB2. The solution must follow the principle of least privilege.
Which role should you assign to Admin1 for each task? To answer, select the appropriate options in the answer area. NOTE: Caen correct selection is worth one point
### You have a pay-as-you-go Azure subscription that contains the virtual machines shown in the following table
### You have an Azure subscription named Subscription1 that contains the resources shown in the following table
### You have several Azure virtual machines on a virtual network named VNet1.
You configure an Azure Storage account as shown in the following exhibit
You have an Azure subscription that contains the following users in an Azure Active Directory tenant named contoso.onmicrosoft.com:
- [x]
You have an Active Directory domain named contoso.com that contains the objects shown in the following table
- [x]Topic 2, Humongous Insurance
- [x]
### What should you do?
- [ ] Generate a shared access signature (SAS). Map a drive, and then copy the files by using File Explorer.
- [ ] Use the Azure Import/Export service.
- [ ] Generate an access key. Map a drive, and then copy the files by using File Explorer.
- [x] Use Azure Storage Explorer to copy the files
### What should you recommend?
- [x] federated single-on (SSO) and Active Directory Federation Services (AD FS)
- [ ] password hash synchronization and single sign-on (SSO)
- [ ] cloud-only user accounts
- [ ] Pass-through Authentication and single sign-on (SSO)
### You need to prepare the environment to ensure that the web administrators can deploy the web apps as quickly as possible.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order
### You need to identify the storage requirements for Contoso.
For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point
### You are evaluating the connectivity between the virtual machines after the planned implementation of the Azure networking infrastructure.
For each of the following statements, select Yes if the statement is true. Otherwise, select No
### You have an Azure subscription that contains an Azure Directory (Azure AD) tenant named contoso.com. The tenant is synced to the on-premises Active Directory domain.
The domain contains the users shown in the following table
You have Azure virtual machines that run Windows Server 2019 and are configured as shown in the following table
- [x]
### Which domain name should you use?
- [x]
### You need to prepare the environment to ensure that the web administrators can deploy the web apps as quickly as possible.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order
You have the Azure virtual machines shown in the following table
- [x]You have the Azure virtual machines shown in the following table
- [x]
### You manage two Azure subscriptions named Subscription1 and Subscription2.
Subscription1 has following virtual networks:
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have an Azure subscription named Subscription1 that contains the resources shown in the following table- [x]
### Does this meet the goal?
- [x] YesB ### You have an Azure subscription named Sub1.
You plan to deploy a multi-tiered application that will contain the tiers shown in the following table
### You have an Azure virtual network named VNet1 that connects to your on-premises network by using a site-to-site VPN. VMet1 contains one subnet named Subnet1.
Subnet1 is associated to a network security group (NSG) named NSG1. Subnet1 contains a basic internal load balancer named ILB1. ILB1 has three Azure virtual machines in the backend pool.
You need to collect data about the IP addresses that connects to ILB1. You must be able to run interactive queries from the Azure portal against the collected data.
What should you do? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point
### You have an Azure subscription that contains an Azure Storage account.
You plan to copy an on-premises virtual machine image to a container named vmimages.
You need to create the container for the planned image.
Which command should you run? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point
You have the Azure virtual machines shown in the following table
- [x]### You need to prepare the environment to ensure that the web administrators can deploy the web apps as quickly as possible.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order
### You need to recommend a solution for App1. The solution must meet the technical requirements.
What should you include in the recommendation? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point
You have the Azure virtual machines shown in the following table
- [x]
### You need to identify the storage requirements for Contoso.
For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point
### Which type of DNS record should you create?
- [ ] PTR
- [x] MX
- [ ] NSEC3
- [ ] RRSIG
### What can you use as the destination of the imported data?
- [ ] Azure Data Lake Store
- [ ] a virtual machine
- [ ] the Azure File Sync Storage Sync Service
- [x] Azure Blob storage
### What should you include in the recommended?
- [ ] Azure AP B2C
- [ ] Azure AD Identity Protection
- [ ] an Azure logic app and the Microsoft Identity Management (MIM) client
- [x] dynamic groups and conditional access policies
### You need to identify the storage requirements for Contoso.
For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point
### You need to create an Azure Storage account that meets the following requirements:
• Minimizes costs
• Supports hot, cool, and archive blob tiers
• Provides fault tolerance if a disaster affects the Azure region where the account resides
How should you complete the command? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point
### What should you do?
- [ ] From the Groups blade, invite the user accounts to a new group.
- [x] From the Profile blade, modify the usage location
### Which blade should you instruct the finance department auditors to use?
- [ ] Partner information
- [ ] Overview
- [ ] Payment methods
- [x] Invoices
### What are two possible Azure services that you can use? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.
- [ ] a public load balancer
- [ ] Traffic Manager
- [ ] an Azure Content Delivery Network (CDN)
- [x] an internal load balanceran Azure Application Gateway
- [ ] an Azure Application Gateway
### What should you recommend?
- [ ] Create an outgoing security rule for port 443 from the Internet. Associate the NSG to all the subnets.
- [ ] Create an incoming security rule for port 443 from the Internet. Associate the NSG to all the subnets.
- [x] Create an incoming security rule for port 443 from the Internet. Associate the NSG to the subnet that contains the web servers.
- [ ] Create an outgoing security rule for port 443 from the Internet. Associate the NSG to the subnet that contains the web servers### You have an Azure subscription that contains two virtual networks named VNet1 and VNet2. Virtual machines connect to the virtual networks.
The virtual networks n on-premises server named Server1 the configured as shown in the following table
### You are evaluating the name resolution for the virtual machines after the planned implementation of the Azure networking infrastructure.
For each of the following statements, select Yes if the statement is true. Otherwise, select No
### You have an Azure subscription that contains the virtual machines shown in the following table
### You have an Azure Active Directory tenant named Contoso.com that includes following users:
### Which two actions should you perform? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point.
- [ ] Allow inbound TCP port 8080 to the domain controllers in the Miami office.
- [x] Add http://autogon.microsoftazuread-sso.com to the intranet zone of each client computer in the Miami office
### You have peering configured as shown in the following exhibit
### You have an Azure subscription that contains an Azure Storage account named storage1 and the users shown in the following table
### You need to prepare the environment to ensure that the web administrators can deploy the web apps as quickly as possible.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order
### Does this meet this goal?
- [x] YesB ### You have an Azure subscription that contains an Azure Availability Set named WEBPROD-AS-USE2 as shown in the following exhibit
You have the Azure virtual machines shown in the following table
- [x]
### What should you specify?
- [ ] metric alert
- [x] Azure Log Analytics workspace
- [ ] virtual machine
- [ ] virtual machine extension
### Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have an Azure subscription named Subscription1 that contains the resources shown in the following table- [x]
### You need to meet the connection requirements for the New York office.
What should you do? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point
### Which two actions should you perform? Each correct selection presents part of the solution. NOTE: Each correct selection is worth one point.
- [x] From the Firewalls and virtual networks blade of account1, add the 131.107.1.0/24 IP address range.
- [ ] From the Firewalls and virtual networks blade of account1, select Selected networks.
- [ ] From the Firewalls and virtual networks blade of acount1, add VNet1.
- [ ] From the Firewalls and virtual networks blade of account1, select Allow trusted Microsoft services to access this storage account. From the Service endpoints blade of VNet1, add a service endpoint.
- [ ] From the Service endpoints blade of VNet1, add a service endpoint### You need to recommend a solution for App1. The solution must meet the technical requirements.
What should you include in the recommendation? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point
### You have an Azure subscription that contains the public load balancers shown in the following table
### Does this meet the goal?
- [ ] Yes
- [x]
### What should you recommend?
- [x] federated single-on (SSO) and Active Directory Federation Services (AD FS)
- [ ] password hash synchronization and single sign-on (SSO)
- [ ] cloud-only user accounts
- [ ] Pass-through Authentication and single sign-on (SSO)
Topic 2, Humongous Insurance
- [x]
You have the Azure virtual machines shown in the following table
- [x]
### What is the minimum number of backup policies that you must create?
- [ ] 1
- [ ] 2
- [x] 3
- [ ] 150170
- [ ] 170
### You have an Azure subscription that contains an Azure file share.
You have an on-premises server named Server1 that runs Windows Server 2016.
You plan to set up Azure File Sync between Server1 and the Azure file share.
You need to prepare the subscription for the planned Azure File Sync.
Which two actions should you perform in the Azure subscription? To answer, drag the appropriate actions to the correct targets. Each action may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content
### You have an Azure subscription that contains the resources shown in the following table
- [x]
### Which two actions should you perform? Each correct selection presents part of the solution. NOTE: Each correct selection is worth one point.
- [x] From the Firewalls and virtual networks blade of account1, add the 131.107.1.0/24 IP address range.
- [ ] From the Firewalls and virtual networks blade of account1, select Selected networks.
- [ ] From the Firewalls and virtual networks blade of acount1, add VNet1.
- [ ] From the Firewalls and virtual networks blade of account1, select Allow trusted Microsoft services to access this storage account. From the Service endpoints blade of VNet1, add a service endpoint.
- [ ] From the Service endpoints blade of VNet1, add a service endpoint.
You have the Azure virtual machines shown in the following table
- [x]You have an Azure subscription that contains the storage accounts shown in the following table
- [x]
You have an Azure subscription that contains the resources shown in the following table
- [x]
### What should you recommend?
- [ ] Create an outgoing security rule for port 443 from the Internet. Associate the NSG to all the subnets.
- [ ] Create an incoming security rule for port 443 from the Internet. Associate the NSG to all the subnets.
- [x] Create an incoming security rule for port 443 from the Internet. Associate the NSG to the subnet that contains the web servers.
- [ ] Create an outgoing security rule for port 443 from the Internet. Associate the NSG to the subnet that contains the web servers### You have an Azure subscription that contains an Azure file share.
You have an on-premises server named Server1 that runs Windows Server 2016.
You plan to set up Azure File Sync between Server1 and the Azure file share.
You need to prepare the subscription for the planned Azure File Sync.
Which two actions should you perform in the Azure subscription? To answer, drag the appropriate actions to the correct targets. Each action may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content
### What can you use as the destination of the imported data?
- [ ] Azure Data Lake Store
- [ ] a virtual machine
- [ ] the Azure File Sync Storage Sync Service
- [x] Azure Blob storage
### Which changes will be lost after you redeploy VM1?
- [x] the modified screen saver timeout
- [ ] the new desktop background
- [ ] the new files on drive
- [ ] The new files on drive C
You have the Azure virtual machines shown in the following table
- [x]
### You need to identify the storage requirements for Contoso.
For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point
You have an Azure subscription that contains the following users in an Azure Active Directory tenant named contoso.onmicrosoft.com:
- [x]
### You have an Azure virtual network named VNet1 that connects to your on-premises network by using a site-to-site VPN. VMet1 contains one subnet named Subnet1.
Subnet1 is associated to a network security group (NSG) named NSG1. Subnet1 contains a basic internal load balancer named ILB1. ILB1 has three Azure virtual machines in the backend pool.
You need to collect data about the IP addresses that connects to ILB1. You must be able to run interactive queries from the Azure portal against the collected data.
What should you do? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point
### You are evaluating the connectivity between the virtual machines after the planned implementation of the Azure networking infrastructure.
For each of the following statements, select Yes if the statement is true. Otherwise, select No
You have an Azure subscription that contains the following users in an Azure Active Directory tenant named contoso.onmicrosoft.com:
- [x]
You create an Azure subscription named Subscription1 and an associated Azure Active Directory (Azure AD) tenant named Tenant1.
Tenant1 contains the users in the following table
- [x]
### Which type of DNS record should you create?
- [ ] PTR
- [x] MX
- [ ] NSEC3
- [ ] RRSIG
### What should you do?
- [ ] From the Groups blade, invite the user accounts to a new group.
- [x] From the Profile blade, modify the usage location
### What should you use?
- [ ] Diagram in VNet1
- [ ] the security recommendations in Azure Advisor
- [ ] Diagnostic settings in Azure Monitor
- [ ] Diagnose and solve problems in Traffic Manager ProfilesIP flow verify in Azure Network Watcher
- [ ] IP flow verify in Azure Network Watcher### You have an Azure subscription that contains an Azure file share.
You have an on-premises server named Server1 that runs Windows Server 2016.
You plan to set up Azure File Sync between Server1 and the Azure file share.
You need to prepare the subscription for the planned Azure File Sync.
Which two actions should you perform in the Azure subscription? To answer, drag the appropriate actions to the correct targets. Each action may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content
### You have an Azure subscription that contains an Azure Storage account.
You plan to copy an on-premises virtual machine image to a container named vmimages.
You need to create the container for the planned image.
Which command should you run? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point
### What should you use?
- [ ] Azure PowerShell
- [x] Azure CLI
- [ ] the Azure portal
- [ ] the DNS Manager console
### Which blade should you instruct the finance department auditors to use?
- [ ] Partner information
- [ ] Overview
- [ ] Payment methods
- [x] Invoices
### You need to configure the Device settings to meet the technical requirements and the user requirements.
Which two settings should you modify? To answer, select the appropriate settings in the answer area
### What should you do?
- [ ] From the Groups blade, invite the user accounts to a new group.
- [x] From the Profile blade, modify the usage locationYou have an Azure subscription that includes data in following locations:
- [x]
Your on-premises network contains an Active Directory domain named adatum.com that is synced to Azure Active Directory (Azure AD). Password writeback is disabled.
In adatum.com, you create the users shown in the following table
You have an Azure subscription named Subscription1 that contains the resources shown in the following table- [x]
### You have an Azure Active Directory (Azure AD) tenant named adatum.com.
Adatum.com contains the groups in the following table
### You have an Azure subscription named Subscription1 that contains the resources shown in the following table
### What should you do?
- [x] From the multi-factor authentication page, configure the Multi-Factor Auth status for each user
- [ ] From Azure Active Directory admin center, create a conditional access policy
- [ ] From the multi-factor authentication page, modify the verification options
- [ ] From the Azure Active Directory admin center, configure an authentication method
### Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have an Azure subscription that contains the following users in an Azure Active Directory tenant named contoso.onmicrosoft.com:
- [x]
### You need to prepare the environment to ensure that the web administrators can deploy the web apps as quickly as possible.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order
### Does this meet the goal?
- [ ] Yes
- [x]
### You have an Azure subscription that contains an Azure Directory (Azure AD) tenant named contoso.com. The tenant is synced to the on-premises Active Directory domain.
The domain contains the users shown in the following table
### You have an Azure subscription that contains an Azure file share.
You have an on-premises server named Server1 that runs Windows Server 2016.
You plan to set up Azure File Sync between Server1 and the Azure file share.
You need to prepare the subscription for the planned Azure File Sync.
Which two actions should you perform in the Azure subscription? To answer, drag the appropriate actions to the correct targets. Each action may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content
### Does this meet the goal?
- [ ] Yes
- [x]
### Which two actions should you perform? Each correct selection presents part of the solution. NOTE: Each correct selection is worth one point.
- [x] From the Firewalls and virtual networks blade of account1, add the 131.107.1.0/24 IP address range.
- [ ] From the Firewalls and virtual networks blade of account1, select Selected networks.
- [ ] From the Firewalls and virtual networks blade of acount1, add VNet1.
- [ ] From the Firewalls and virtual networks blade of account1, select Allow trusted Microsoft services to access this storage account. From the Service endpoints blade of VNet1, add a service endpoint.
- [ ] From the Service endpoints blade of VNet1, add a service endpoint.
You have Azure virtual machines that run Windows Server 2019 and are configured as shown in the following table
- [x]You have an Azure Active Directory (Azure AD) tenant named contoso.com that is synced to an Active Directory domain.
The tenant contains the users shown in the following table
- [x]
You have an Azure Active Directory (Azure AD) tenant named contoso.com that is synced to an Active Directory domain.
The tenant contains the users shown in the following table
- [x]
### You have an Azure subscription that contains an Azure file share.
You have an on-premises server named Server1 that runs Windows Server 2016.
You plan to set up Azure File Sync between Server1 and the Azure file share.
You need to prepare the subscription for the planned Azure File Sync.
Which two actions should you perform in the Azure subscription? To answer, drag the appropriate actions to the correct targets. Each action may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content
### You need to prepare the environment to ensure that the web administrators can deploy the web apps as quickly as possible.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order
### You have an Azure subscription that contains an Azure file share.
You have an on-premises server named Server1 that runs Windows Server 2016.
You plan to set up Azure File Sync between Server1 and the Azure file share.
You need to prepare the subscription for the planned Azure File Sync.
Which two actions should you perform in the Azure subscription? To answer, drag the appropriate actions to the correct targets. Each action may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content
### Does this meet the goal?
- [x] Yes
Topic 1, Litware, inc
### Which two actions should you perform? Each correct selection presents part of the solution. NOTE: Each correct selection is worth one point.
- [x] From the Firewalls and virtual networks blade of account1, add the 131.107.1.0/24 IP address range.
- [ ] From the Firewalls and virtual networks blade of account1, select Selected networks.
- [ ] From the Firewalls and virtual networks blade of acount1, add VNet1.
- [ ] From the Firewalls and virtual networks blade of account1, select Allow trusted Microsoft services to access this storage account. From the Service endpoints blade of VNet1, add a service endpoint.
- [ ] From the Service endpoints blade of VNet1, add a service endpoint### You have Azure subscription that includes following Azure file shares:
### What should you do?
- [x] From the Subscriptions blade, select the subscription, and then modify the Properties.
- [ ] From the Subscriptions blade, select the subscription, and then modify the Access control (IAM) settings.
- [ ] From the Azure Active Directory blade, modify the Properties.
- [ ] From the Azure Active Directory blade, modify the Groups
### What should you do?
- [ ] Generate a shared access signature (SAS). Map a drive, and then copy the files by using File Explorer.
- [ ] Use the Azure Import/Export service.
- [ ] Generate an access key. Map a drive, and then copy the files by using File Explorer.
- [x] Use Azure Storage Explorer to copy the files
### You need to create an Azure Storage account that meets the following requirements:
• Minimizes costs
• Supports hot, cool, and archive blob tiers
• Provides fault tolerance if a disaster affects the Azure region where the account resides
How should you complete the command? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point
### What should you include in the recommended?
- [ ] Azure AP B2C
- [ ] Azure AD Identity Protection
- [x] an Azure logic app and the Microsoft Identity Management (MIM) client
- [ ] dynamic groups and conditional access policies
You have the Azure virtual machines shown in the following table
- [x]
### Does this meet the goal?
- [x] YesB ### You need to the appropriate sizes for the Azure virtual for Server2.
What should you do? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point
### What should you do first?
- [ ] From contoso.com, modify the Organization relationships settings.
- [x] From contoso.com, create an OAuth 2.0 authorization endpoint.
- [ ] Recreate AKS1.
- [ ] From AKS1, create a namespaceTopic 3, Contoso Ltd
- [x]
### What should you do first?
- [ ] From webapp1, modify the Application settings.
- [ ] From webapp1, add a custom domain.
- [x] From App1, scale up the App Service plan.
- [ ] From App1, scale out the App Service plan
### You have a pay-as-you-go Azure subscription that contains the virtual machines shown in the following table
Your network contains an on-premises Active Directory domain named adatum.com. The domain contains an organizational unit (OU) named OU1.
OU1 contains the objects shown in the following table
- [x]
You have an Azure Active Directory (Azure AD) tenant named adatum.com that contains the users shown in the following table
- [x]
### You have an Azure subscription named Subcription1 that contains a resource group named RG1.
In RG1. you create an internal load balancer named LB1 and a public load balancer named 162.
You need to ensure that an administrator named Admin 1 can manage LB1 and LB2. The solution must follow the principle of least privilege.
Which role should you assign to Admin1 for each task? To answer, select the appropriate options in the answer area. NOTE: Caen correct selection is worth one point
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a
correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have an Azure subscription named Subscription1 that contains the resources shown in the following table
- [x]
### You manage two Azure subscriptions named Subscription1 and Subscription2.
Subscription1 has following virtual networks:
You have an Active Directory domain named contoso.com that contains the objects shown in the following table
- [x]
### What should you do?
- [ ] From the Groups blade, invite the user accounts to a new group.
- [x] From the Profile blade, modify the usage location
### What should you create and configure?
- [ ] an Azure Notification Hub
- [x] an Azure Event Hub
- [ ] an Azure Logic App
- [ ] an Azure services Bus
### Which three actions should you perform? Each correct answer presents parts of the solution. NOTE: Each correct selection is worth one point.
- [ ] Add two load balancing rules that have HA Ports enabled and Floating IP disabled.
- [x] Deploy a standard load balancer.
- [ ] Add a frontend IP configuration, two backend pools, and a health prob.
- [ ] Add a frontend IP configuration, a backend pool, and a health probe. Add two load balancing rules that have HA Ports and Floating IP enabled. Deploy a basic load balancer.
- [ ] Add two load balancing rules that have HA Ports and Floating IP enabled. Deploy a basic load balancer.
- [ ] F . Deploy a basic load balancer
### You need to identify the storage requirements for Contoso.
For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point
### Which two actions should you perform? Each correct selection presents part of the solution. NOTE: Each correct selection is worth one point.
- [x] From the Firewalls and virtual networks blade of account1, add the 131.107.1.0/24 IP address range.
- [ ] From the Firewalls and virtual networks blade of account1, select Selected networks.
- [ ] From the Firewalls and virtual networks blade of acount1, add VNet1.
- [ ] From the Firewalls and virtual networks blade of account1, select Allow trusted Microsoft services to access this storage account. From the Service endpoints blade of VNet1, add a service endpoint.
- [ ] From the Service endpoints blade of VNet1, add a service endpoint### Which blade should you instruct the finance department auditors to use?
- [ ] invoices
- [ ] partner information
- [x] cost analysis
- [ ] External services