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 Cosmos DB database that uses the Table API. The database contains a table that includes the student data of a school.
A subset of the data is shown in the following table.
Another student named Matt Berg joins the school.
You need to add a new entity for the new student.
Solution: You run the following Azure Power Shell command.
Add-StorageTableRow -table $Table_name -partitionKey 1 -rowkey (“matt_berg_0723”) -property @{“First Name”-”Matt”; Last Name"-"Berg"; "Age"-9}
Does this meet the goal?
A . Yes
B . No
Answer: A
Leave a Reply