APIs

APIs

Professional Development

6 Qs

quiz-placeholder

Similar activities

TOWNHALL OCT.6

TOWNHALL OCT.6

Professional Development

10 Qs

PHP & MySQL - parte 2

PHP & MySQL - parte 2

9th Grade - Professional Development

10 Qs

W12D3 Quiz

W12D3 Quiz

Professional Development

3 Qs

Python-Sem-II

Python-Sem-II

Professional Development

10 Qs

Puppeteer

Puppeteer

Professional Development

7 Qs

GraphQL: DAY 1

GraphQL: DAY 1

Professional Development

10 Qs

navigateur internet

navigateur internet

KG - Professional Development

6 Qs

Kuis PowerShell v7.4.0

Kuis PowerShell v7.4.0

Professional Development

11 Qs

APIs

APIs

Assessment

Quiz

Computers

Professional Development

Easy

Created by

Gauvain Thery

Used 2+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Que signifie API ?

Application Programming Interface

Ale Pale Indian

Algorithmic Processing Interface

Artificial Programming Intelligence

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Comment se matérialise très souvent une API ?

C'est un ensemble d'URLs

C'est un robot

C'est invisible

C'est un fichier .js

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

À quoi sert Postman ?

Faire des requêtes HTTP

Générer une API

Envoyer une lettre

Faire du jetpack

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Qu'est-ce qui va s'afficher dans la console ?

const school = {

name: "rocket",

nbStudents: 37

}

const schools = [school]

console.log(schools[0].name)

Il y aura une erreur

rocket

37

{

name: "rocket",

nbStudents: 37

}

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

La fonction fetch peut prendre un ou deux paramètres : URL et options. Lequel est obligatoire ?

URL

Option

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Comment rendre cette fonction asynchrone :

function callAPI(url) {

return await fetch(url);

}

async function callAPI(url) {

return await fetch(url);

}

function callAPI(url) {

return fetch(url);

}

delayed function callAPI(url) {

return await fetch(url);

}

function callAPI(async url) {

return await fetch(url);

}