exam questions

Exam PL-200 All Questions

View all questions & answers for the PL-200 exam

Exam PL-200 topic 9 question 5 discussion

Actual exam question from Microsoft's PL-200
Question #: 5
Topic #: 9
[All PL-200 Questions]

You need to assign 10 percent of the Qualification records to the QV queue through table configuration by using a Power Automate flow.
What should you do?

  • A. Create an autonumber column on the Qualification table and assign its qualification records if the number cleanly divides by 10.
  • B. Create a calculated column on the Service Request table that sums the number of qualification records, generates a random number between zero and the number from the new field, and assigns each qualification record if the number generated is 10 percent or less of the value of the new field.
  • C. Create a roll-up column on the Service Request table that is the count of qualification records, generates a random number between zero and the number from the new field, and assigns each qualification record if the number generated is 10 percent or less of the value of the new field.
  • D. Create an autonumber column on the Service Request table and assign its qualification records if the number cleanly divides by 10.
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
OldHand1
Highly Voted 2 years, 6 months ago
I am thinking A. B. You can't sum with a calculated column and it can only use fields on the same record or a direct parent. That random generated number bit, it could generate a low or high number everytime, its random, not gong to guarantee a even spread. C. Randomly generate a number again, no guarantee that number will be will be less than 10% of the total 10% of the time. D. Wrong table.
upvoted 15 times
Agnes202307
1 year, 3 months ago
Agreed. This is a straightforward approach of assigning records based on a counting mechanism. Every 10th qualification record, based on the autonumber, will be reassigned.
upvoted 2 times
...
...
mdeg87
Highly Voted 2 years ago
The answer is A. The requirement is for 10% of Qualification records, not Service Request records. The other three options are based on the wrong table.
upvoted 9 times
...
killionb12
Most Recent 4 months ago
Selected Answer: A
To assign 10 percent of the Qualification records to the QV queue through table configuration by using a Power Automate flow, you should: A. Create an autonumber column on the Qualification table and assign its qualification records if the number cleanly divides by 10. This approach ensures that exactly 10 percent of the records are assigned based on a simple and deterministic rule. Here’s how it works: Create an Autonumber Column: Add an autonumber column to the Qualification table. This column will automatically generate a unique number for each record. Power Automate Flow: Create a Power Automate flow that triggers when a new Qualification record is created. In the flow, check if the autonumber value for the record cleanly divides by 10 (i.e., the remainder is zero). Assign to QV Queue: If the condition is met, assign the record to the QV queue. This method is straightforward and ensures that approximately 10 percent of the records are consistently assigned to the QV queue.
upvoted 1 times
...
33a7f9e
6 months, 3 weeks ago
I believe it is A as well. Option C involves creating a roll-up column on the Service Request table to count qualification records and then generating a random number to assign records. While this approach could work, it introduces additional complexity and dependencies on the Service Request table, which might not be necessary. Option A, creating an autonumber column on the Qualification table and assigning records based on whether the number cleanly divides by 10, is simpler and more direct. It ensures that approximately 10 percent of the records are assigned without needing to generate random numbers or rely on roll-up columns.
upvoted 1 times
...
5f14337
8 months, 2 weeks ago
Selected Answer: A
while Option C is technically feasible, Option A is more straightforward and better suited for consistently achieving the requirement of assigning 10 percent of the Qualification records. Therefore, Option A remains the more appropriate choice.
upvoted 1 times
...
jkaur
1 year ago
Seems A
upvoted 1 times
...
MrEz
1 year, 2 months ago
As i am from Switzerland, maybe i have difficulties with english grammar but when i read 'C. Create a roll-up column on the Service Request table that is the count of qualification records, generates a random number between zero and the number from the new field, and assigns each qualification record if the number generated is 10 percent or less of the value of the new field.' 'assignS' has raised my attention. What assigns? If i understood it correctly (maybe someone does a linguist course here?) 'assigns' refers to 'a roll-up column' that 'assignS' but no, roll-up columns cannot assign. as i read it: 'a roll-up column' ... ''that is the count of...', --> true 'a roll-up column' ...'that generates a random number...' --> true 'a roll-up column' ...' that assignS' --> false!! if ever, I am right (gpt seems to confirm it, but gpt is excessively opportunistic ...), we can rule out C as a possible correct result?!
upvoted 1 times
...
MrEz
1 year, 2 months ago
for B and C: complexity and potential inconsistency in ensuring that an exact 10% of Qualification records are randomly selected for review. is it more important to be random or is it more important to be exactly 10% (what if you have 235 records with selecting every 10th record it isn't 10% either..)
upvoted 1 times
MrEz
1 year, 2 months ago
10 percent of Qualification records must be double checked. NOT Service request. it must be done on the qualification record. It depends a bit of the distribution on how many qualification records you have pre service request but maybe most is less than 10?
upvoted 1 times
MrEz
1 year, 2 months ago
B and C have aspects of randomisation but in statistical terms they are not true randomisations
upvoted 1 times
...
...
...
YUANYUAN0502
1 year, 4 months ago
In the exam 28/Dec/2023
upvoted 2 times
...
mdnaseershah
1 year, 8 months ago
Selected Answer: C
Roll-up columns can do sum, min, max etc and In Power Automate, you can use the rand function to generate a random number between two specified values.
upvoted 4 times
...
ctedesco
1 year, 11 months ago
On test 5/23
upvoted 2 times
...
SeniorFC001
2 years ago
Selected Answer: C
A is wrong as it wouldn't be random 10% it would just be exactly every 10th record which is not a very 'professional / scientific' way of checking things. You need to do things randomly which what answer C does if you work through it's formula.
upvoted 4 times
MrEz
1 year, 2 months ago
"You need to assign 10 percent of the Qualification records to the QV queue through table configuration by using a Power Automate flow. What should you do?" there is no mention of "random". just 10%
upvoted 2 times
...
...
Ikhalil
2 years, 1 month ago
B. Create a calculated column on the Service Request table that sums the number of qualification records, generates a random number between zero and the number from the new field, and assigns each qualification record if the number generated is 10 percent or less of the value of the new field.
upvoted 1 times
RoiBurgonde
1 year, 10 months ago
Again, like everytime you just copy/paste the original answer... Not reliable. I would go with A mainly because the other options don't provide the required result.
upvoted 5 times
...
...
RavinBrissy
2 years, 1 month ago
A can not be accepted due to following reasons. 1. Auto number is not consistent always (if you delete records) 2. The calculation is mathematically wrong for the given requirement
upvoted 2 times
SeniorFC001
2 years ago
Your point 2 EXACTLY - it wouldn't be random 10% it would just be exactly every 10th record which is not a very 'professional' way of checking things.
upvoted 1 times
MrEz
1 year, 2 months ago
Because it did not require to be random (explicity) my choice was A. if randomization would be required, i would expect this to be noted.
upvoted 1 times
...
...
...
Mikiee
2 years, 5 months ago
Selected Answer: A
I choose A.
upvoted 4 times
zhang_hksar
2 years, 5 months ago
Sampling survey must be random.
upvoted 2 times
...
...
MaartenNORRIQ
2 years, 5 months ago
Selected Answer: A
A is correct
upvoted 3 times
...
pifls
2 years, 5 months ago
Selected Answer: A
For me it's also A
upvoted 2 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago