Simulador para examen Scrum Master
1. ¿Quién debe hacer el trabajo requerido para los elementos del Producto Backlog, para crear un Incremento potencialmente liberable?
- El equipo Scrum.
- El Scrum Master.
- El Equipo de Desarrollo.
- El Product Owner.
Simulador para examen Scrum Master
export const toBase64 = (file: File) => | |
new Promise((resolve, reject) => { | |
const reader = new FileReader(); | |
reader.readAsDataURL(file); | |
reader.onload = () => resolve(reader.result); | |
reader.onerror = (error) => reject(error); | |
}); |
{ | |
// Place your snippets for dart here. Each snippet is defined under a snippet name and has a prefix, body and | |
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the | |
// same ids are connected. | |
// Example: | |
// "Print to console": { | |
// "prefix": "log", | |
// "body": [ | |
// "console.log('$1');", |
/** | |
* | |
* WITHOUT NESTING | |
*/ | |
// An asynchronous function that performs a task on each item | |
/* async function performAsyncTask(item) { | |
// Simulating an asynchronous task with a delay | |
await delay(1000); | |
console.log(`Task completed for item: ${item}`); |