You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Final Exam question 10 under the standardized vocabulary section of the EHDEN Academy did not have the correct answer as one of the option. I am wondering perhaps this is due to the fact that exam question has not kept up with the latest vocabulary table updates. If you could confirm my findings that would be great.
The question 10 asks:
How many concept_ids have the relationship 'Mapped from' to the standard concept_id of 'Vascular Dementia'?
I used the following query and filter to "Mapped from relationship" and also where the invalid_reason is null;
SELECT cr.relationship_id, c.*
FROM concept_relationship cr
JOIN concept c ON cr.concept_id_2 = c.concept_id
WHERE cr.concept_id_1 = 443605 AND cr.relationship_id = 'Mapped from';
The answer should be 12, but the given answer options did not include 12 and that the correct answer is C)13, which is not correct.
a) 4, b) 9, c)13, d) 6
12 is not listed as one of the option.
When I run the query listed above against the latest version of the vocabulary table, I get the following results.
The text was updated successfully, but these errors were encountered:
Final Exam question 10 under the standardized vocabulary section of the EHDEN Academy did not have the correct answer as one of the option. I am wondering perhaps this is due to the fact that exam question has not kept up with the latest vocabulary table updates. If you could confirm my findings that would be great.
The question 10 asks:
How many concept_ids have the relationship 'Mapped from' to the standard concept_id of 'Vascular Dementia'?
I used the following query and filter to "Mapped from relationship" and also where the invalid_reason is null;
The answer should be 12, but the given answer options did not include 12 and that the correct answer is C)13, which is not correct.
a) 4, b) 9, c)13, d) 6
12 is not listed as one of the option.
When I run the query listed above against the latest version of the vocabulary table, I get the following results.
The text was updated successfully, but these errors were encountered: