5. Asynchronous Programming and Websocket

5. Asynchronous Programming and Websocket

KG - 5th Grade

5 Qs

quiz-placeholder

Similar activities

Kuis Pelatihan Computational Thinking

Kuis Pelatihan Computational Thinking

Professional Development

10 Qs

Educational Technology

Educational Technology

University

10 Qs

CpE16-Activity7

CpE16-Activity7

University

10 Qs

Intro to Ai: Unit 0 L0.1 to L0.4

Intro to Ai: Unit 0 L0.1 to L0.4

7th Grade

10 Qs

Evolution of Computer Programming

Evolution of Computer Programming

10th Grade

10 Qs

AJAXploration

AJAXploration

University

10 Qs

CpE16-Quiz3

CpE16-Quiz3

University

10 Qs

Data Transmission Quiz

Data Transmission Quiz

10th - 11th Grade

10 Qs

5. Asynchronous Programming and Websocket

5. Asynchronous Programming and Websocket

Assessment

Quiz

Computers

KG - 5th Grade

Medium

Created by

M T

Used 1+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Dart is a single threaded programming language.

True

False

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is asynchronous programming?

Is a form of parallel programming which allows some work to run separately from the main application thread.

A form of parallel programming which allows to run code in the background.

A form of parallel programming which allows code execute with delay.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the benefit(s) of asynchronous programming?

Makes apps responsive.

Improves app performance.

Both

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the difference between Future and Stream?

Future has one response but a stream could have any number of responses or so called events.

We don’t need to wait for responses with streams.

We don’t need to wait for responses with futures.

They are the same.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the difference between WebSockets and HTTP?

HTTP is Unidirectional but Websockets is Bidirectional.

Websockets keeps connection alive.

Websockets is used when real-time updates or continues streams of data is being transmitted over the network.

All the options.