-
Notifications
You must be signed in to change notification settings - Fork 0
/
questions.js
1285 lines (1282 loc) · 44.9 KB
/
questions.js
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
// These are all the questions and answers for the assessment tool.
// This could be ut into a database and called, or my idea was to put the data into a csv file
// and call/read the file to output the data. This way the csv file could be imported into ModX
// by anyone who had access to ModX, whereas using a database would most likely require someone
// from IT helping.
export const valueQuestions = [
{
questionId: 1,
question: "How do your behaviours support your organisation's culture?",
answers: [
{
answerId: 1,
answer:
"I recognise the culture of the team and adapt my behaviours accordingly",
level: "Entry",
},
{
answerId: 2,
answer:
"I seek to understand the reasons behind decisions and how they best serve the organisation",
level: "Emerging",
},
{
answerId: 3,
answer:
"I consistently and visibly act as the conscience of the organisation and embed its values and behaviours within the team",
level: "Established",
},
{
answerId: 4,
answer:
"I act as a role model, I am trusted by others and I am aware of the impact my actions have on my team and the organisation",
level: "Expert",
},
],
},
{
questionId: 2,
question: "How transparent and ethical are you in your interactions? ",
answers: [
{
answerId: 1,
answer:
"I am honest with colleagues when errors are made, and I make sure that they do not happen again",
level: "Entry",
},
{
answerId: 2,
answer:
"I am aware of the impact errors have on the organisation and know when to ask for help. I work with the team to improve processes",
level: "Emerging",
},
{
answerId: 3,
answer:
"I accept responsibility for my errors and offer solutions to the issues that arise, and encourage others to do the same",
level: "Established",
},
{
answerId: 4,
answer:
"I proactively look for errors that could occur based on my actions or those of others and encourage others to do the same",
level: "Expert",
},
],
},
{
questionId: 3,
question:
"To what extent do you embody your organisation's corporate conscience and ethos?",
answers: [
{
answerId: 1,
answer:
"I am proactive in learning the basics of my role as well as the technical elements",
level: "Entry",
},
{
answerId: 2,
answer:
"I will commit to delivering projects that have genuine benefit but may have low profile",
level: "Emerging",
},
{
answerId: 3,
answer:
"I am authentic and courageous in influencing others to do the right thing and focus on what is right for the organisation in any given context",
level: "Established",
},
{
answerId: 4,
answer:
"I am a lone voice when necessary, representing the interests of the organisation and clarifying boundaries when necessary",
level: "Expert",
},
],
},
{
questionId: 4,
question: "To what level do you act with discretion and humility?",
answers: [
{
answerId: 1,
answer:
"I am able to recognise when confidentiality and discretion are required and avoid sharing organisational information informally",
level: "Entry",
},
{
answerId: 2,
answer:
"I exercise diplomacy in challenging situations and maintain confidentiality",
level: "Emerging",
},
{
answerId: 3,
answer:
"I can balance discretion and transparency effectively, and I am seen as a trusted keeper of secrets who exercises good judgement around confidential issues ",
level: "Established",
},
{
answerId: 4,
answer:
"I can confidently lead on confidential projects, clarifying and reinforcing the need for confidentiality to project members and stakeholders",
level: "Expert",
},
],
},
{
questionId: 5,
question: "How independent are you in your role? ",
answers: [
{
answerId: 1,
answer:
"I balance technical learning and organisational deliverables, seeking clarification when required and welcome input from colleagues",
level: "Entry",
},
{
answerId: 2,
answer:
"I can identify both conscious and unconscious bias and avoid being swayed by powerful and/or negative influences",
level: "Emerging",
},
{
answerId: 3,
answer:
"I draw upon a robust technical knowledge, and I am unafraid to challenge or defend legacy practices to improve process or compliance",
level: "Established",
},
{
answerId: 4,
answer:
"I am prepared to make, justify and stand by unpopular decisions",
level: "Expert",
},
],
},
{
questionId: 6,
question:
"How do you maintain personal and organisational confidentiality?",
answers: [
{
answerId: 1,
answer:
"I recognise the importance of and maintain confidentiality and discretion when undertaking my role",
level: "Entry",
},
{
answerId: 2,
answer:
"I maintain confidentiality while undertaking my role, following established policies and procedures, and ensuring others recognise how important this is",
level: "Emerging",
},
{
answerId: 3,
answer:
"I ensure that reporting lines, processes and relationships support discretion, transparency and confidentiality",
level: "Established",
},
{
answerId: 4,
answer:
"I use discretion in challenging confidential matters and act as a ‘wise counsellor' to the board, senior colleagues and external stakeholders",
level: "Expert",
},
],
},
{
questionId: 7,
question: "How do you interact with your team?",
answers: [
{
answerId: 1,
answer:
"I am proactive in seeking further opportunities to support colleagues whilst balancing personal deliverables",
level: "Entry",
},
{
answerId: 2,
answer:
"I am approachable, curious, ask questions and start conversations. I contribute with confidence and accept alternative views from other team members",
level: "Emerging",
},
{
answerId: 3,
answer:
"I treat everyone with respect and consider all points of view, and actively recognise and celebrate the successes of others",
level: "Established",
},
{
answerId: 4,
answer:
"I am inclusive and respectful to all, whether on the board or not, and I actively avoid 'group think'",
level: "Expert",
},
],
},
{
questionId: 8,
question: "How do you make decisions in your role?",
answers: [
{
answerId: 1,
answer: "I am receptive to advice and guidance from others",
level: "Entry",
},
{
answerId: 2,
answer: "I am receptive to new ideas from a variety of sources ",
level: "Emerging",
},
{
answerId: 3,
answer:
"I maintain objectivity with all colleagues, regardless of seniority, and remain neutral in facilitating decision making",
level: "Established",
},
{
answerId: 4,
answer:
"I actively seek a wide range of opinions but maintain a professional distance to retain objectivity",
level: "Expert",
},
],
},
{
questionId: 9,
question:
"How do you balance the conflicting needs of all your stakeholders? ",
answers: [
{
answerId: 1,
answer:
"I respect the pressures, motivations and obligations of others when seeking their advice and input",
level: "Entry",
},
{
answerId: 2,
answer:
"I respect the pressures and motivations of other people and offer support accordingly, and I ensure that people are engaged in effective dialogue ",
level: "Emerging",
},
{
answerId: 3,
answer:
"I am straightforward and fair, and I am prepared to act on information and make decisions even when they are uncomfortable",
level: "Established",
},
{
answerId: 4,
answer:
"I am able to listen to all views and facilitate ethical discussions with all stakeholders, and know when it is necessary to challenge thinking or find a middle ground. I am able to recognise when lines are crossed.",
level: "Expert",
},
],
},
{
questionId: 10,
question:
"How do you address issues in your role and consider organisaltional needs?",
answers: [
{
answerId: 1,
answer:
"I ask for help and guidance from those in my team to understand the background and context when I am unsure",
level: "Entry",
},
{
answerId: 2,
answer:
"I proactively use a wide range of sources from different areas of the business to ask for help and guidance, to understand the background and context and do not take things at face value",
level: "Emerging",
},
{
answerId: 3,
answer:
"I can equally lead a team and be a part of a team while proactively seeking and providing support to team members",
level: "Established",
},
{
answerId: 4,
answer:
"I can confidently support others when they are unclear and proactively use internal and external networks for support on sensitive or complex matters to avoid professional isolation",
level: "Expert",
},
],
},
{
questionId: 11,
question:
"Do you understand the biases, strengths and weaknesses of yourself and others?",
answers: [
{
answerId: 1,
answer:
"I have the awareness to know when I need help and the confidence to ask for it",
level: "Entry",
},
{
answerId: 2,
answer:
"I am aware that I am stronger in some areas than others. I am open about my mistakes and am confident in asking for help when I need it. I am aware of the areas I am stronger than others.",
level: "Emerging",
},
{
answerId: 3,
answer:
"I am aware of conscious and unconscious bias in myself and others and maintain objectivity with colleagues, regardless of seniority. I understand my strengths and weaknesses and act accordingly ",
level: "Established",
},
{
answerId: 4,
answer:
"I am highly self-aware and actively work to mitigate personal biases and the biases of others to achieve good boardroom dynamics. Through my leadership role, I enable others to become self-aware and create opportunities for their self-development",
level: "Expert",
},
],
},
{
questionId: 12,
question: "How do you handle competing workloads?",
answers: [
{
answerId: 1,
answer:
"I recognise when others are under pressure and seek to mitigate this through helping or delaying non-urgent requests",
level: "Entry",
},
{
answerId: 2,
answer:
"I remain calm and composed under pressure and effectively balance my commitments, asking for help when required",
level: "Emerging",
},
{
answerId: 3,
answer:
"I am confident but not overbearing and remain calm, consistent and authoritative while balancing my workload and supporting others, ensuring professional standards are met",
level: "Established",
},
{
answerId: 4,
answer:
"I am able to manage my workload and proactively support others in managing their workloads. I work hard to manage expectations at the board level ",
level: "Expert",
},
],
},
{
questionId: 13,
question: "How do you ensure continuous professional development? ",
answers: [
{
answerId: 1,
answer:
"I can balance personal learning, internally and externally, with the deliverables of my role",
level: "Entry",
},
{
answerId: 2,
answer:
"I demonstrate a commitment to learning by experience and ask for opportunities to stretch and develop my skills",
level: "Emerging",
},
{
answerId: 3,
answer:
"I am constantly learning and encouraging team members to do the same",
level: "Established",
},
{
answerId: 4,
answer:
"I instil a strong learning culture across the organisation and lead by example",
level: "Expert",
},
],
},
{
questionId: 14,
question: "How receptive are you to challenge and innovation?",
answers: [
{
answerId: 1,
answer:
"I recognise the personal need to learn and accept input from others",
level: "Entry",
},
{
answerId: 2,
answer:
"I embrace change and step up when confronted with personal challenges",
level: "Emerging",
},
{
answerId: 3,
answer:
"I show resilience when dealing with new situations, powerful personalities and emotions and demonstrate perseverance in the face of personal and organisational challenges",
level: "Established",
},
{
answerId: 4,
answer:
"I embrace change when required and support others. I encourage, support and make decisions without reference to a personal situation ",
level: "Expert",
},
],
},
];
export const knowledgeQuestions = [
{
questionId: 1,
question:
"How well do you understand your organisation's structure, roles and responsibilities ",
answers: [
{
answerId: 1,
answer:
"I have started to understand the organisation, the various sections and departments, and how they are linked, and where authority lies. I am able to seek clarity as and when it is required",
level: "Entry",
},
{
answerId: 2,
answer:
"I understand the roles and responsibilities of each individual and forum within the organisation, starting with the board and any committees appointed by the board. I know where to look for more information",
level: "Emerging",
},
{
answerId: 3,
answer:
"I am well versed in the structure and contribute to discussions on organisational effectiveness and governance in practice",
level: "Established",
},
{
answerId: 4,
answer:
"I am accountable for the governance function within the organisation and exercise authority over structural and functional changes within the team, taking integration into consideration ",
level: "Expert",
},
],
},
{
questionId: 2,
question:
"What sources of information do you use to gain technical knowledge?",
answers: [
{
answerId: 1,
answer:
"I am aware of the sources of specific knowledge within the organisation and am able to ask for advice with clarity and respect",
level: "Entry",
},
{
answerId: 2,
answer:
"I am able to explain specialist topics to colleagues and help them understand the relationship to their roles. I am confident in asking my internal network when I need more information",
level: "Emerging",
},
{
answerId: 3,
answer:
"I am a source of guidance on specialist topics and convey their importance to the board and other external stakeholders",
level: "Established",
},
{
answerId: 4,
answer:
"I am an authoritative voice on specialist issues and am able to draft and commission internal and external communications and present them to the board",
level: "Expert",
},
],
},
{
questionId: 3,
question:
"How familiar are you with the processes and practices critical to your organisation's smooth operation? ",
answers: [
{
answerId: 1,
answer:
"I am learning the processes and practices within the organisation but can use transferable knowledge from other roles or education to make intelligent working choices",
level: "Entry",
},
{
answerId: 2,
answer:
"I am able to understand and convey the importance and relevance of our process and practices to varying stakeholders",
level: "Emerging",
},
{
answerId: 3,
answer:
"I am comfortable with our processes and practices and can identify and resolve potential issues, challenging colleagues and third parties where appropriate. I can escalate if necessary",
level: "Established",
},
{
answerId: 4,
answer:
"I am a trusted source of knowledge and contribute to internal and external forums on matters related to organisational effectiveness, purpose and governance in general",
level: "Expert",
},
],
},
{
questionId: 4,
question:
"To what extent are you aware of your organisation's culture and the types of behaviours that are exhibited? ",
answers: [
{
answerId: 1,
answer:
"I have taken the time to understand the values and cultures of the organisation",
level: "Entry",
},
{
answerId: 2,
answer:
"I am aware of the organisation's culture and can share this with colleagues. When I am unclear, or something changes, I know where to go to find out more information",
level: "Emerging",
},
{
answerId: 3,
answer:
"I am well aware of the organisation's culture and am a source of guidance for others. I am able to bring and explain concerns to the board and can explain these concepts to the board",
level: "Established",
},
{
answerId: 4,
answer:
"I recognise the culture of the organisation, and support the board and other leaders in maintaining its appropriateness in changing circumstances",
level: "Expert",
},
],
},
{
questionId: 5,
question:
"How aware are you of your organisations strategy, how it has been developed and how it works? ",
answers: [
{
answerId: 1,
answer:
"I understand what is meant by strategy in general terms and have become familiar with my organisation's strategy and how it is delivered",
level: "Entry",
},
{
answerId: 2,
answer:
"I understand the organisation's strategy, and why it is important within my role. I can communicate this to colleagues",
level: "Emerging",
},
{
answerId: 3,
answer:
"I support the leaders of the organisation in the development and deployment of our strategy through personal actions, as well as written and verbal communications",
level: "Established",
},
{
answerId: 4,
answer:
"I support and work with the chair of the board to develop our strategy and am integral in addressing leadership, cultural and organisational behavioural issues ",
level: "Expert",
},
],
},
{
questionId: 6,
question: "How involved are you in strategic change?",
answers: [
{
answerId: 1,
answer:
"I get involved professionally and effectively when I am asked to apply organisational actions within my role",
level: "Entry",
},
{
answerId: 2,
answer:
"I am supportive of strategic changes and am confident in escalating organisational concerns in a professional manner",
level: "Emerging",
},
{
answerId: 3,
answer:
"I am a regular contributor to discussions on strategy and culture, and how to implement change internally and amongst professional peers",
level: "Established",
},
{
answerId: 4,
answer:
"I am a respected leader within the organisation and can confidently communicate, contribute to strategic discussions and lead on implementation of projects",
level: "Expert",
},
],
},
{
questionId: 7,
question:
"How well do you understand individual and organisational motivations and how they affect decision making? ",
answers: [
{
answerId: 1,
answer:
"I have started to recognise the dynamics between those who attend meetings and how this can affect the decision-making process ",
level: "Entry",
},
{
answerId: 2,
answer:
"I understand the dynamics between individuals and between different forums within the organisation. I can reflect on how my actions affect others and adapt my actions in future situations ",
level: "Emerging",
},
{
answerId: 3,
answer:
"I am aware of how my actions and others' affect decision-making within teams and across the organisation. I am able to identify, escalate and problem solve issues when they arise",
level: "Established",
},
{
answerId: 4,
answer:
"I acknowledge, support, confront and challenge motivations across the business and address leadership issues in a professional, confident and results-focused manner that enables respect and support from board members",
level: "Expert",
},
],
},
{
questionId: 8,
question:
"How well do you understand the environment within which your organisation works and the impact you have? ",
answers: [
{
answerId: 1,
answer:
"I can identify the sector in which the organisation operates and open to learning more about these concepts from colleagues and through study",
level: "Entry",
},
{
answerId: 2,
answer:
"I am aware of the varying environments within which our organisation operates. I am able to report negative effects and measure positive impact.",
level: "Emerging",
},
{
answerId: 3,
answer:
"I maintain up-to-date personal knowledge of external influences on the organisation, sharing this readily with board members in a professional and supportive manner",
level: "Established",
},
{
answerId: 4,
answer:
"I pro-actively share knowledge with the chair and board members about the external environment ",
level: "Expert",
},
],
},
{
questionId: 9,
question:
"How well do you understand the impact of external stakeholders on your organisation?",
answers: [
{
answerId: 1,
answer:
"I can identify our external stakeholders and understand what they offer our organisation",
level: "Entry",
},
{
answerId: 2,
answer:
"I recognise the various external stakeholders of the organisation, taking time to understand the impact these may have on internal dynamics and actions",
level: "Emerging",
},
{
answerId: 3,
answer:
"I am confident in my understanding of the impacts of external stakeholders and am relied upon to share knowledge and expertise",
level: "Established",
},
{
answerId: 4,
answer:
"I take the lead in communicating to external stakeholders, such as shareholders, regulators or other bodies, to engage externally on matters related to the organisation, and influence how their actions affect our practices. I provide input on external initiatives in areas where our organisation has influence",
level: "Expert",
},
],
},
{
questionId: 10,
question:
"What level of understanding do you have around global ESG priorities, impacts and requirements? ",
answers: [
{
answerId: 1,
answer: "I am aware of ESG and how it relates to my role",
level: "Entry",
},
{
answerId: 2,
answer:
"I am aware of ESG priorities, impacts and requirements and know where to obtain further guidance if necessary and explain these concepts to colleagues",
level: "Emerging",
},
{
answerId: 3,
answer:
"I am a source of guidance for others on ESG related matters and am able to explain these concepts to the board",
level: "Established",
},
{
answerId: 4,
answer:
"I am an authoritative voice on these issues and can draft and commission internal and external communications and present them to the board",
level: "Expert",
},
],
},
{
questionId: 11,
question:
"To what level do you understand the governance principles, sources of law, and regulations as relevant to your organisation? ",
answers: [
{
answerId: 1,
answer:
"I understand the basics and am open to understanding more. I gain knowledge from colleagues on the operational principles applied to my role, team and organisation ",
level: "Entry",
},
{
answerId: 2,
answer:
"I understand the governance principles, laws and regulations and know where to obtain further guidance if necessary. I am increasingly able to explain these concepts to colleagues",
level: "Emerging",
},
{
answerId: 3,
answer:
"I am a source of guidance for others on these topics and am able to explain these concepts to the board",
level: "Established",
},
{
answerId: 4,
answer:
"I have an overarching understanding of all these areas across the organisation and can confidently advise on the various activities in relation to board oversight, involvement or activity",
level: "Expert",
},
],
},
{
questionId: 12,
question:
"How well do you understand financial concepts and controls and how they inform decision making? ",
answers: [
{
answerId: 1,
answer: "I have a general understanding of financial concepts ",
level: "Entry",
},
{
answerId: 2,
answer:
"I can contribute to conversations regarding financial concepts and controls across the organisation",
level: "Emerging",
},
{
answerId: 3,
answer:
"I am able to identify and communicate priorities for board discussion, working with the chair to ensure priorities are clearly identified, monitored and actioned appropriately",
level: "Established",
},
{
answerId: 4,
answer:
"I have a strong grasp of financial concepts and how they apply to decision-making and activities across the organisation, and can explain them to and on behalf of the board",
level: "Expert",
},
],
},
{
questionId: 13,
question: "How involved in risk management are you?",
answers: [
{
answerId: 1,
answer:
"I am aware of identified risks within my role and how it relates to the organisation",
level: "Entry",
},
{
answerId: 2,
answer:
"I am able to monitor known risks and identify new risks within my role",
level: "Emerging",
},
{
answerId: 3,
answer:
"I can contribute to discussions on risk management internally and work to improve our risk management practices across the organisation",
level: "Established",
},
{
answerId: 4,
answer:
"I contribute to organisational strategy around risk and engage in technical discussions on these issues internally and externally",
level: "Expert",
},
],
},
{
questionId: 14,
question: "Do you understand the purpose and requirements of reporting?",
answers: [
{
answerId: 1,
answer: "I have an understanding of reporting and why it is necessary",
level: "Entry",
},
{
answerId: 2,
answer:
"I understand the need and importance of reporting and can discuss its importance with colleagues and find ways to improve my contributions",
level: "Emerging",
},
{
answerId: 3,
answer:
"I am an integral part of determining the reporting requirements for our organisation and communicating its significance across the organisation",
level: "Established",
},
{
answerId: 4,
answer:
"I am responsible for effective compliance with legislative and regulatory matters related to governance and the related reporting requirements. I am regularly involved in internal reviews ",
level: "Expert",
},
],
},
];
export const practiceQuestions = [
{
questionId: 1,
question: "How do you support the board and prepare for meetings?",
answers: [
{
answerId: 1,
answer:
"I support others in administrative tasks related to governance matters, such as collating board packs for meetings and maintaining records. I recognise the importance of scheduling meetings in advance and ensuring my actions deliver",
level: "Entry",
},
{
answerId: 2,
answer:
"I plan the board schedule for the next period and work with others to ensure board packs are collated and circulated in advance of meetings, leading on administrative aspects of this task",
level: "Emerging",
},
{
answerId: 3,
answer:
"I plan the annual work cycle and board schedules, liaising with board members where appropriate and ensuring this is achievable and communicated. I take internal and external factors into consideration",
level: "Established",
},
{
answerId: 4,
answer:
"I set the long term planning and strategy for governance and oversight, and support others in their planning and prioritising to ensure a flexible and responsive governance function. I support the chair in reviewing board packs and their effective use in board meetings",
level: "Expert",
},
],
},
{
questionId: 2,
question:
"How involved are you in planning and implementing projects in your organisation?",
answers: [
{
answerId: 1,
answer:
"I deliver tasks based on documented calendars without reminders",
level: "Entry",
},
{
answerId: 2,
answer:
"I undertake logistical and functional activity against a prescribed plan and responsible for my routine planning, anticipating issues and proposing solutions. I take opportunities to manage specific projects",
level: "Emerging",
},
{
answerId: 3,
answer:
"I oversee programmes with responsibility for the implementation of multiple projects and quality assurance of outputs",
level: "Established",
},
{
answerId: 4,
answer:
"I act as a sponsor/lead for projects across the organisation and with third parties",
level: "Expert",
},
],
},
{
questionId: 3,
question: "How autonomous are you in your role? ",
answers: [
{
answerId: 1,
answer: "I deliver confidently based on instructions from colleagues",
level: "Entry",
},
{
answerId: 2,
answer:
"I work with supervision in some areas and prioritise my own workload",
level: "Emerging",
},
{
answerId: 3,
answer:
"I work autonomously in my role, supporting others where necessary",
level: "Established",
},
{
answerId: 4,
answer:
"I work autonomously on my tasks and support teams and individuals across the organisation and board ",
level: "Expert",
},
],
},
{
questionId: 4,
question: "To what level do you produce minutes? ",
answers: [
{
answerId: 1,
answer:
"I can produce basic minutes and maintain company records under instruction, seeking clarity when necessary",
level: "Entry",
},
{
answerId: 2,
answer:
"I produce clear, accurate minutes, maintain company records, registrations and calendars, and ensure actions agreed in minutes are documented and tracked clearly",
level: "Emerging",
},
{
answerId: 3,
answer:
"I provide a clear organisational memory through accurate minutes and record keeping that are balanced and fair, ensuring agreed actions are recorded, tracked, delivered and monitored",
level: "Established",
},
{
answerId: 4,
answer:
"I record minutes diplomatically but clearly, giving an accurate, true and fair understanding to internal and external readers and ensuring they can hold up to increased scrutiny",
level: "Expert",
},
],
},
{
questionId: 5,
question:
"How do you approach organisational processes related to your role?",
answers: [
{
answerId: 1,
answer:
"I know where to source processes and procedures applicable to my role and proactively seek clarification when needed",
level: "Entry",
},
{
answerId: 2,
answer:
"I follow processes to prevent problems and effectively prioritise tasks. I suggest improvements to processes when I notice something that doesn't work",
level: "Emerging",