M101N: MONGODB FOR .NET DEVELOPERS questions 2.1

HOMEWORK: HOMEWORK 2.1


In this problem, you will be using a collection of student scores that is similar to what we used in the lessons. Please download grades.json from the Download Handout link and import it into your local mongo database as follows:
mongoimport -d students -c grades < grades.json
The dataset contains 4 scores for 200 students.
First, let’s confirm your data is intact; the number of documents should be 800.
> use students
> db.grades.count()
800
This next query, which uses the aggregation framework that we have not taught yet, will tell you thestudent_id with the highest average score:
> db.grades.aggregate({'$group':{'_id':'$student_id', 'average':{$avg:'$score'}}}, {'$sort':{'average':-1}}, {'$limit':1})
The answer should be student_id 164 with an average of approximately 89.3.
Now it’s your turn to analyze the data set. Find all exam scores greater than or equal to 65, and sort those scores from lowest to highest.
What is the student_id of the lowest exam score above 65?
Answer is 22

Yorumlar

  1. Hocam MongoDB ile ilgili Türçe kaynak azlığı varken neden ingilizce olarak yayınlıyosunuz

    YanıtlaSil
  2. Bunlar mongounivercity'nin developer sertifika soruları ünalman

    YanıtlaSil

Yorum Gönder

Bu blogdaki popüler yayınlar

22.06.2020 - 26.06.2020 arası işler

Asp.net RestSharp ile data post etmek

List Box Item içindeki elemanları aşağı veya yukarı taşımak