forked from VGraupera/1on1-questions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
questions.json
2277 lines (2277 loc) · 76 KB
/
questions.json
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
[
{
"id": 306,
"question": "If you were me, what changes would you make?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.870Z",
"updated_at": "2017-11-18T14:26:13.870Z"
},
{
"id": 307,
"question": "How do you prefer to receive feedback?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.874Z",
"updated_at": "2017-11-18T14:26:13.874Z"
},
{
"id": 308,
"question": "Do you feel you\u2019re getting enough feedback? Why\/why not?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.878Z",
"updated_at": "2017-11-18T14:26:13.878Z"
},
{
"id": 309,
"question": "What aspect of your job you would like more help or coaching?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.881Z",
"updated_at": "2017-11-18T14:26:13.881Z"
},
{
"id": 310,
"question": "How can I better support you?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.893Z",
"updated_at": "2017-11-18T14:26:13.893Z"
},
{
"id": 311,
"question": "What could I do as a manager to make your work easier?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.896Z",
"updated_at": "2017-11-18T14:26:13.896Z"
},
{
"id": 312,
"question": "What is something I could do better? What feedback do you have for me?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.898Z",
"updated_at": "2017-11-18T14:26:13.898Z"
},
{
"id": 313,
"question": "What aspects of your work would you like more or less direction from me?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.909Z",
"updated_at": "2017-11-18T14:26:13.909Z"
},
{
"id": 314,
"question": "What would you like to know about me?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.912Z",
"updated_at": "2017-11-18T14:26:13.912Z"
},
{
"id": 315,
"question": "What do you like about my management style? What do you dislike?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.915Z",
"updated_at": "2017-11-18T14:26:13.915Z"
},
{
"id": 316,
"question": "What have your past managers done that you\u2019d like me to also do or not do?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.918Z",
"updated_at": "2017-11-18T14:26:13.918Z"
},
{
"id": 317,
"question": "What\u2019s your favorite thing I do as a manager of this team I should keep doing?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.930Z",
"updated_at": "2017-11-18T14:26:13.930Z"
},
{
"id": 318,
"question": "Where do you think I can be most helpful?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.933Z",
"updated_at": "2017-11-18T14:26:13.933Z"
},
{
"id": 319,
"question": "What are your thoughts on my changes?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.935Z",
"updated_at": "2017-11-18T14:26:13.935Z"
},
{
"id": 320,
"question": "How can I make your days more fulfilling?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.938Z",
"updated_at": "2017-11-18T14:26:13.938Z"
},
{
"id": 321,
"question": "What can I be doing better to help you in your job?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.950Z",
"updated_at": "2017-11-18T14:26:13.950Z"
},
{
"id": 322,
"question": "Are there any obstacles I can remove for you?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.953Z",
"updated_at": "2017-11-18T14:26:13.953Z"
},
{
"id": 323,
"question": "What can I do to help you achieve you current goals and priorities?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.956Z",
"updated_at": "2017-11-18T14:26:13.956Z"
},
{
"id": 324,
"question": "What can I do to make things more manageable?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.959Z",
"updated_at": "2017-11-18T14:26:13.959Z"
},
{
"id": 325,
"question": "How might I make this project more challenging or interesting for you?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.971Z",
"updated_at": "2017-11-18T14:26:13.971Z"
},
{
"id": 326,
"question": "What do you think I should know about the project, but might not?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.976Z",
"updated_at": "2017-11-18T14:26:13.976Z"
},
{
"id": 327,
"question": "What is the biggest challenge you are currently facing? How can I help with that?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.979Z",
"updated_at": "2017-11-18T14:26:13.979Z"
},
{
"id": 328,
"question": "At what point in the past week were you most frustrated with or discouraged by your work? What can I do to help you manage that?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.982Z",
"updated_at": "2017-11-18T14:26:13.982Z"
},
{
"id": 329,
"question": "What additional resources can I provide for you between now and the next time we meet?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.995Z",
"updated_at": "2017-11-18T14:26:13.995Z"
},
{
"id": 330,
"question": "I\u2019ve noticed that our last several 1-on-1s have stayed pretty surface. What are your honest impressions of this meeting? What could we be doing differently or better?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:13.998Z",
"updated_at": "2017-11-18T14:26:13.998Z"
},
{
"id": 331,
"question": "What would you like to see change about these discussions? How could we make them more useful for you?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.009Z",
"updated_at": "2017-11-18T14:26:14.009Z"
},
{
"id": 332,
"question": "I\u2019m trying to make my 1-on-1s better and would appreciate your honest feedback on this one \u2014 what did you like about it, and what could be improved?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.013Z",
"updated_at": "2017-11-18T14:26:14.013Z"
},
{
"id": 334,
"question": "I'd like to improve as a manager and I could really use your help. Next week, would you be willing to share some feedback on one to two things you think I could do better as your manager?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.028Z",
"updated_at": "2017-11-18T14:26:14.028Z"
},
{
"id": 335,
"question": "What can I do to help you enjoy your work more or remove roadblocks to progress?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.030Z",
"updated_at": "2017-11-18T14:26:14.030Z"
},
{
"id": 336,
"question": "Which areas would you like more or less direction from me on your work?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.033Z",
"updated_at": "2017-11-18T14:26:14.033Z"
},
{
"id": 337,
"question": "What are your impressions of our 1-on-1s? What could we do differently or better?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.045Z",
"updated_at": "2017-11-18T14:26:14.045Z"
},
{
"id": 338,
"question": "Do you think that you receive enough feedback? Is feedback helpful for your personal development? What can I do to help you get the feedback you want?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.048Z",
"updated_at": "2017-11-18T14:26:14.048Z"
},
{
"id": 339,
"question": "Would you like more coaching? What aspect of your job do you like more help and coaching on?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.051Z",
"updated_at": "2017-11-18T14:26:14.051Z"
},
{
"id": 340,
"question": "What can I do as a manager to make your work easier?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.062Z",
"updated_at": "2017-11-18T14:26:14.062Z"
},
{
"id": 341,
"question": "What is the percentage of my involvement in your daily tasks? Would you prefer more or less?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.065Z",
"updated_at": "2017-11-18T14:26:14.065Z"
},
{
"id": 343,
"question": "What is something I could have done better? What are the situations that I could have helped more but didn\u2019t?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.082Z",
"updated_at": "2017-11-18T14:26:14.082Z"
},
{
"id": 344,
"question": "What can I do to help you?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.084Z",
"updated_at": "2017-11-18T14:26:14.084Z"
},
{
"id": 345,
"question": "What is the one thing that you need the most from me?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.087Z",
"updated_at": "2017-11-18T14:26:14.087Z"
},
{
"id": 346,
"question": "As your manager, what would you like me to stop, start, or continue doing?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.090Z",
"updated_at": "2017-11-18T14:26:14.090Z"
},
{
"id": 347,
"question": "What can I do to help remove obstacles?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.102Z",
"updated_at": "2017-11-18T14:26:14.102Z"
},
{
"id": 348,
"question": "Do you have any feedback for me?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.105Z",
"updated_at": "2017-11-18T14:26:14.105Z"
},
{
"id": 350,
"question": "What can I do to make your job easier?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.121Z",
"updated_at": "2017-11-18T14:26:14.121Z"
},
{
"id": 352,
"question": "What can I do for you that I'm not?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.128Z",
"updated_at": "2017-11-18T14:26:14.128Z"
},
{
"id": 355,
"question": "What can I do better or differently as your manager to support you?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.146Z",
"updated_at": "2017-11-18T14:26:14.146Z"
},
{
"id": 356,
"question": "How could I do a better job communicating with you?",
"category": "About Manager",
"created_at": "2017-11-18T14:26:14.149Z",
"updated_at": "2017-11-18T14:26:14.149Z"
},
{
"id": 357,
"question": "What do you want to be doing in 5 years? 10 years? 3 years?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.152Z",
"updated_at": "2017-11-18T14:26:14.152Z"
},
{
"id": 358,
"question": "What are your long term goals? Have you thought about them?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.155Z",
"updated_at": "2017-11-18T14:26:14.155Z"
},
{
"id": 359,
"question": "What are your super powers? What powers would you like to develop?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.166Z",
"updated_at": "2017-11-18T14:26:14.166Z"
},
{
"id": 360,
"question": "What do you want to do in your next job?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.171Z",
"updated_at": "2017-11-18T14:26:14.171Z"
},
{
"id": 361,
"question": "What skills would you like to develop right now?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.175Z",
"updated_at": "2017-11-18T14:26:14.175Z"
},
{
"id": 362,
"question": "What additional training or education would you like?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.186Z",
"updated_at": "2017-11-18T14:26:14.186Z"
},
{
"id": 363,
"question": "Do you feel like you\u2019re making progress on your big goals here? Why or why not?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.189Z",
"updated_at": "2017-11-18T14:26:14.189Z"
},
{
"id": 364,
"question": "What\u2019s one thing we could do today to help you with your long term goals?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.192Z",
"updated_at": "2017-11-18T14:26:14.192Z"
},
{
"id": 365,
"question": "Do you feel we\u2019re helping you advance your career at a pace you would like?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.203Z",
"updated_at": "2017-11-18T14:26:14.203Z"
},
{
"id": 366,
"question": "What are your big dreams in life? Are you making progress on them?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.205Z",
"updated_at": "2017-11-18T14:26:14.205Z"
},
{
"id": 367,
"question": "Could you see yourself making progress on more of your goals here? What would need to change to do so?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.208Z",
"updated_at": "2017-11-18T14:26:14.208Z"
},
{
"id": 369,
"question": "Are there any events or training you\u2019d like to attend to help you grow your skills?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.222Z",
"updated_at": "2017-11-18T14:26:14.222Z"
},
{
"id": 370,
"question": "Who in the company would you like to learn from? What do you want to learn?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.225Z",
"updated_at": "2017-11-18T14:26:14.225Z"
},
{
"id": 371,
"question": "What can you do to take action or make progress on what we talked about today?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.237Z",
"updated_at": "2017-11-18T14:26:14.237Z"
},
{
"id": 372,
"question": "What can I do to take action or make progress on what we talked about today?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.239Z",
"updated_at": "2017-11-18T14:26:14.239Z"
},
{
"id": 373,
"question": "Where do you see your career in the next (2\/5\/10) years?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.242Z",
"updated_at": "2017-11-18T14:26:14.242Z"
},
{
"id": 374,
"question": "What work are you doing here that you feel is most in line with your long term goals?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.253Z",
"updated_at": "2017-11-18T14:26:14.253Z"
},
{
"id": 375,
"question": "What skills are required to reach your goals?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.256Z",
"updated_at": "2017-11-18T14:26:14.256Z"
},
{
"id": 376,
"question": "What are some of the work projects you\u2019re most proud of, and what do you think you might want to do next?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.259Z",
"updated_at": "2017-11-18T14:26:14.259Z"
},
{
"id": 377,
"question": "What are two to three new skills you\u2019d like to learn on the job? What about those skills interests you?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.272Z",
"updated_at": "2017-11-18T14:26:14.272Z"
},
{
"id": 378,
"question": "What other roles here could you see yourself in down the line? Or what areas would you like to explore?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.275Z",
"updated_at": "2017-11-18T14:26:14.275Z"
},
{
"id": 379,
"question": "If you were to create your ideal position, how would it differ from what you are currently doing?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.278Z",
"updated_at": "2017-11-18T14:26:14.278Z"
},
{
"id": 380,
"question": "How is your current work helping or hurting your professional development?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.290Z",
"updated_at": "2017-11-18T14:26:14.290Z"
},
{
"id": 381,
"question": "Which career or development goals do you feel like you\u2019re not able to focus on right now?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.293Z",
"updated_at": "2017-11-18T14:26:14.293Z"
},
{
"id": 382,
"question": "What else can I be doing to help you grow\/advance in your career?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.296Z",
"updated_at": "2017-11-18T14:26:14.296Z"
},
{
"id": 383,
"question": "Imagine it\u2019s two years from now, and things have gone well: What has been your role in that? What does your role look like?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.307Z",
"updated_at": "2017-11-18T14:26:14.307Z"
},
{
"id": 384,
"question": "Have you given any more thought to your long-term goals since our last meeting? What are your latest thoughts?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.310Z",
"updated_at": "2017-11-18T14:26:14.310Z"
},
{
"id": 385,
"question": "Where do you see yourself in three years? Five years?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.313Z",
"updated_at": "2017-11-18T14:26:14.313Z"
},
{
"id": 386,
"question": "What professional goals would you like to accomplish in the next 6 to 12 months, and what makes you say that?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.326Z",
"updated_at": "2017-11-18T14:26:14.326Z"
},
{
"id": 387,
"question": "To help identify and clarify the goal: What do you want to achieve? What will you do to achieve it? When will you do it? Who do you need to involve? When should you see results?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.328Z",
"updated_at": "2017-11-18T14:26:14.328Z"
},
{
"id": 388,
"question": "What about this goal is important to you and what will be different when you achieve the goal?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.331Z",
"updated_at": "2017-11-18T14:26:14.331Z"
},
{
"id": 389,
"question": "What sort of progress have you made on the next steps we discussed last time?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.343Z",
"updated_at": "2017-11-18T14:26:14.343Z"
},
{
"id": 390,
"question": "What development areas do you want to work on in the coming weeks?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.345Z",
"updated_at": "2017-11-18T14:26:14.345Z"
},
{
"id": 391,
"question": "What actions will you take before our next 1-on-1 to make progress on X? (Also discuss and agree on actions you will take to help.)",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.348Z",
"updated_at": "2017-11-18T14:26:14.348Z"
},
{
"id": 392,
"question": "During this meeting you\u2019ve mentioned that you\u2019d like to pursue X. What steps can you take toward that before our next 1-on-1?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.359Z",
"updated_at": "2017-11-18T14:26:14.359Z"
},
{
"id": 393,
"question": "Have you ever felt undervalued here?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.361Z",
"updated_at": "2017-11-18T14:26:14.361Z"
},
{
"id": 394,
"question": "What are the projects you would be interested in working on next?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.365Z",
"updated_at": "2017-11-18T14:26:14.365Z"
},
{
"id": 396,
"question": "How do you think about your progress on your big goals? What needs to be done to move towards the goals? What can we do to help?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.379Z",
"updated_at": "2017-11-18T14:26:14.379Z"
},
{
"id": 397,
"question": "Which part of the work here do you feel as most relevant to your long-term goals? What kinds of projects do you want to take part in to move toward your goals?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.392Z",
"updated_at": "2017-11-18T14:26:14.392Z"
},
{
"id": 398,
"question": "Do you feel like you are learning at work? What are the new things you learned lately? What are the areas you want to learn about?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.394Z",
"updated_at": "2017-11-18T14:26:14.394Z"
},
{
"id": 399,
"question": "Do you have the tools you need to reach your goals?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.397Z",
"updated_at": "2017-11-18T14:26:14.397Z"
},
{
"id": 400,
"question": "How do you think you did on your performance review this year? What do you think the results will be?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.408Z",
"updated_at": "2017-11-18T14:26:14.408Z"
},
{
"id": 401,
"question": "Where do you see your career in 1 year, 3 years? What can you do to make sure you reach those goals? How can we as HR help you to reach those goals (assuming the goals relate to the company)?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.411Z",
"updated_at": "2017-11-18T14:26:14.411Z"
},
{
"id": 402,
"question": "Is there a different way we can develop your skills outside of traditional training?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.413Z",
"updated_at": "2017-11-18T14:26:14.413Z"
},
{
"id": 403,
"question": "What would make this your perfect job?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.422Z",
"updated_at": "2017-11-18T14:26:14.422Z"
},
{
"id": 404,
"question": "Are there any projects you\u2019d really like to work on if you were given the opportunity?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.425Z",
"updated_at": "2017-11-18T14:26:14.425Z"
},
{
"id": 405,
"question": "What parts of your job would you like to deepen your skills in or get additional training in?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.436Z",
"updated_at": "2017-11-18T14:26:14.436Z"
},
{
"id": 406,
"question": "Is there an aspect of your job you would like more help or coaching?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.439Z",
"updated_at": "2017-11-18T14:26:14.439Z"
},
{
"id": 407,
"question": "What areas of your job do you find difficult that getting better skills at would help?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.451Z",
"updated_at": "2017-11-18T14:26:14.451Z"
},
{
"id": 408,
"question": "What skills do you have that you think are underutilized?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.453Z",
"updated_at": "2017-11-18T14:26:14.453Z"
},
{
"id": 409,
"question": "What capabilities do you want to develop?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.456Z",
"updated_at": "2017-11-18T14:26:14.456Z"
},
{
"id": 410,
"question": "Tell me about something new you learned since we met last.",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.459Z",
"updated_at": "2017-11-18T14:26:14.459Z"
},
{
"id": 411,
"question": "What opportunities have you had recently to learn something new?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.473Z",
"updated_at": "2017-11-18T14:26:14.473Z"
},
{
"id": 412,
"question": "What would you like to learn about in the future?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.476Z",
"updated_at": "2017-11-18T14:26:14.476Z"
},
{
"id": 413,
"question": "What kind of training or experience would be most helpful to you right now?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.479Z",
"updated_at": "2017-11-18T14:26:14.479Z"
},
{
"id": 414,
"question": "What do you see as the next step in your career?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.491Z",
"updated_at": "2017-11-18T14:26:14.491Z"
},
{
"id": 415,
"question": "What goals have you set for your career?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.494Z",
"updated_at": "2017-11-18T14:26:14.494Z"
},
{
"id": 416,
"question": "How do you feel you are progressing in your career?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.497Z",
"updated_at": "2017-11-18T14:26:14.497Z"
},
{
"id": 417,
"question": "What big questions do you have about your career opportunities in the future?",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.499Z",
"updated_at": "2017-11-18T14:26:14.499Z"
},
{
"id": 418,
"question": "What are your goals (for our group for you personally)",
"category": "Career development",
"created_at": "2017-11-18T14:26:14.510Z",
"updated_at": "2017-11-18T14:26:14.510Z"
},
{
"id": 419,
"question": "Tell me a story...",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.513Z",
"updated_at": "2017-11-18T14:26:14.513Z"
},
{
"id": 420,
"question": "How are you? How is life outside of work?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.516Z",
"updated_at": "2017-11-18T14:26:14.516Z"
},
{
"id": 421,
"question": "If around a holiday: Do you celebrate [Holiday]? If so, can I ask what are you plans?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.529Z",
"updated_at": "2017-11-18T14:26:14.529Z"
},
{
"id": 422,
"question": "How are your parents\/grandparents? Where do they live? Do you visit them?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.531Z",
"updated_at": "2017-11-18T14:26:14.531Z"
},
{
"id": 423,
"question": "If they have children: How is [name of child] doing? (Ask something related to their age like starting school, playing sports, or other interests.)",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.533Z",
"updated_at": "2017-11-18T14:26:14.533Z"
},
{
"id": 424,
"question": "What do you like to do in your free time? What are your hobbies?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.545Z",
"updated_at": "2017-11-18T14:26:14.545Z"
},
{
"id": 425,
"question": "Who do you really admire? Why? (People often admire those they want to become)",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.547Z",
"updated_at": "2017-11-18T14:26:14.547Z"
},
{
"id": 426,
"question": "Tell me about what you\u2019ve been working on.",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.550Z",
"updated_at": "2017-11-18T14:26:14.550Z"
},
{
"id": 427,
"question": "Tell me about your week \u2013 what\u2019s it been like?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.561Z",
"updated_at": "2017-11-18T14:26:14.561Z"
},
{
"id": 428,
"question": "Tell me about your family\/weekend\/ activities?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.564Z",
"updated_at": "2017-11-18T14:26:14.564Z"
},
{
"id": 429,
"question": "Tell me about anything you stumbled over.",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.566Z",
"updated_at": "2017-11-18T14:26:14.566Z"
},
{
"id": 430,
"question": "Would you update me on Project X?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.579Z",
"updated_at": "2017-11-18T14:26:14.579Z"
},
{
"id": 431,
"question": "Are you on track to meet the deadline?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.581Z",
"updated_at": "2017-11-18T14:26:14.581Z"
},
{
"id": 432,
"question": "How is your family?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.584Z",
"updated_at": "2017-11-18T14:26:14.584Z"
},
{
"id": 433,
"question": "How was your weekend?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.586Z",
"updated_at": "2017-11-18T14:26:14.586Z"
},
{
"id": 435,
"question": "How\u2019s it going?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.601Z",
"updated_at": "2017-11-18T14:26:14.601Z"
},
{
"id": 436,
"question": "So, what\u2019s on your mind? (or Anything on your mind?)",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.604Z",
"updated_at": "2017-11-18T14:26:14.604Z"
},
{
"id": 437,
"question": "What would you like to start with?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.618Z",
"updated_at": "2017-11-18T14:26:14.618Z"
},
{
"id": 438,
"question": "Hey, what\u2019s going on?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.621Z",
"updated_at": "2017-11-18T14:26:14.621Z"
},
{
"id": 439,
"question": "Would you like to walk today, or go somewhere else outside the office?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.624Z",
"updated_at": "2017-11-18T14:26:14.624Z"
},
{
"id": 440,
"question": "I\u2019ve noticed you\u2019re a little quieter than usual. Is there anything you\u2019d like to talk about?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.626Z",
"updated_at": "2017-11-18T14:26:14.626Z"
},
{
"id": 441,
"question": "What can I do to make your day better?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.637Z",
"updated_at": "2017-11-18T14:26:14.637Z"
},
{
"id": 442,
"question": "What's something I don't know, but should?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.640Z",
"updated_at": "2017-11-18T14:26:14.640Z"
},
{
"id": 443,
"question": "Tell me about last week.",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.643Z",
"updated_at": "2017-11-18T14:26:14.643Z"
},
{
"id": 444,
"question": "What would you like to focus on at this meeting?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.654Z",
"updated_at": "2017-11-18T14:26:14.654Z"
},
{
"id": 445,
"question": "What have you been doing for fun lately?",
"category": "Conversation starters",
"created_at": "2017-11-18T14:26:14.657Z",
"updated_at": "2017-11-18T14:26:14.657Z"
},
{
"id": 447,
"question": "How do you feel your work\/life balance is right now?",
"category": "Job satisfaction",
"created_at": "2017-11-18T14:26:14.661Z",
"updated_at": "2017-11-18T14:26:14.661Z"
},
{
"id": 448,
"question": "What drives you? What motivates you to come to work each day?",
"category": "Job satisfaction",
"created_at": "2017-11-18T14:26:14.674Z",
"updated_at": "2017-11-18T14:26:14.674Z"
},
{
"id": 449,
"question": "Do you feel challenged at work? Are you learning new things?",
"category": "Job satisfaction",
"created_at": "2017-11-18T14:26:14.677Z",
"updated_at": "2017-11-18T14:26:14.677Z"
},
{
"id": 450,
"question": "What\u2019s a recent situation you wish you handled differently? What would you change?",
"category": "Job satisfaction",
"created_at": "2017-11-18T14:26:14.679Z",
"updated_at": "2017-11-18T14:26:14.679Z"
},
{
"id": 451,
"question": "What\u2019s an area of your work you want to improve?",
"category": "Job satisfaction",
"created_at": "2017-11-18T14:26:14.691Z",
"updated_at": "2017-11-18T14:26:14.691Z"
},
{
"id": 452,
"question": "How many hours a day do you feel you\u2019re productive? How could we help you be more productive?",
"category": "Job satisfaction",
"created_at": "2017-11-18T14:26:14.694Z",
"updated_at": "2017-11-18T14:26:14.694Z"
},
{
"id": 453,
"question": "What could I do to make you enjoy your work more?",
"category": "Job satisfaction",
"created_at": "2017-11-18T14:26:14.696Z",
"updated_at": "2017-11-18T14:26:14.696Z"
},
{
"id": 454,
"question": "Do you think our company is loyal to its employees? Why or why not?",
"category": "Job satisfaction",
"created_at": "2017-11-18T14:26:14.707Z",
"updated_at": "2017-11-18T14:26:14.707Z"
},
{
"id": 455,
"question": "What would convince you to leave for a job somewhere else?",
"category": "Job satisfaction",
"created_at": "2017-11-18T14:26:14.710Z",
"updated_at": "2017-11-18T14:26:14.710Z"
},
{
"id": 456,
"question": "Do you feel over-worked, under-worked, or just the right workload?",
"category": "Job satisfaction",
"created_at": "2017-11-18T14:26:14.712Z",
"updated_at": "2017-11-18T14:26:14.712Z"
},
{
"id": 457,
"question": "What do you like most about working on our team?",
"category": "Job satisfaction",
"created_at": "2017-11-18T14:26:14.725Z",
"updated_at": "2017-11-18T14:26:14.725Z"
},
{
"id": 458,
"question": "What do you feel is your greatest accomplishment here?",
"category": "Job satisfaction",
"created_at": "2017-11-18T14:26:14.727Z",