2129 lines
98 KiB
PHP
2129 lines
98 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use App\Models\Questionnaire;
|
|
use App\Models\Category;
|
|
|
|
class QuestionnairesSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
Category::create([
|
|
'code' => '123',
|
|
'name' => 'Mahasiswa',
|
|
'creator_id' => '1'
|
|
]);
|
|
foreach ($this->prepareData() as $q) {
|
|
$questionnaire = Questionnaire::create([
|
|
'title' => $q['title'],
|
|
'creator_id' => $q['creator_id'],
|
|
'reviewer_id' => $q['reviewer_id'],
|
|
'category_id' => $q['category_id'],
|
|
]);
|
|
foreach ($q['sections'] as $s) {
|
|
$section = $questionnaire->sections()->create([
|
|
'title' => $s['title'],
|
|
'creator_id' => $s['creator_id']
|
|
]);
|
|
foreach ($s['questions'] as $qn) {
|
|
$question = $section->questions()->create([
|
|
'number' => $qn['number'],
|
|
'text' => $qn['text'],
|
|
'question_type' => $qn['question_type'],
|
|
'creator_id' => $qn['creator_id']
|
|
]);
|
|
if (!empty($qn['choices'])) {
|
|
foreach ($qn['choices'] as $c) {
|
|
$choice = $question->choices()->create($c);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public function prepareData()
|
|
{
|
|
return [[
|
|
'title' => 'Kuesioner Tracer Study STIE BISMA dan AKSEMA Lepisi',
|
|
'creator_id' => '1',
|
|
'reviewer_id' => '1',
|
|
'category_id' => '1',
|
|
'sections' => [
|
|
[
|
|
'title' => 'Data Pribadi',
|
|
'creator_id' => '1',
|
|
'questions' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Nama Lengkap',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Jenis Kelamin',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Laki-laki'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Perempuan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Asal SMU',
|
|
'description' => 'Alamat lengkap SMU',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tempat Tanggal Lahir',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '5',
|
|
'text' => 'Alamat Kantor',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '6',
|
|
'text' => 'No. Telp. Kantor',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '7',
|
|
'text' => 'Kode Pos Kantor',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '8',
|
|
'text' => 'Alamat Rumah',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '9',
|
|
'text' => 'No. Telp. Rumah',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '10',
|
|
'text' => 'Kode Pos Rumah',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '11',
|
|
'text' => 'No. HP (mobile phone)',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '12',
|
|
'text' => 'Alamat email',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'title' => 'Riwayat Pendidikan',
|
|
'creator_id' => '1',
|
|
'questions' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Tahun Masuk',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Bulan dan Tahun Wisuda',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Perguruan Tinggi',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'STIE BISMA Lepisi'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Aksema Lepisi'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Program Studi',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Manajemen'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Akuntansi'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Manajemen Administrasi Akuntansi'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Sekretari'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '5',
|
|
'text' => 'Pada saat masuk Perguruan Tinggi Lepisi, Prodi yang Saudara pilih tersebut merupakan pilihan ke',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Satu'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dua'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Tiga'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '6',
|
|
'text' => 'Apakah saudara berorganisasi ketika masih mahasiswa',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Ya'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Tidak'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '7',
|
|
'text' => 'Jika pertanyaan sebelumnya menjawab tidak, mengapa',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sibuk'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Tidak berminat'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Tidak sempat'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak cocok dengan organisasi yang ada'
|
|
],
|
|
[
|
|
'number' => '5',
|
|
'text' => 'Lainnya, sebutkan',
|
|
'fillable' => true
|
|
],
|
|
]
|
|
],
|
|
[
|
|
'number' => '8',
|
|
'text' => 'Setelah lulus Sarjana dari PT Lepisi, apakah Saudara bersekolah lagi',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Ya'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Tidak',
|
|
'description' => 'langsung ke pertanyaan 20'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '9',
|
|
'text' => 'Nama universitas 1',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '10',
|
|
'text' => 'Kota/negara universitas 1',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '11',
|
|
'text' => 'Fakultas/jurusan/prodi universitas 1',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '12',
|
|
'text' => 'Jenjang pendidikan universitas 1',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '13',
|
|
'text' => 'Tahun masuk/lulus universitas 1',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '14',
|
|
'text' => 'Nama universitas 2',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '15',
|
|
'text' => 'Kota/negara universitas 2',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '16',
|
|
'text' => 'Fakultas/jurusan/prodi universitas 2',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '17',
|
|
'text' => 'Jenjang pendidikan universitas 2',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '18',
|
|
'text' => 'Tahun masuk/lulus universitas 2',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '19',
|
|
'text' => 'Apa alasan utama Saudara bersekolah lagi',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Mengisi kekosongan menganggur'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Perlu untuk bekerja'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Merasa ilmu yang dimiliki masih kurang'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Ada kesempatan'
|
|
],
|
|
[
|
|
'number' => '5',
|
|
'text' => 'Sebagai syarat dalam pekerjaan'
|
|
],
|
|
[
|
|
'number' => '6',
|
|
'text' => 'Kurang yakin bila hanya di bidang ini saja'
|
|
],
|
|
[
|
|
'number' => '7',
|
|
'text' => 'Lainnya, sebutkan',
|
|
'fillable' => true
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '20',
|
|
'text' => 'Pada saat baru lulus, sebenarnya di mana Saudara ingin bekerja',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Pemerintah (pusat/departemen)'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Pemerintah (daerah)'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Pemerintah (BUMN, BHMN)'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Swasta (jasa)'
|
|
],
|
|
[
|
|
'number' => '5',
|
|
'text' => 'Swasta (manufaktur)'
|
|
],
|
|
[
|
|
'number' => '6',
|
|
'text' => 'Wiraswasta'
|
|
],
|
|
[
|
|
'number' => '7',
|
|
'text' => 'Lainnya, sebutkan',
|
|
'fillable' => true
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '21',
|
|
'text' => 'Pada saat baru lulus, apakah Saudara bersedia bekerja/ditempatkan di daerah',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Ya'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Tidak'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '22',
|
|
'text' => 'Pada saat baru lulus, apakah Saudara mengetahui cara/prosedur melamar pekerjaan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Ya'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Tidak'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '23',
|
|
'text' => 'Menurut saudara, kapan seharusnya cara/prosedur melamar pekerjaan harus mulai diketahui',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sejak tahun pertama perkuliahan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Di tahun kedua perkuliahan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Di tahun ketiga perkuliahan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Di tahun akhir perkuliahan'
|
|
],
|
|
[
|
|
'number' => '5',
|
|
'text' => 'Setelah lulus'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '24',
|
|
'text' => 'Pada saat baru lulus, apakah Saudara mengetahui cara membuat CV untuk melamar pekerjaan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Ya'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Tidak'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '25',
|
|
'text' => 'Menurut saudara, kapan seharusnya cara membuat CV harus mulai diketahui',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sejak tahun pertama perkuliahan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Di tahun kedua perkuliahan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Di tahun ketiga perkuliahan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Di tahun akhir perkuliahan'
|
|
],
|
|
[
|
|
'number' => '5',
|
|
'text' => 'Setelah lulus'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '26',
|
|
'text' => 'Berapa IPK terakhir Saudara',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => '<2,00'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => '2,10 - 2,90'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => '3,00 - 3,49'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => '3,50 - 4,00'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '27',
|
|
'text' => 'Setelah lulus, apakah Saudara sudah/pernah bekerja',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Ya'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Tidak, alasan',
|
|
'description' => 'Langsung ke seksi 5',
|
|
'fillable' => true
|
|
]
|
|
]
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'title' => 'Riwayat Pekerjaan',
|
|
'creator_id' => '1',
|
|
'questions' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Nama tempat bekerja',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Jenis instansi/bidang usaha/industri',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Pemerintah (pusat/departemen)'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Pemerintah (daerah)'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Pemerintah (BUMN, BHMN)'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Swasta (jasa)'
|
|
],
|
|
[
|
|
'number' => '5',
|
|
'text' => 'Swasta (manufaktur)'
|
|
],
|
|
[
|
|
'number' => '6',
|
|
'text' => 'Wiraswasta'
|
|
],
|
|
[
|
|
'number' => '7',
|
|
'text' => 'Lainnya, sebutkan',
|
|
'fillable' => true
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Jabatan/posisi dalam pekerjaan',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Bulan dan tahun mulai bekerja',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '5',
|
|
'text' => 'Bulan dan tahun berhenti bekerja',
|
|
'description' => 'Jika Saudara masih bekerja, tidak perlu diisi',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1',
|
|
],
|
|
[
|
|
'number' => '6',
|
|
'text' => 'Bagaimana proses Saudara mendapatkan pekerjaan ini',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'aktif (mencari sendiri)'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'pasif (ditawari pekerjaan)'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '7',
|
|
'text' => 'Dari mana Saudara mengetahui atau mendapatkan informasi mengenai adanya pekerjaan ini',
|
|
'question_type' => 'multichoice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Iklan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Internet'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Pengumuman di kampus'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Koneksi (teman, dosen, saudara/keluarga, dll)'
|
|
],
|
|
[
|
|
'number' => '5',
|
|
'text' => 'Info lowongan kemahasiswaan (PKMA)'
|
|
],
|
|
[
|
|
'number' => '6',
|
|
'text' => 'Lainnya, sebutkan',
|
|
'fillable' => true
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '8',
|
|
'text' => 'Sejauh mana pekerjaan Saudara yang terakhir/sekarang sesuai dengan harapan ketika pertama kali belajar di PT Lepisi',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat sesuai harapan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Sesuai harapan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang sesuai harapan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak sesuai harapan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '9',
|
|
'text' => 'Apakah Saudara puas dengan pekerjaan Saudara yang terakhir/sekarang',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat puas'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Puas'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang puas'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak puas'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '10',
|
|
'text' => 'Secara umum, apa pertimbangan utama Saudara dalam memilih pekerjaan yang terakhir/sekarang',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Gaji memadai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Sesuai bidang keilmuan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Mendapatkan pengalaman'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Mendapatkan ilmu pengetahuan'
|
|
],
|
|
[
|
|
'number' => '5',
|
|
'text' => 'Mendapatkan ketrampilan'
|
|
],
|
|
[
|
|
'number' => '6',
|
|
'text' => 'Lainnya, sebutkan',
|
|
'fillable' => true
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '11',
|
|
'text' => 'Berapa rata-rata pendapatan (take home pay = seluruh pendapatan per bulan termasuk bonus, insentif, dsb.) Saudara pada pekerjaan terakhir/sekarang',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => '< Rp. 1.000.000'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => '> Rp. 1.000.000 - Rp. 3.000.000'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => '> Rp. 3.000.000 - Rp. 5.000.000 '
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => '> Rp. 5.000.000 - Rp. 7.500.000'
|
|
],
|
|
[
|
|
'number' => '5',
|
|
'text' => '> Rp. 7.500.000 - Rp. 10.000.000'
|
|
],
|
|
[
|
|
'number' => '6',
|
|
'text' => '> Rp. 10.000.000 - Rp. 12.500.000'
|
|
],
|
|
[
|
|
'number' => '7',
|
|
'text' => '> Rp. 12.500.000- Rp. 15.000.000'
|
|
],
|
|
[
|
|
'number' => '8',
|
|
'text' => '> Rp. 15.000.000'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '12',
|
|
'text' => 'Apakah pekerjaan Saudara ini berhubungan dengan bidang ilmu yang Saudara pelajari',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Ya'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Tidak'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '13',
|
|
'text' => 'Menurut Saudara, bagaimana kebutuhan institusi tempat Saudara bekerja terhadap lulusan dari program studi/jurusan Saudara',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat tinggi'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Tinggi'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Rendah '
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Sangat rendah'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '14',
|
|
'text' => 'Sebelumnya, apakah Saudara pernah bekerja di tempat lain',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Ya'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Tidak',
|
|
'description' => 'Langsung ke seksi 4'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '15',
|
|
'text' => 'Sudah berapa kali Saudara berganti pekerjaan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => '1 kali'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => '2 kali'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => '3 kali'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Lebih dari 3 kali, sebutkan',
|
|
'fillable' => true
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '16',
|
|
'text' => 'Apakah Saudara masih ingin berpindah kerja',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Ya',
|
|
'fillable' => true
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Tidak'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '17',
|
|
'text' => 'Nama tempat bekerja pertama kali',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '18',
|
|
'text' => 'Jabatan/posisi terakhir dalam pekerjaan pertama',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '19',
|
|
'text' => 'Bulan dan tahun mulai bekerja (pertama)',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '20',
|
|
'text' => 'Bulan dan tahun berhenti bekerja (pertama)',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
],
|
|
[
|
|
'number' => '21',
|
|
'text' => 'Bagaimana proses Saudara mendapatkan pekerjaan pertama ini',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Aktif (mencari sendiri)'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Pasif (ditawari pekerjaan)'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '22',
|
|
'text' => 'Dari mana Saudara mengetahui atau mendapatkan informasi mengenai adanya pekerjaan pertama ini',
|
|
'question_type' => 'multichoice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Iklan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Internet'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Pengumuman di kampus'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Koneksi (teman, dosen, Saudara/keluarga, dll)'
|
|
],
|
|
[
|
|
'number' => '5',
|
|
'text' => 'PKMA (Pengembangan Karir Mahasiswa dan Alumni) PT LEPISI'
|
|
],
|
|
[
|
|
'number' => '6',
|
|
'text' => 'Lainnya, sebutkan',
|
|
'fillable' => true
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '23',
|
|
'text' => 'Sejauh mana pekerjaan pertama Saudara sesuai dengan harapan ketika pertama kali belajar di PT LEPISI',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat sesuai dengan harapan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Sesuai harapan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang sesuai harapan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak sesuai harapan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '24',
|
|
'text' => 'Apakah Saudara puas dengan pekerjaan pertama Saudara',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Ya'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Tidak'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '25',
|
|
'text' => 'Secara umum, apa pertimbangan utama Saudara dalam memilih pekerjaan pertama',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Gaji memadai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Sesuai bidang keilmuan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Mendapatkan pengalaman'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Mendapatkan ilmu pengetahuan'
|
|
],
|
|
[
|
|
'number' => '5',
|
|
'text' => 'Mendapatkan keterampilan'
|
|
],
|
|
[
|
|
'number' => '6',
|
|
'text' => 'Lainnya, sebutkan',
|
|
'fillable' => true
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '26',
|
|
'text' => 'Berapa rata-rata pendapatan (take home pay = seluruh pendapatan per bulan termasuk bonus, insentif, dsb.) Saudara pada pekerjaan pertama',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => '< Rp. 1.000.000'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => '> Rp. 1.000.000 - Rp. 3.000.000'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => '> Rp. 3.000.000 - Rp. 5.000.000 '
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => '> Rp. 5.000.000 - Rp. 7.500.000'
|
|
],
|
|
[
|
|
'number' => '5',
|
|
'text' => '> Rp. 7.500.000 - Rp. 10.000.000'
|
|
],
|
|
[
|
|
'number' => '6',
|
|
'text' => '> Rp. 10.000.000 - Rp. 12.500.000'
|
|
],
|
|
[
|
|
'number' => '7',
|
|
'text' => '> Rp. 12.500.000- Rp. 15.000.000'
|
|
],
|
|
[
|
|
'number' => '8',
|
|
'text' => '> Rp. 15.000.000'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '27',
|
|
'text' => 'Apakah pekerjaan pertama Saudara berhubungan dengan bidang ilmu yang Saudara pelajari di program studi',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Ya'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Tidak, mengapa',
|
|
'fillable' => true
|
|
]
|
|
]
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'title' => 'Relevansi Pendidikan dengan Pekerjaan',
|
|
'creator_id' => '1',
|
|
'questions' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Apakah pendidikan yang Saudara dapat di program studi yang anada pilih relevan dengan pekerjaan Saudara',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Ya'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Tidak, mengapa',
|
|
'fillable' => true
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dari pengalaman Saudara bekerja, apa saran praktis Saudara untuk pendidikan di PT Lepisi dalam rangka meningkatkan kesesuaian antara pendidikan dengan lapangan pekerjaan',
|
|
'question_type' => 'text',
|
|
'creator_id' => '1'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'title' => 'Pengalaman pembelajaran dan masukan bagi pendidikan PT Lepisi',
|
|
'description' => 'Saat belajar di PT Lepisi, menurut Saudara seberapa penting pengalaman pembelajaran berikut ini memberikan kontribusi dalam dunia kerja',
|
|
'creator_id' => '1',
|
|
'questions' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Pengalaman belajar di dalam kelas',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat penting'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Penting'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang penting'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak penting'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Pengalaman belajar di laboratorium',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat penting'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Penting'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang penting'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak penting'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Pengalaman belajar di masyarakat',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat penting'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Penting'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang penting'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak penting'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Pengalaman magang di perusahaan/instansi',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat penting'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Penting'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang penting'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak penting'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '5',
|
|
'text' => 'Pengalamanbelajardalamorganisasikmhswn',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat penting'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Penting'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang penting'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak penting'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '6',
|
|
'text' => 'Pengalaman belajar dalam pergaulan kampus',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat penting'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Penting'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang penting'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak penting'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '7',
|
|
'text' => 'Pengalaman belajar mandiri',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat penting'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Penting'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang penting'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak penting'
|
|
]
|
|
]
|
|
],
|
|
]
|
|
],
|
|
[
|
|
'title' => 'Indikator Kompetisi dan Daya Saing',
|
|
'creator_id' => '1',
|
|
'questions' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Saat baru lulus, sejauh mana Saudara merasa mampu bersaing dng lulusan perguruan tinggi lain',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat mampu'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Mampu'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang mampu'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Sangat tidak mampu'
|
|
],
|
|
]
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Sejauh ini, menurut Saudara lulusan PT Lepisi yang bagaimana yg diperlukan oleh pasar/lapangan kerja',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'generik (umum)'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'spesifik'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Saat baru lulus, menurut penilaian Saudara, sejauh mana Saudara menguasai kompetensi Pengetahuan umum',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat menguasai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Menguasai'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang menguasai'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak menguasai'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Saat baru lulus, menurut penilaian Saudara, sejauh mana Saudara menguasai kompetensi Bahasa inggris',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat menguasai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Menguasai'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang menguasai'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak menguasai'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '5',
|
|
'text' => 'Saat baru lulus, menurut penilaian Saudara, sejauh mana Saudara menguasai kompetensi Komputer',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat menguasai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Menguasai'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang menguasai'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak menguasai'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '6',
|
|
'text' => 'Saat baru lulus, menurut penilaian Saudara, sejauh mana Saudara menguasai kompetensi Metodologi penelitian',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat menguasai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Menguasai'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang menguasai'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak menguasai'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '7',
|
|
'text' => 'Saat baru lulus, menurut penilaian Saudara, sejauh mana Saudara menguasai kompetensi Kerjasama tim',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat menguasai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Menguasai'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang menguasai'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak menguasai'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '8',
|
|
'text' => 'Saat baru lulus, menurut penilaian Saudara, sejauh mana Saudara menguasai kompetensi Keterampilan komunikasi lisan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat menguasai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Menguasai'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang menguasai'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak menguasai'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '9',
|
|
'text' => 'Saat baru lulus, menurut penilaian Saudara, sejauh mana Saudara menguasai kompetensi Keterampilan komunikasi tertulis',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat menguasai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Menguasai'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang menguasai'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak menguasai'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '10',
|
|
'text' => 'Saat baru lulus, menurut penilaian Saudara, sejauh mana Saudara menguasai kompetensi Proses pemberdayaan masyarakat',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat menguasai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Menguasai'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang menguasai'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak menguasai'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '11',
|
|
'text' => 'Saat baru lulus, menurut penilaian Saudara, sejauh mana Saudara menguasai kompetensi Pengetahuan teoritis spesifik',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat menguasai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Menguasai'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang menguasai'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak menguasai'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '12',
|
|
'text' => 'Saat baru lulus, menurut penilaian Saudara, sejauh mana Saudara menguasai kompetensi Pengetahuan praktis spesifik',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat menguasai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Menguasai'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang menguasai'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak menguasai'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '13',
|
|
'text' => 'Saat baru lulus, menurut penilaian Saudara, sejauh mana Saudara menguasai kompetensi Kepemimpinan/leadership',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat menguasai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Menguasai'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang menguasai'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak menguasai'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '14',
|
|
'text' => 'Saat baru lulus, menurut penilaian Saudara, sejauh mana Saudara menguasai kompetensi Manajemen',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat menguasai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Menguasai'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang menguasai'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak menguasai'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '15',
|
|
'text' => 'Saat baru lulus, menurut penilaian Saudara, sejauh mana Saudara menguasai kompetensi Akuntansi dan perpajakan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat menguasai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Menguasai'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang menguasai'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak menguasai'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '16',
|
|
'text' => 'Saat baru lulus, menurut penilaian Saudara, sejauh mana Saudara menguasai kompetensi Manajemen administrasi akuntansi',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat menguasai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Menguasai'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang menguasai'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak menguasai'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '17',
|
|
'text' => 'Saat baru lulus, menurut penilaian Saudara, sejauh mana Saudara menguasai kompetensi Kesekretarisan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat menguasai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Menguasai'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang menguasai'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak menguasai'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '18',
|
|
'text' => 'Saat baru lulus, menurut penilaian Saudara, sejauh mana Saudara menguasai kompetensi Kewirausahaan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat menguasai'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Menguasai'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang menguasai'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak menguasai'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '19',
|
|
'text' => 'Dalam pekerjaan, menurut penilaian Saudara sejauh mana kompetensi Pengetahuan umum diperlukan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak dibutuhkan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '20',
|
|
'text' => 'Dalam pekerjaan, menurut penilaian Saudara sejauh mana kompetensi Bahasa inggris diperlukan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak dibutuhkan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '21',
|
|
'text' => 'Dalam pekerjaan, menurut penilaian Saudara sejauh mana kompetensi Komputer diperlukan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak dibutuhkan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '22',
|
|
'text' => 'Dalam pekerjaan, menurut penilaian Saudara sejauh mana kompetensi Metodologi penelitian diperlukan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak dibutuhkan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '23',
|
|
'text' => 'Dalam pekerjaan, menurut penilaian Saudara sejauh mana kompetensi Kerjasama tim diperlukan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak dibutuhkan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '24',
|
|
'text' => 'Dalam pekerjaan, menurut penilaian Saudara sejauh mana kompetensi Keterampilan komunikasi lisan diperlukan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak dibutuhkan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '25',
|
|
'text' => 'Dalam pekerjaan, menurut penilaian Saudara sejauh mana kompetensi Keterampilan komunikasi tertulis diperlukan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak dibutuhkan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '26',
|
|
'text' => 'Dalam pekerjaan, menurut penilaian Saudara sejauh mana kompetensi Proses pemberdayaan masyarakat diperlukan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak dibutuhkan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '27',
|
|
'text' => 'Dalam pekerjaan, menurut penilaian Saudara sejauh mana kompetensi Pengetahuan teoritis spesifik diperlukan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak dibutuhkan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '28',
|
|
'text' => 'Dalam pekerjaan, menurut penilaian Saudara sejauh mana kompetensi Pengetahuan praktis spesifik diperlukan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak dibutuhkan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '29',
|
|
'text' => 'Dalam pekerjaan, menurut penilaian Saudara sejauh mana kompetensi Kepemimpinan/leadership diperlukan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak dibutuhkan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '30',
|
|
'text' => 'Dalam pekerjaan, menurut penilaian Saudara sejauh mana kompetensi Manajemen diperlukan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak dibutuhkan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '31',
|
|
'text' => 'Dalam pekerjaan, menurut penilaian Saudara sejauh mana kompetensi Akuntansi dan perpajakan diperlukan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak dibutuhkan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '32',
|
|
'text' => 'Dalam pekerjaan, menurut penilaian Saudara sejauh mana kompetensi Manajemen administrasi akuntansi diperlukan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak dibutuhkan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '33',
|
|
'text' => 'Dalam pekerjaan, menurut penilaian Saudara sejauh mana kompetensi Kesekretarisan diperlukan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak dibutuhkan'
|
|
]
|
|
]
|
|
],
|
|
[
|
|
'number' => '34',
|
|
'text' => 'Dalam pekerjaan, menurut penilaian Saudara sejauh mana kompetensi Kewirausahaan diperlukan',
|
|
'question_type' => 'choice',
|
|
'creator_id' => '1',
|
|
'choices' => [
|
|
[
|
|
'number' => '1',
|
|
'text' => 'Sangat dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '2',
|
|
'text' => 'Dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '3',
|
|
'text' => 'Kurang dibutuhkan'
|
|
],
|
|
[
|
|
'number' => '4',
|
|
'text' => 'Tidak dibutuhkan'
|
|
]
|
|
]
|
|
]
|
|
]
|
|
]
|
|
]
|
|
]];
|
|
}
|
|
}
|