Teknologi Web Service Pertemuan 4
Question 1
Correct
Mark 1.00 out of 1.00
Flag question
Question text
Sebuah aktifitas melalui protokol HTTP dimana server memberikan jawaban terhadap permintaan (request) yang dikirim oleh client
Select one:
Feedback
Your answer is correct.
Question 2
Correct
Mark 1.00 out of 1.00
Flag question
Question text
File format teks yang saat ini biasa digunakan untuk pertukaran data, sebagai penguhubung antara client dengan API untuk mengakses REST Server
Select one:
Feedback
Your answer is correct.
Question 3
Correct
Mark 1.00 out of 1.00
Flag question
Question text
Kode status 404 ketika proses respon dari REST Server ke API untuk dilanjutkan ke Client, akan memunculkan pesan pada HTML, yaitu
Select one:
Feedback
Your answer is correct.
Question 4
Correct
Mark 1.00 out of 1.00
Flag question
Question text
Sebuah pengidentifikasi yang terdiri dari urutan karakter sesuai aturan tertentu untuk mengakses resource, dikenal dengan istilah
Select one:
Feedback
Your answer is correct.
Question 5
Correct
Mark 1.00 out of 1.00
Flag question
Question text
1. $data = array(
2. 'Id_anggota' => $this->post('Id_anggota'),
3. 'Nama Anggota' => $this->post('nama anggota'),
4. 'Almat' => $this->post('almat'),
5. 'Jenis_Kelamin' => $this->post('jenis_kelamin'));
Pada kutipan array diatas, Didalam baris berapakah terdapat error statement2. 'Id_anggota' => $this->post('Id_anggota'),
3. 'Nama Anggota' => $this->post('nama anggota'),
4. 'Almat' => $this->post('almat'),
5. 'Jenis_Kelamin' => $this->post('jenis_kelamin'));
Select one:
Feedback
Your answer is correct.
Question 6
Correct
Mark 1.00 out of 1.00
Flag question
Question text
Kode Status yang menyatakan diterima atau sukses, ketika proses respon dari REST Server ke API untuk dilanjutkan ke Client
Select one:
Feedback
Your answer is correct.
Question 7
Correct
Mark 1.00 out of 1.00
Flag question
Question text
$id = $this->delete('id_agt');
$this->db->where('id_agt', $id);
$delete = $this->db->delete('anggota');
$this->db->where('id_agt', $id);
$delete = $this->db->delete('anggota');
Pada kutipan code diatas, 'anggota' merupakan representasi dari
Select one:
Feedback
Your answer is correct.
Question 8
Correct
Mark 1.00 out of 1.00
Flag question
Question text
$data = array(
'id' => $this->post('id'),
'judul' => $this->post('judul'),
'pengarang' => $this->post('pengarang'));
$x = $this->db->........('buku', $data);
'id' => $this->post('id'),
'judul' => $this->post('judul'),
'pengarang' => $this->post('pengarang'));
$x = $this->db->........('buku', $data);
Untuk menyisipkan data baru, maka isian yang tepat untuk 'titik-titik' diatas adalah
Select one:
Feedback
Your answer is correct.
Question 9
Correct
Mark 1.00 out of 1.00
Flag question
Question text
Kode status yang menyatakan bahwa terdapat internal server error pada pengaksesan REST Server melalui HTTP, ketika proses respon dari REST Server ke API untuk dilanjutkan ke Client
Select one:
Feedback
Your answer is correct.
Question 10
Correct
Mark 1.00 out of 1.00
Flag question
Question text
Metode pada HTTP yang digunakan untuk pembacaan data dari client ke REST server
Select one:
Feedback
Your answer is correct.
Comments
Post a Comment