-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.json
More file actions
2525 lines (2525 loc) · 112 KB
/
sample.json
File metadata and controls
2525 lines (2525 loc) · 112 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"data": {
"id": "37",
"type": "evaluation",
"attributes": {
"candidate_name": "conrad mugisha",
"candidate_email": "conrad.mugisha@gmail.com",
"notes": null,
"status": "evaluated",
"score": "50.0",
"summary": "Good understanding of web accessibility, performance optimization, API endpoints, code structure, and security. Has potential for growth in query construction, debugging slow queries, testing, monitoring, and estimation. Shows willingness to mentor junior developers and evaluate candidates. Demonstrates a solid plan for working with legacy software."
},
"relationships": {
"interview_script": {
"data": {
"id": "110",
"type": "interview_script"
}
},
"answers": {
"data": [
{
"id": "239",
"type": "answer"
},
{
"id": "245",
"type": "answer"
},
{
"id": "247",
"type": "answer"
},
{
"id": "248",
"type": "answer"
},
{
"id": "249",
"type": "answer"
},
{
"id": "251",
"type": "answer"
},
{
"id": "252",
"type": "answer"
},
{
"id": "244",
"type": "answer"
},
{
"id": "256",
"type": "answer"
},
{
"id": "257",
"type": "answer"
},
{
"id": "253",
"type": "answer"
},
{
"id": "254",
"type": "answer"
},
{
"id": "258",
"type": "answer"
},
{
"id": "240",
"type": "answer"
},
{
"id": "241",
"type": "answer"
},
{
"id": "243",
"type": "answer"
},
{
"id": "242",
"type": "answer"
},
{
"id": "246",
"type": "answer"
},
{
"id": "250",
"type": "answer"
},
{
"id": "255",
"type": "answer"
}
]
}
}
},
"included": [
{
"id": "110",
"type": "interview_script",
"attributes": {
"name": "PHP, WordPress Developer assessment"
}
},
{
"id": "390",
"type": "question_category",
"attributes": {
"name": "Front-End Advanced",
"view_order": 2
},
"relationships": {
"questions": {
"data": [
{
"id": "1031",
"type": "question"
},
{
"id": "1032",
"type": "question"
},
{
"id": "1033",
"type": "question"
}
]
}
}
},
{
"id": "3091",
"type": "question_criterion",
"attributes": {
"description": "Lack of web accessibility understanding",
"instruction": "- The candidate suggests implementing just a screen reader without considering other important accessibility measures.\n- The candidate demonstrates a lack of awareness or understanding of the need for web accessibility and the specific challenges faced by users with visual impairments.",
"grade": 0
},
"relationships": {
"question": {
"data": {
"id": "1031",
"type": "question"
}
}
}
},
{
"id": "3092",
"type": "question_criterion",
"attributes": {
"description": "Semantic HTML for accessibility",
"instruction": "- The candidate should mention the importance of using semantic HTML elements, such as headings, lists, and semantic tags (e.g., \u003cnav\u003e, \u003cmain\u003e, \u003cfooter\u003e), to structure the content and improve the accessibility of the website.\n- They should mention the need for providing descriptive alternative text (alt attribute) for images, ensuring that users with visual impairments can understand the content conveyed by the images.\n- An intermediate candidate may discuss the importance of maintaining sufficient color contrast between foreground and background elements to improve readability for users with visual impairments.",
"grade": 1
},
"relationships": {
"question": {
"data": {
"id": "1031",
"type": "question"
}
}
}
},
{
"id": "3093",
"type": "question_criterion",
"attributes": {
"description": "ARIA attributes for accessibility",
"instruction": "Beyond responses in 1 - Nice response, the candidate also mentions:\n- The candidate should mention the use of ARIA (Accessible Rich Internet Applications) attributes, such as aria-label, aria-labelledby, and aria-describedby, to provide additional context and descriptions for elements that may not be adequately conveyed through visual cues.\n- An advanced candidate would discuss assigning appropriate roles to elements using ARIA roles, ensuring that assistive technologies can interpret and convey their purpose accurately.\n- They should highlight the importance of clear and visible focus indicators, such as outlines, for interactive elements to assist users navigating the site using keyboard or other assistive devices.",
"grade": 2
},
"relationships": {
"question": {
"data": {
"id": "1031",
"type": "question"
}
}
}
},
{
"id": "1031",
"type": "question",
"attributes": {
"description": "Imagine that you are creating a website where 30% of users have some visual impairment, either partial or total. What precautions would you take to make your site more accessible?",
"view_order": 16
},
"relationships": {
"question_category": {
"data": {
"id": "390",
"type": "question_category"
}
},
"question_criteria": {
"data": [
{
"id": "3091",
"type": "question_criterion"
},
{
"id": "3092",
"type": "question_criterion"
},
{
"id": "3093",
"type": "question_criterion"
}
]
}
}
},
{
"id": "239",
"type": "answer",
"attributes": {
"transcription": "I would use audio cues in the website and.",
"matched_criterion_reason": "The candidate suggests implementing just a screen reader without considering other important accessibility measures. The candidate demonstrates a lack of awareness or understanding of the need for web accessibility and the specific challenges faced by users with visual impairments.",
"created_at": "2023-09-14T10:25:56.657Z",
"media_url": "https://api.labs.revelo.com/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBazBCIiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--01ee1affb6e719880f6df5241534b7982e6fdbf1/videoask_239_answer.mp3"
},
"relationships": {
"evaluation": {
"data": {
"id": "37",
"type": "evaluation"
}
},
"question": {
"data": {
"id": "1031",
"type": "question"
}
},
"matched_criterion": {
"data": {
"id": "3091",
"type": "question_criterion"
}
}
}
},
{
"id": "387",
"type": "question_category",
"attributes": {
"name": "Back-End Fundamentals",
"view_order": 3
},
"relationships": {
"questions": {
"data": [
{
"id": "1018",
"type": "question"
},
{
"id": "1020",
"type": "question"
},
{
"id": "1021",
"type": "question"
},
{
"id": "1022",
"type": "question"
},
{
"id": "1019",
"type": "question"
}
]
}
}
},
{
"id": "3061",
"type": "question_criterion",
"attributes": {
"description": "Lack of knowledge of SQL queries",
"instruction": "- The candidate demonstrates a lack of knowledge or awareness of SQL query building or the required concepts for solving the problem.\n- The candidate does not identify any relevant aspects or techniques needed to build the query.\n- The candidate fails to suggest any solutions or strategies to address the problem.",
"grade": 0
},
"relationships": {
"question": {
"data": {
"id": "1021",
"type": "question"
}
}
}
},
{
"id": "3062",
"type": "question_criterion",
"attributes": {
"description": "Knows at least one Table joining, filtering, counting customers",
"instruction": "- The candidate should recognize the need to join the products table with other relevant tables (such as customers and orders) to establish the necessary relationships.\n- The candidate should suggest using the LIKE operator in combination with the appropriate wildcard characters to filter products with names starting with the letter \"a\".\n- The candidate may propose using additional clauses or techniques (e.g., subqueries or grouping) to identify and count the distinct customers who have bought products meeting the \"a\" criteria.",
"grade": 1
},
"relationships": {
"question": {
"data": {
"id": "1021",
"type": "question"
}
}
}
},
{
"id": "3063",
"type": "question_criterion",
"attributes": {
"description": "Knows table joining, count customers, filters using LIKE",
"instruction": "- The candidate should recognize the need to join the appropriate tables (customers, products, and orders) to establish the relationship between customers and the products they have bought.\n- The candidate should demonstrate knowledge of functions such as COUNT, DISTINCT, and potentially other relevant functions to count the number of customers who have bought products starting with the letter \"a\" for each product.\n- The candidate should propose using the appropriate clauses (such as HAVING) to filter and identify the products whose names start with the letter \"a\". They should also mention using the LIKE operator with the appropriate pattern matching syntax to achieve this.",
"grade": 2
},
"relationships": {
"question": {
"data": {
"id": "1021",
"type": "question"
}
}
}
},
{
"id": "1021",
"type": "question",
"attributes": {
"description": "Let's go down in our development stack, the relational database. In our database, we have a Customer table, a Product table, and an Order table with products bought by customers. The question is: how do you construct a query which counts how many customers bought products with the name starting with the letter A and by product? For this question, please don't provide the SQL, just the rationale behind your query construction.",
"view_order": 5
},
"relationships": {
"question_category": {
"data": {
"id": "387",
"type": "question_category"
}
},
"question_criteria": {
"data": [
{
"id": "3061",
"type": "question_criterion"
},
{
"id": "3062",
"type": "question_criterion"
},
{
"id": "3063",
"type": "question_criterion"
}
]
}
}
},
{
"id": "245",
"type": "answer",
"attributes": {
"transcription": "So in this case, we would select the count from orders from the orders table joined to the products joined to the products table through the product ID and also the customers table joined to the orders table through the customer ID, then group by the customer ID, where the criteria would be searching a product name like a with a wild card keynote. Yeah. So this would return the count with the count in the select field asterisk so that would return the count of the number of customers and.",
"matched_criterion_reason": "The candidate recognizes the need to join the relevant tables (products, orders, customers) to establish relationships and suggests using the LIKE operator with wildcard characters to filter products. However, they miss some key aspects like counting customers by product and potentially using additional clauses or techniques.",
"created_at": "2023-09-14T10:25:59.219Z",
"media_url": "https://api.labs.revelo.com/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBbE1CIiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--da5fbb04100ed69bf1a1842c4cb541cf413f4a82/videoask_245_answer.mp3"
},
"relationships": {
"evaluation": {
"data": {
"id": "37",
"type": "evaluation"
}
},
"question": {
"data": {
"id": "1021",
"type": "question"
}
},
"matched_criterion": {
"data": {
"id": "3062",
"type": "question_criterion"
}
}
}
},
{
"id": "388",
"type": "question_category",
"attributes": {
"name": "Back-End Advanced",
"view_order": 4
},
"relationships": {
"questions": {
"data": [
{
"id": "1023",
"type": "question"
},
{
"id": "1024",
"type": "question"
},
{
"id": "1025",
"type": "question"
}
]
}
}
},
{
"id": "3067",
"type": "question_criterion",
"attributes": {
"description": "Lack of knowledge of authentication and authorization",
"instruction": "- The candidate demonstrates a lack of knowledge or awareness of the concerns and best practices related to authentication and authorization in a web application.\n- The candidate does not identify any relevant concerns or potential security risks associated with authentication and authorization.\n- The candidate fails to suggest any solutions or strategies to address the security concerns related to authentication and authorization.",
"grade": 0
},
"relationships": {
"question": {
"data": {
"id": "1023",
"type": "question"
}
}
}
},
{
"id": "3068",
"type": "question_criterion",
"attributes": {
"description": "Password encryption, session expiration, authorization checks",
"instruction": "- The candidate should recognize the importance of encrypting passwords using appropriate encryption or hashing algorithms to protect user credentials in storage.\n- The candidate should mention the need to set session expiration mechanisms to automatically log out users after a period of inactivity or within a specific time frame.\n- The candidate should suggest ensuring that all sensitive operations or access points in the application are protected by proper authorization checks. They may mention the importance of validating user roles or permissions before executing critical actions.",
"grade": 1
},
"relationships": {
"question": {
"data": {
"id": "1023",
"type": "question"
}
}
}
},
{
"id": "3069",
"type": "question_criterion",
"attributes": {
"description": "Knowledge of security policies: Authorization, CORS, passwords, advanced measures",
"instruction": "Beyond responses in 1 - Nice response, the candidate also mentions:\n- The candidate should be familiar with the concept of policy objects or similar approaches for fine-grained authorization control. They should explain how policies can define access rules and permissions for different user roles or groups within the system.\n- The candidate should mention the importance of configuring proper CORS policies to restrict cross-origin requests and mitigate potential security vulnerabilities.\n- The candidate should emphasize the significance of enforcing strong password policies to enhance authentication security. They should mention requirements such as minimum length, complexity, and potentially implementing password hashing techniques.\n- An advanced response may include suggestions for implementing additional security measures such as VPN (Virtual Private Network) access for administration users or IP restrictions to limit access to trusted networks or specific IP addresses.",
"grade": 2
},
"relationships": {
"question": {
"data": {
"id": "1023",
"type": "question"
}
}
}
},
{
"id": "1023",
"type": "question",
"attributes": {
"description": "Every large e-commerce site has an Administration section where logged users from the company can operate the system. These sections must be secure. What concerns do you raise with authentication and authorization in web app? What can you do to make this app secure?",
"view_order": 7
},
"relationships": {
"question_category": {
"data": {
"id": "388",
"type": "question_category"
}
},
"question_criteria": {
"data": [
{
"id": "3067",
"type": "question_criterion"
},
{
"id": "3068",
"type": "question_criterion"
},
{
"id": "3069",
"type": "question_criterion"
}
]
}
}
},
{
"id": "247",
"type": "answer",
"attributes": {
"transcription": "You. In this case we would set up user roles on the system. This would be an example such as an admin staff role or a guest role. So in the event that one of the users could essentials is compromised, assuming it's staff, the damage that they would do on the system wouldn't be that much because there will be restrictions on each user role across the system because each role has a specific set of permissions so that kind of restricts the damage. And then the other bit would be in using authentication, authentication tools like would use JWTs. These are JavaScript web tokens. These generated when a user logs into a system, for example using an email or password, whatever credentials these are signed by the server and a token is sent back to the client. Now these can be used by the server to authenticate requests coming onto the server. Now if a token is invalid, access would be denied. So there are for securing the system and then there are also other libraries like OAuth that can be used to further secure the to steep.",
"matched_criterion_reason": "The candidate recognizes the importance of user roles and permissions to limit the potential damage of compromised accounts. They also mention using JWTs for authentication and OAuth for additional security.",
"created_at": "2023-09-14T10:26:00.224Z",
"media_url": "https://api.labs.revelo.com/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBbFVCIiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--6ef78921f1779e86872e7884300f3b73e023b3f0/videoask_247_answer.mp3"
},
"relationships": {
"evaluation": {
"data": {
"id": "37",
"type": "evaluation"
}
},
"question": {
"data": {
"id": "1023",
"type": "question"
}
},
"matched_criterion": {
"data": {
"id": "3068",
"type": "question_criterion"
}
}
}
},
{
"id": "3070",
"type": "question_criterion",
"attributes": {
"description": "Lack of knowledge of testing practices",
"instruction": "The candidate demonstrates a lack of knowledge or awareness of testing practices and their importance in software development.\nThe candidate does not mention any form of testing or does not consider it a necessary part of their development process.",
"grade": 0
},
"relationships": {
"question": {
"data": {
"id": "1024",
"type": "question"
}
}
}
},
{
"id": "3071",
"type": "question_criterion",
"attributes": {
"description": "Unit testing, potential for growth in other levels",
"instruction": "- The candidate should confirm their use of unit tests to verify individual code components. They should explain the benefits of unit testing in terms of identifying bugs early, ensuring code correctness, and facilitating future maintenance.\n- The candidate may primarily focus on unit testing without much experience in other testing levels. They may mention their willingness to learn and expand their testing practices to include other levels of testing, such as integration testing or E2E testing.",
"grade": 1
},
"relationships": {
"question": {
"data": {
"id": "1024",
"type": "question"
}
}
}
},
{
"id": "3072",
"type": "question_criterion",
"attributes": {
"description": "Test automation, unit testing, advanced testing levels",
"instruction": "- The candidate should confirm their use of test automation frameworks or tools to automate the execution of tests. They should explain the benefits of test automation, such as faster test execution, improved test coverage, and easier regression testing.\n- The candidate should mention their experience with writing and executing unit tests to verify the functionality of individual units of code, such as classes or functions. They should discuss the importance of unit testing for isolating and validating specific code components.\n- An advanced response may go beyond unit testing and include other levels of testing. The candidate may discuss their experience with integration testing, which verifies the interaction and compatibility between different components or modules. They may also mention E2E testing, which validates the entire system's behavior from end to end, and load testing, which assesses the system's performance under high loads or stress.",
"grade": 2
},
"relationships": {
"question": {
"data": {
"id": "1024",
"type": "question"
}
}
}
},
{
"id": "1024",
"type": "question",
"attributes": {
"description": "Do you use test Automation in your projects? How do you test your code? What level of testing are you used to completing?",
"view_order": 8
},
"relationships": {
"question_category": {
"data": {
"id": "388",
"type": "question_category"
}
},
"question_criteria": {
"data": [
{
"id": "3070",
"type": "question_criterion"
},
{
"id": "3071",
"type": "question_criterion"
},
{
"id": "3072",
"type": "question_criterion"
}
]
}
}
},
{
"id": "248",
"type": "answer",
"attributes": {
"transcription": "Yes. I usually test for PHP. I use PHP unit to run my tests. And we use Travis CI for coverage. Covering coverage on the app? No, saco CI for coverage, Travis for the testing, CI CD process, or sometimes the GitHub workflows. Yeah, to fully test. Once the tests are successful, the app will be code onto the server. All the changes will be pulled to the server in case one of the tests fails. Then you'll be alerted and nothing your latest commits in the code won't be pushed to the server. Basically, I think that's how it works. It.",
"matched_criterion_reason": "The candidate mentions the use of test automation (PHP unit) and a continuous integration tool (Travis CI) for testing their code. They also mention the process of not pushing changes to the server if a test fails. However, the candidate does not mention other levels of testing or explain the benefits of unit testing and test automation.",
"created_at": "2023-09-14T10:26:00.769Z",
"media_url": "https://api.labs.revelo.com/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBbFlCIiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--8b5c555aedd388b8fe66c1e6a02e8676c91fcc5e/videoask_248_answer.mp3"
},
"relationships": {
"evaluation": {
"data": {
"id": "37",
"type": "evaluation"
}
},
"question": {
"data": {
"id": "1024",
"type": "question"
}
},
"matched_criterion": {
"data": {
"id": "3071",
"type": "question_criterion"
}
}
}
},
{
"id": "3073",
"type": "question_criterion",
"attributes": {
"description": "Lack of testing awareness",
"instruction": "- The candidate demonstrates a lack of knowledge or awareness of testing practices and the importance of selective testing.\n- The candidate does not identify any specific areas or scenarios where testing may not be necessary or could be de-prioritized.\n- The candidate fails to suggest any strategies or guidelines for determining what should not be tested in an application.",
"grade": 0
},
"relationships": {
"question": {
"data": {
"id": "1025",
"type": "question"
}
}
}
},
{
"id": "3074",
"type": "question_criterion",
"attributes": {
"description": "ORM integration, prioritized testing",
"instruction": "- The candidate may mention that extensive testing of the ORM itself may not be necessary since it is a widely-used and well-tested technology. They should emphasize the importance of verifying the integration and interactions with the ORM rather than testing its internal mechanisms.\n- The candidate should recognize that proof-of-concept implementations, which are often temporary or experimental in nature, may not require the same level of rigorous testing as production-ready code. They should explain that the focus of testing should be on the final, stable version of the application.\n- The candidate may suggest that testing less important or low-risk code components can be de-emphasized to allocate more testing efforts to critical functionality. They should emphasize the importance of prioritizing testing based on the impact and risks associated with different parts of the application.",
"grade": 1
},
"relationships": {
"question": {
"data": {
"id": "1025",
"type": "question"
}
}
}
},
{
"id": "3075",
"type": "question_criterion",
"attributes": {
"description": "Third-party library integration, prioritized testing",
"instruction": "Beyond responses in 1 - Nice response, the candidate also mentions:\n- Advanced candidates understand that third-party libraries are typically extensively tested by their maintainers. These libraries often have their own testing processes and quality assurance practices. Therefore, it may not be necessary to perform thorough testing on the internal functionality of these libraries. Instead, the focus should be on verifying the integration of the application with these libraries and ensuring they work correctly within the specific context of the application.\n- Candidates with an advanced response recognize that not all functions or features within an application hold the same level of criticality. They understand that prioritizing testing efforts on the most important and high-risk areas of the application can be a more efficient use of resources. Less important functions, which have lower risks and lower impact on the overall system, may not require the same level of exhaustive testing. However, it is important to note that this doesn't mean completely ignoring these functions. Basic testing or sanity checks should still be performed to ensure they are functioning as expected.",
"grade": 2
},
"relationships": {
"question": {
"data": {
"id": "1025",
"type": "question"
}
}
}
},
{
"id": "1025",
"type": "question",
"attributes": {
"description": "When and what do you not test in your application?",
"view_order": 9
},
"relationships": {
"question_category": {
"data": {
"id": "388",
"type": "question_category"
}
},
"question_criteria": {
"data": [
{
"id": "3073",
"type": "question_criterion"
},
{
"id": "3074",
"type": "question_criterion"
},
{
"id": "3075",
"type": "question_criterion"
}
]
}
}
},
{
"id": "249",
"type": "answer",
"attributes": {
"transcription": "Let's change components that have no impact in case something goes bad, in case they don't work or anything. For example? For example, if an image doesn't load or it oh, what? I wouldn't say relevant, irrelevant components on the app, but mostly, I think, some front end components. For example, like a footer. Not like a footer. I wouldn't write tests for a footer to load on the site. Doesn't seem to be a good use of my time. But I'm sure that they do write tests for front end components, but mostly only those that really crucial to the system and not these other small bits and.",
"matched_criterion_reason": "The candidate demonstrates a lack of knowledge or awareness of testing practices and the importance of selective testing. They do not identify any specific areas or scenarios where testing may not be necessary or could be de-prioritized. They also fail to suggest any strategies or guidelines for determining what should not be tested in an application.",
"created_at": "2023-09-14T10:26:01.215Z",
"media_url": "https://api.labs.revelo.com/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBbGNCIiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--08a8e4e2f62da832d862317638155fd3380b3b5f/videoask_249_answer.mp3"
},
"relationships": {
"evaluation": {
"data": {
"id": "37",
"type": "evaluation"
}
},
"question": {
"data": {
"id": "1025",
"type": "question"
}
},
"matched_criterion": {
"data": {
"id": "3073",
"type": "question_criterion"
}
}
}
},
{
"id": "389",
"type": "question_category",
"attributes": {
"name": "DevOps",
"view_order": 5
},
"relationships": {
"questions": {
"data": [
{
"id": "1026",
"type": "question"
},
{
"id": "1027",
"type": "question"
},
{
"id": "1028",
"type": "question"
},
{
"id": "1029",
"type": "question"
},
{
"id": "1030",
"type": "question"
}
]
}
}
},
{
"id": "3079",
"type": "question_criterion",
"attributes": {
"description": "No knowledge of Babel \u0026 Webpack.",
"instruction": "- The candidate demonstrates a lack of knowledge or awareness of Babel and webpack and their purposes.\n- The candidate does not provide any relevant details or explanations regarding Babel and webpack and their usage in application setup.",
"grade": 0
},
"relationships": {
"question": {
"data": {
"id": "1027",
"type": "question"
}
}
}
},
{
"id": "3080",
"type": "question_criterion",
"attributes": {
"description": "Babel: JS transpiler. Webpack: Asset bundler.",
"instruction": "- The candidate should provide a basic understanding of Babel as a tool to transpile JavaScript code. They may mention its ability to convert modern JavaScript syntax into compatible versions for older browsers.\n- The candidate should demonstrate a general understanding of webpack as a module bundler. They may mention its role in bundling and optimizing various assets of an application.\n- The candidate may not provide a clear explanation of how Babel and webpack work together in the setup process.",
"grade": 1
},
"relationships": {
"question": {
"data": {
"id": "1027",
"type": "question"
}
}
}
},
{
"id": "3081",
"type": "question_criterion",
"attributes": {
"description": "Babel: Transpile modern JS. Webpack: Bundle-optimized files.",
"instruction": "- The candidate should provide a clear explanation of Babel as a transpiler. They should discuss how Babel allows developers to write modern JavaScript code (ES6/ES7/ESNext) and converts it into backward-compatible versions of JavaScript that can run in older browsers or environments. The candidate should mention the use of Babel presets and plugins to configure the specific transformations and polyfills needed for the project.\n- The candidate should explain webpack as a module bundler. They should describe how webpack takes all the project's modules, including JavaScript, CSS, and other assets, and bundles them together into optimized, production-ready files. The candidate should discuss the configuration of entry points, loaders, and plugins in webpack to handle different file types, perform transformations, and generate the final output bundle.",
"grade": 2
},
"relationships": {
"question": {
"data": {
"id": "1027",
"type": "question"
}
}
}
},
{
"id": "1027",
"type": "question",
"attributes": {
"description": "Let's consider a situation where you are working on setting up an application. Could you explain how Babel and Webpack are used in the setup? What does each one do?",
"view_order": 11
},
"relationships": {
"question_category": {
"data": {
"id": "389",
"type": "question_category"
}
},
"question_criteria": {
"data": [
{
"id": "3079",
"type": "question_criterion"
},
{
"id": "3080",
"type": "question_criterion"
},
{
"id": "3081",
"type": "question_criterion"
}
]
}
}
},
{
"id": "251",
"type": "answer",
"attributes": {
"transcription": "From my experience, okay, from what I know, Babel is used to convert newer JavaScript, for example, like Es six, to an old version of JavaScript that can be that can be interpreted by most by all browsers or even old browsers, whereas Webpack is used in bundling bundles. The app. Yeah, bundling. And I think also opt minimizing the code.",
"matched_criterion_reason": "The candidate demonstrates a general understanding of Babel and webpack, but lacks some details and explanations.",
"created_at": "2023-09-14T10:26:02.195Z",
"media_url": "https://api.labs.revelo.com/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBbGtCIiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--2e4aa728af8ca130d8d99ba160c920360323934b/videoask_251_answer.mp3"
},
"relationships": {
"evaluation": {
"data": {
"id": "37",
"type": "evaluation"
}
},
"question": {
"data": {
"id": "1027",
"type": "question"
}
},
"matched_criterion": {
"data": {
"id": "3080",
"type": "question_criterion"
}
}
}
},
{
"id": "3082",
"type": "question_criterion",
"attributes": {
"description": "Lack of knowledge on monitoring",
"instruction": "- The candidate demonstrates a lack of knowledge or awareness of monitoring practices and tools used in production environments.\n- The candidate does not provide any relevant details or explanations regarding monitoring approaches or incident detection in production.",
"grade": 0
},
"relationships": {
"question": {
"data": {
"id": "1028",
"type": "question"
}
}
}
},
{
"id": "3083",
"type": "question_criterion",
"attributes": {
"description": "SaaS monitoring services mentioned",
"instruction": "- The candidate may mention popular SaaS solutions such as New Relic, Rollbar, AppSignal, or other similar services. They should explain how these tools provide real-time monitoring, performance metrics, error tracking, and log analysis capabilities to detect failures and incidents.\n- The candidate should acknowledge the reliance on external services for monitoring and incident detection.",
"grade": 1
},
"relationships": {
"question": {
"data": {
"id": "1028",
"type": "question"
}
}
}
},
{
"id": "3084",
"type": "question_criterion",
"attributes": {
"description": "Self-hosted monitoring \u0026 PagerDuty integration",
"instruction": "Beyond responses in 1 - Nice response, the candidate also mentions:\n- The candidate may mention the option of using a self-hosted monitoring solution, where the organization sets up and maintains its own monitoring infrastructure. This could involve using tools like Prometheus, Grafana, ELK stack, or custom-built monitoring systems.\n- The candidate may highlight the use of PagerDuty, an incident management platform, to receive real-time alerts and notifications about failures and incidents in production. They should explain how PagerDuty integrates with various monitoring tools and provides on-call schedules and escalation policies for effective incident response.",
"grade": 2
},
"relationships": {
"question": {
"data": {
"id": "1028",
"type": "question"
}
}
}
},
{
"id": "1028",
"type": "question",
"attributes": {
"description": "Your e-commerce is running in production. How do you monitor an app in production? How do you know about failures and incidents in production?",
"view_order": 12
},
"relationships": {
"question_category": {
"data": {
"id": "389",
"type": "question_category"
}
},
"question_criteria": {
"data": [
{
"id": "3082",
"type": "question_criterion"
},
{
"id": "3083",
"type": "question_criterion"
},
{
"id": "3084",
"type": "question_criterion"
}
]
}
}
},
{
"id": "252",
"type": "answer",
"attributes": {
"transcription": "You. So an app in production would basically check the logs. Man these are not one logs, but error logs, critical error logs. These would be logged. You'd enable this in your app. And also you would also check check would also check the status requests being sent. That is, if you have a panel and whatnot. But most importantly, checking logs helps you keep track of what's going on on the application. If it's running smoothly. For example, if it's a Web app, you check. If you're running, let's say, NGINX or Apache, you would be checking the error logs or the access logs for anything peculiar. Yeah.",
"matched_criterion_reason": "The candidate demonstrates a lack of knowledge or awareness of monitoring practices and tools used in production environments. The candidate does not provide any relevant details or explanations regarding monitoring approaches or incident detection in production.",