You are on page 1of 5

16:05 26/03/2024 Quizz 05: Xem lại lần làm thử | COURSES

Trang chủ / Các khoá học của tôi / CTĐB - OEP / 2023 - 2024 - 2nd Term / IS402.O22.HTCL / Buổi 05 / Quizz 05
Bắt đầu vào lúc Thứ Ba, 26 tháng 3 2024, 3:55 PM
Trạng thái Đã xong
Kết thúc lúc Thứ Ba, 26 tháng 3 2024, 4:05 PM
Thời gian thực 9 phút 46 giây
hiện
Điểm 11,00/11,00
Điểm 10,00 trên 10,00 (100%)
Câu hỏi 1
Đúng
Đạt điểm 1,00 trên 1,00

You have a table as follows in Azure SQL:


CREATE TABLE Books {
BookID VARCHAR(20) NOT NULL,
CategoryID VARCHAR (20) NOT NULL,
BookName VARCHAR (100),
AuthorID VARCHAR (20),
ISBN VARCHAR (40)
}

Assume there are 100 million entries in this table. CategoryID has about 25 entries and 60% of the books align to about 20 categories.
You need to optimize the performance of this table for queries that aggregate on CategoryID. What partitioning technique would you
use and what key would you choose?
a. Vertical partitioning with BookID
b. Vertical partitioning with CategoryID
c. Horizontal partitioning with CategoryID
d. Horizontal partitioning with BookID 

Your answer is correct.


The correct answer is: Horizontal partitioning with BookID

Câu hỏi 2
Đúng
Đạt điểm 1,00 trên 1,00

Các vấn đề gặp phải khi thực hiện ánh xạ thanh ghi
a. Sử dụng phần mềm ánh xạ thanh ghi
b. Số lượng thanh ghi máy thực nhiều hơn máy ảo
c. Số lượng thanh ghi máy thực ít hơn máy ảo 
d. Ánh xạ các thanh ghi đặc biệt 

Your answer is correct.


The correct answers are: Số lượng thanh ghi máy thực ít hơn máy ảo, Ánh xạ các thanh ghi đặc biệt
https://courses.uit.edu.vn/mod/quiz/review.php?attempt=480644&cmid=226629 1/5
16:05 26/03/2024 Quizz 05: Xem lại lần làm thử | COURSES

Câu hỏi 3
Đúng
Đạt điểm 1,00 trên 1,00

One disadvantage of IaC is that you have to put sensitive information in source control as ARM template parameter files.
Chọn câu trả lời chính xác nhất:
Đúng
Sai 

ARM template parameters allow the referencing of values in an Azure Key Vault, so as to prevent users from having to enter secrets or
other sensitive information in source control. At the time of deployment, the secrets are retrieved and used within Azure, provided the
identity that starts the operation has access to that key vault.
Đáp án chính xác là "Sai"

Câu hỏi 4
Đúng
Đạt điểm 1,00 trên 1,00

What is Azure Container Instances primarily used for?


a. Monitoring container performance
b. Managing Kubernetes clusters
c. Running containers in the cloud 
d. Storing container images

Your answer is correct.


The correct answer is:
Running containers in the cloud

Câu hỏi 5
Đúng
Đạt điểm 1,00 trên 1,00

Which type of container technology is supported by Azure Container Instances?


a. Docker 
b. OpenShift
c. Mesos
d. Kubernetes

Your answer is correct.


The correct answer is:
Docker

https://courses.uit.edu.vn/mod/quiz/review.php?attempt=480644&cmid=226629 2/5
16:05 26/03/2024 Quizz 05: Xem lại lần làm thử | COURSES

Câu hỏi 6
Đúng
Đạt điểm 1,00 trên 1,00

You work for a cab company that is storing trip data in Parquet format and fare data in CSV format. You are required to generate a
report to list all the trips aggregated using the City field. The report should contain all fields from both files.
Trip file format (Parquet):
tripId, driverId, City, StartTime, EndTime

Fare file format (CSV):


tripId, Fare
Fill in the blanks of the following code snippet to achieve the preceding objective:
%%scala
val fromcsv = spark.read.options(Map("inferSchema"->"true","header"->"true"))

.csv("abfss://path/to/csv/*")

val fromparquet = spark.read.options(Map("inferSchema"->"true"))

.parquet("abfss:// abfss://path/to/parquet/*")

val joinDF = fromcsv.________(fromparquet,fromcsv("tripId") ===


fromparquet("tripId"),"inner")._________("City")

a. join 
b. groupBy 
c. orderBy
d. select

Your answer is correct.


The correct answers are:
join
, groupBy

Câu hỏi 7
Đúng
Đạt điểm 1,00 trên 1,00

Cho biết có bao nhiêu cách hiện thực của bộ mô phỏng


a. Thư viện động
b. Thông dịch 
c. Bộ chuyển dịch nhị phân động 
d. Bộ chuyển dịch nhị phân tĩnh 

Your answer is correct.


The correct answers are: Thông dịch, Bộ chuyển dịch nhị phân tĩnh, Bộ chuyển dịch nhị phân động

https://courses.uit.edu.vn/mod/quiz/review.php?attempt=480644&cmid=226629 3/5
16:05 26/03/2024 Quizz 05: Xem lại lần làm thử | COURSES

Câu hỏi 8
Đúng
Đạt điểm 1,00 trên 1,00

What is the primary goal of autoscaling?


a. To ensure the long-term reliability of a particular physical resource
b. To ensure that a predefined service level is maintained regardless of external demand 
c. To orchestrate the use of multiple parallel resources to direct incoming user requests
d. To ensure the long-term reliability of a particular virtual resource

Your answer is correct.


The correct answer is: To ensure that a predefined service level is maintained regardless of external demand

Câu hỏi 9
Đúng
Đạt điểm 1,00 trên 1,00

Các câu lệnh dùng để quản lý trạng thái của hệ thống (VMCS - Virtual Machine Control Structure), khi hệ thống rơi vào State Area, cặp
câu lệnh nào dùng để lưu trữ trạng thái của hệ thống máy ảo và máy thực.
a. VM Non-Root Mode & VM Root Mode
b. VM-Entry & VM-Exit 
c. VM-Context & VM-Control
d. VM-Entry and VM-Exit process

Your answer is correct.


The correct answer is: VM-Entry & VM-Exit

Câu hỏi 10
Đúng
Đạt điểm 1,00 trên 1,00

Which Azure service is integrated with Azure Databricks for data storage and processing?
a. Azure Data Lake Storage 
b. Azure Cosmos DB
c. Azure SQL Database
d. Azure Data Factory

Your answer is correct.


The correct answer is:
Azure Data Lake Storage

https://courses.uit.edu.vn/mod/quiz/review.php?attempt=480644&cmid=226629 4/5
16:05 26/03/2024 Quizz 05: Xem lại lần làm thử | COURSES

Câu hỏi 11
Đúng
Đạt điểm 1,00 trên 1,00

What type of data sources can be imported into Azure Databricks?


a. Both structured and unstructured data 
b. Numerical data only
c. Structured data only
d. Unstructured data only

Your answer is correct.


The correct answer is:
Both structured and unstructured data

◀︎Buổi 05: Mô hình IaaS và công nghệ ảo hóa - Giới thiệu IaaS
Chuyển tới...
Buổi 06: Mô hình IaaS và công nghệ ảo hóa - Giới thiệu IaaS ▶︎

https://courses.uit.edu.vn/mod/quiz/review.php?attempt=480644&cmid=226629 5/5

You might also like