APIs

APIs

Professional Development

6 Qs

quiz-placeholder

Similar activities

Parlez-vous l'internet ?

Parlez-vous l'internet ?

Professional Development

10 Qs

Python-Sem-II

Python-Sem-II

Professional Development

10 Qs

Puppeteer

Puppeteer

Professional Development

7 Qs

Flutter Intermediate

Flutter Intermediate

KG - Professional Development

10 Qs

FinTech 15-2 Algorithmic Trading

FinTech 15-2 Algorithmic Trading

Professional Development

9 Qs

CODE-P4

CODE-P4

Professional Development

10 Qs

PHP Tours Meetup #23 Synchroniser ses applications (encore)

PHP Tours Meetup #23 Synchroniser ses applications (encore)

University - Professional Development

9 Qs

Targeted Threat Protection

Targeted Threat Protection

Professional Development

8 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);

}