Google Classroom: I don't see any students grades - google-classroom

How do we see students grades after their completion of the test? I don't see their grades. Please suggest some setting or something from where I can see grades.

Once you create and assign a question / quiz, the students can see it and answer
You as the the teacher can view the question and student submissions
Grade the student and return
Go to Grades and view the results

Related

Row Level Security for Power BI

This is kind of an odd situation and I am pretty new to RLS so please forgive me if what I am asking about here might seem a little silly. I am trying to create Row Level Security for a School District. I have a table that has the different schools codes, employee IDs and their position. I have another table that has the employee ID for teachers and their Teacher ID along with the ID if the students they have for the current year with a separate row for each bell period.
I have tried to create a bridge table that contains the Employee ID, Teacher ID as well as the School Codes and connected it with the other two tables.
For testing purposes, I am trying to connect it to the students basic information and set security to see how to give teachers access. I feel like I am almost there but I might be missing something out in here.
Can you please tell me how to go forward from here. Thank you

Is there a way to concatenate across rows and columns in QuickBase?

As it stands, I have a student table (where each student has a unique row) and an exam table (where each student's exam attempt has a row; the student table is one to many to the exam table).
I want to see if it's possible to add a column to the students table that captures all of the student's exam attempts for a particular exam (as you see below). I was thinking this might require a for loop, but I'm not sure how to do that in QuickBase.
Create a Combined Text Summary field on the Students table for each Exam type.

Roll up field to other entity

I'm very new to dynamics crm, so I'm sorry if the question is a little bit basic.
I created solution. and added 2 entities - questions&answers.
In questions I've 2 roll up fields, one for the average of all the grade fields in answers entity, and the other for calculate how many answers there are to a question.
How can I create the roll up fields? when I click edit, the Realted entity and the Aggreation fields are empty, and I can't add them nothing.
Considering your setup something like below.
Question(Entity) has many Answers(Entity) i.e 1:N relationship. You could have your relationship as N:1 or N:N as well, Provided you have relationship between Question and Answer entity.

How to join two belongsToMany objects

I am trying to represent friendships in my Laravel project database.
I have created a table profile which contains all user-data.
A second table profile_profile with the columns profile_id and friend_id.
With that I am able to get persons wo wants to be friend with me:
$this->belongsToMany('App\Profile', 'profile_profile', 'friend_id', 'friend_id');
an friends I am want to be befriendet:
$this->belongsToMany('App\Profile', 'profile_profile', 'profile_id', 'friend_id');
But in the end you are only friends if both want that so. So I tried to combined them but join or something similar didn't work.
I did a research on this platform and google over 2 hours. I am afraid that my skills are to limited, but I really like to ask for help.
Thank you in advance.
Quick solution: add another column in the profile_profile table, say, "accepted" as boolean and default to FALSE.
When a user accepts a friend's request, toggle the "accepted" field to TRUE.
Then you could search like $profile->profiles()->wherePivot('accepted', true)->get()

How to solve following Relational Algebra query

On the relational algebra exam I had yesterday there was a question I couldn't answer and want to know how it would be solved. The constraint on the question was I wasn't allowed to use aggregate functions which I found difficult. The schema is as follows.
EMPLOYEE = {id, name, phone} with id PK
COURSE = {course_no, title, subject} with course_no PK
COMPLETED = {course_no, student_id, grade, semester} with {course_no,id,semester} PK
The question went: List the pairs of employees who have completed the same courses and have always completed these same courses in the same years and have never received grade 'D' in any of these courses. List each pair?
If any could shed some light that would be great.
Basically, you first build a query that joins the tables together to form the desired list of properties per employee.
Then you copy those two queries and join the results on course_no and - I guess - semester (and remember to exclude the rows where the same employee id appears on both sides).
Finally you filter this result by grade.
There are other variations possible, but this is the general idea.

Resources