Web Application Session 1

Web Application Session 1

University

5 Qs

quiz-placeholder

Similar activities

JMeter-VN

JMeter-VN

University - Professional Development

7 Qs

Servlets & JSP

Servlets & JSP

University

10 Qs

Tehnologii Web

Tehnologii Web

University

10 Qs

TIU Quiz-14

TIU Quiz-14

University

10 Qs

Flutter Intermediate

Flutter Intermediate

KG - Professional Development

10 Qs

Functions and Modules

Functions and Modules

University

10 Qs

MT-Chapter 8 &11 (set 2)

MT-Chapter 8 &11 (set 2)

University

10 Qs

LO1 SR

LO1 SR

University

10 Qs

Web Application Session 1

Web Application Session 1

Assessment

Quiz

Computers

University

Medium

Created by

Backend CAMP

Used 12+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Apa kepanjangan dari API?
Allocation Personal Interface
Application Programming Interface
Application Programming Internal
Application Personal Interface

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Apa yang dilakukan client saat menggunakan API?
Memberikan Response
Mengirim Request
Membuat Middleware
Melakukan Connect database

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Apa yang dilakukan server saat menggunakan API?
Memberikan Response
Mengirim Request
Membuat Middleware
Melakukan Connect database

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Saat membuat client di Golang, bagaimana cara kita melakukan request dengan method GET?
`http.DoRequest("GET", "url")`
`http.("GET", "url")`
`http.Get("url")`
`http.DoRequest.Get("url")`

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Saat membuat server di Golang, bagaimana cara membuat response dengen endpoint "hello" dan response string "hello client!"
http.HandleFunc(func("/hello", w http.ResponseWriter, r *http.Request){ w.Write([]byte("hello client!") })
http.HandleFunc("/hello", func(w http.ResponseWriter, r *http.Request){ fmt.Fprintln(w, "hello client!") })
http.HandleFunc("/hello", func(w http.ResponseWriter, r *http.Request){ w.Write([]byte("hello server!") })
http.HandleFunc(func("/server", w http.ResponseWriter, r *http.Request){ fmt.Fprintln(w, "hello client!") })