feat: initial commit
This commit is contained in:
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@ -10,7 +10,7 @@ pipeline {
|
||||
}
|
||||
|
||||
triggers {
|
||||
cron('0 10 * * 1-5 \n 0 16 * * 1-5')
|
||||
cron('0 9 * * 1-5 \n 0 16 * * 1-5')
|
||||
}
|
||||
|
||||
parameters {
|
||||
@ -40,7 +40,7 @@ pipeline {
|
||||
avatar: "https://kouiz.dev.lookingfora.name/assets/panda.png",
|
||||
channel: '#le-kouiz',
|
||||
message: """
|
||||
@here
|
||||
@all
|
||||
|
||||
${callToAction}
|
||||
|
||||
|
1
go.mod
1
go.mod
@ -8,6 +8,7 @@ require (
|
||||
github.com/a-h/templ v0.3.833
|
||||
github.com/bornholm/genai v0.0.0-20250522134458-696e8771bb84
|
||||
github.com/caarlos0/env/v11 v11.3.1
|
||||
github.com/davecgh/go-spew v1.1.1
|
||||
github.com/gabriel-vasile/mimetype v1.4.7
|
||||
github.com/glebarez/sqlite v1.11.0
|
||||
github.com/gorilla/sessions v1.1.1
|
||||
|
@ -11,4 +11,5 @@ type Quiz struct {
|
||||
PlayInterval time.Duration `env:"PLAY_INTERVAL" envDefault:"2h"`
|
||||
PlayPeriod timex.PeriodType `env:"PLAY_PERIOD" envDefault:"daily"`
|
||||
PlayDelay time.Duration `env:"PLAY_DELAY" envDefault:"30s"`
|
||||
OffDays []time.Weekday `env:"OFF_DAYS"`
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
package api
|
||||
|
||||
import (
|
||||
"html/template"
|
||||
"io"
|
||||
"log"
|
||||
"net/http"
|
||||
@ -12,6 +13,12 @@ import (
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
var funcs template.FuncMap = template.FuncMap{
|
||||
"difficultyLevel": func(level uint) string {
|
||||
return store.DifficultyLevel(level)
|
||||
},
|
||||
}
|
||||
|
||||
const systemPromptTemplate string = `
|
||||
Tu es "Panda", un présentateur de jeu télévisé charismatique et plein d'énergie qui anime un jeu de question/réponse en ligne. Ta personnalité est :
|
||||
|
||||
@ -45,7 +52,7 @@ Fais le bilan des scores du jeu de manière captivante et divertissante en 1 cou
|
||||
func (h *Handler) getLeaderboardPresentation(w http.ResponseWriter, r *http.Request) {
|
||||
ctx := r.Context()
|
||||
|
||||
systemPrompt, err := prompt.Template[any](systemPromptTemplate, nil)
|
||||
systemPrompt, err := prompt.Template[any](systemPromptTemplate, nil, prompt.WithFuncs(funcs))
|
||||
if err != nil {
|
||||
log.Printf("[ERROR] %+v", errors.WithStack(err))
|
||||
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
||||
@ -74,7 +81,7 @@ func (h *Handler) getLeaderboardPresentation(w http.ResponseWriter, r *http.Requ
|
||||
Players []*store.Player
|
||||
}{
|
||||
Players: players,
|
||||
})
|
||||
}, prompt.WithFuncs(funcs))
|
||||
if err != nil {
|
||||
log.Printf("[ERROR] %+v", errors.WithStack(err))
|
||||
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
||||
@ -100,7 +107,7 @@ func (h *Handler) getLeaderboardPresentation(w http.ResponseWriter, r *http.Requ
|
||||
}
|
||||
|
||||
const turnPromptTemplate string = `
|
||||
Présente le tour de jeu actuel en créant du suspense et en motivant les joueurs à participer en 1 court paragraphe.
|
||||
Présente le tour de jeu actuel en créant du suspense et en motivant les joueurs à participer en 1 très court paragraphe.
|
||||
|
||||
## Tour #{{ .Turn.ID }}
|
||||
|
||||
@ -109,7 +116,7 @@ Présente le tour de jeu actuel en créant du suspense et en motivant les joueur
|
||||
{{ range .Turn.Entries }}
|
||||
#### {{ .Category.Theme }}
|
||||
|
||||
- **Difficulté:** {{ .Level }}
|
||||
- **Difficulté:** {{ difficultyLevel .Level }}
|
||||
- **Catégorie:** {{ .Category.Name }}
|
||||
- **Description de la catégorie:** {{ .Category.Description }}
|
||||
{{ end }}
|
||||
@ -118,7 +125,7 @@ Présente le tour de jeu actuel en créant du suspense et en motivant les joueur
|
||||
func (h *Handler) getTurnPresentation(w http.ResponseWriter, r *http.Request) {
|
||||
ctx := r.Context()
|
||||
|
||||
systemPrompt, err := prompt.Template[any](systemPromptTemplate, nil)
|
||||
systemPrompt, err := prompt.Template[any](systemPromptTemplate, nil, prompt.WithFuncs(funcs))
|
||||
if err != nil {
|
||||
log.Printf("[ERROR] %+v", errors.WithStack(err))
|
||||
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
||||
@ -136,7 +143,7 @@ func (h *Handler) getTurnPresentation(w http.ResponseWriter, r *http.Request) {
|
||||
Turn *store.QuizTurn
|
||||
}{
|
||||
Turn: currentTurn,
|
||||
})
|
||||
}, prompt.WithFuncs(funcs))
|
||||
if err != nil {
|
||||
log.Printf("[ERROR] %+v", errors.WithStack(err))
|
||||
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
||||
|
@ -40,6 +40,7 @@ templ AppPage(funcs ...AppPageOptionFunc) {
|
||||
</div>
|
||||
<div class="level-right">
|
||||
<div class="buttons is-right level-item">
|
||||
<a class="button is-medium" href={ BaseURL(ctx, WithPath("/quiz/history")) }><span class="icon"><i class="fa fa-history"></i></span></a>
|
||||
<a class="button is-medium" href={ BaseURL(ctx, WithPath("/quiz/leaderboard")) }><span class="icon"><i class="fa fa-trophy"></i></span></a>
|
||||
<a class="button is-medium" href={ BaseURL(ctx, WithPath("/auth/logout")) }><span class="icon"><i class="fa fa-sign-out-alt"></i></span></a>
|
||||
</div>
|
||||
|
@ -90,21 +90,30 @@ func AppPage(funcs ...AppPageOptionFunc) templ.Component {
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var5 templ.SafeURL = BaseURL(ctx, WithPath("/quiz/leaderboard"))
|
||||
var templ_7745c5c3_Var5 templ.SafeURL = BaseURL(ctx, WithPath("/quiz/history"))
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(string(templ_7745c5c3_Var5)))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 4, "\"><span class=\"icon\"><i class=\"fa fa-trophy\"></i></span></a> <a class=\"button is-medium\" href=\"")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 4, "\"><span class=\"icon\"><i class=\"fa fa-history\"></i></span></a> <a class=\"button is-medium\" href=\"")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var6 templ.SafeURL = BaseURL(ctx, WithPath("/auth/logout"))
|
||||
var templ_7745c5c3_Var6 templ.SafeURL = BaseURL(ctx, WithPath("/quiz/leaderboard"))
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(string(templ_7745c5c3_Var6)))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 5, "\"><span class=\"icon\"><i class=\"fa fa-sign-out-alt\"></i></span></a></div></div></div>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 5, "\"><span class=\"icon\"><i class=\"fa fa-trophy\"></i></span></a> <a class=\"button is-medium\" href=\"")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var7 templ.SafeURL = BaseURL(ctx, WithPath("/auth/logout"))
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(string(templ_7745c5c3_Var7)))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 6, "\"><span class=\"icon\"><i class=\"fa fa-sign-out-alt\"></i></span></a></div></div></div>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
@ -112,7 +121,7 @@ func AppPage(funcs ...AppPageOptionFunc) templ.Component {
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 6, "</section></div>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 7, "</section></div>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
|
@ -0,0 +1,43 @@
|
||||
package component
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
common "forge.cadoles.com/wpetit/kouiz/internal/http/handler/webui/common/component"
|
||||
"forge.cadoles.com/wpetit/kouiz/internal/store"
|
||||
)
|
||||
|
||||
type HistoryPageVModel struct {
|
||||
History []*store.QuizTurn
|
||||
}
|
||||
|
||||
templ HistoryPage(vmodel HistoryPageVModel) {
|
||||
@common.AppPage(common.WithPageOptions(
|
||||
common.WithTitle("Historique"),
|
||||
)) {
|
||||
<h3 class="title">Historique</h3>
|
||||
for _, turn := range vmodel.History {
|
||||
<details>
|
||||
<summary class="has-text-weight-bold is-clickable is-size-4">Tour #{ fmt.Sprintf("%d", turn.ID) }</summary>
|
||||
<div class="pl-5">
|
||||
for _, entry := range turn.Entries {
|
||||
<details class="mt-3">
|
||||
<summary class="has-text-weight-bold is-clickable is-size-5"><span>{ entry.Question }</span><span class="is-italic has-text-grey is-size-6">( { entry.Category.Theme } / { entry.Category.Name } / { store.DifficultyLevel(entry.Level) } )</span></summary>
|
||||
<div class="content">
|
||||
<ol class="mt-3">
|
||||
for _, proposition := range entry.Propositions {
|
||||
<li class={ templ.KV("has-text-success has-text-weight-bold", proposition == entry.Answer) }>{ proposition }</li>
|
||||
}
|
||||
</ol>
|
||||
</div>
|
||||
<div class="message is-small">
|
||||
<div class="message-header">Le saviez vous ?</div>
|
||||
<div class="message-body">{ entry.Anecdote }</div>
|
||||
</div>
|
||||
</details>
|
||||
}
|
||||
</div>
|
||||
</details>
|
||||
<hr/>
|
||||
}
|
||||
}
|
||||
}
|
205
internal/http/handler/webui/quiz/component/history_page_templ.go
Normal file
205
internal/http/handler/webui/quiz/component/history_page_templ.go
Normal file
@ -0,0 +1,205 @@
|
||||
// Code generated by templ - DO NOT EDIT.
|
||||
|
||||
// templ: version: v0.3.819
|
||||
package component
|
||||
|
||||
//lint:file-ignore SA4006 This context is only used if a nested component is present.
|
||||
|
||||
import "github.com/a-h/templ"
|
||||
import templruntime "github.com/a-h/templ/runtime"
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
common "forge.cadoles.com/wpetit/kouiz/internal/http/handler/webui/common/component"
|
||||
"forge.cadoles.com/wpetit/kouiz/internal/store"
|
||||
)
|
||||
|
||||
type HistoryPageVModel struct {
|
||||
History []*store.QuizTurn
|
||||
}
|
||||
|
||||
func HistoryPage(vmodel HistoryPageVModel) templ.Component {
|
||||
return templruntime.GeneratedTemplate(func(templ_7745c5c3_Input templruntime.GeneratedComponentInput) (templ_7745c5c3_Err error) {
|
||||
templ_7745c5c3_W, ctx := templ_7745c5c3_Input.Writer, templ_7745c5c3_Input.Context
|
||||
if templ_7745c5c3_CtxErr := ctx.Err(); templ_7745c5c3_CtxErr != nil {
|
||||
return templ_7745c5c3_CtxErr
|
||||
}
|
||||
templ_7745c5c3_Buffer, templ_7745c5c3_IsBuffer := templruntime.GetBuffer(templ_7745c5c3_W)
|
||||
if !templ_7745c5c3_IsBuffer {
|
||||
defer func() {
|
||||
templ_7745c5c3_BufErr := templruntime.ReleaseBuffer(templ_7745c5c3_Buffer)
|
||||
if templ_7745c5c3_Err == nil {
|
||||
templ_7745c5c3_Err = templ_7745c5c3_BufErr
|
||||
}
|
||||
}()
|
||||
}
|
||||
ctx = templ.InitializeContext(ctx)
|
||||
templ_7745c5c3_Var1 := templ.GetChildren(ctx)
|
||||
if templ_7745c5c3_Var1 == nil {
|
||||
templ_7745c5c3_Var1 = templ.NopComponent
|
||||
}
|
||||
ctx = templ.ClearChildren(ctx)
|
||||
templ_7745c5c3_Var2 := templruntime.GeneratedTemplate(func(templ_7745c5c3_Input templruntime.GeneratedComponentInput) (templ_7745c5c3_Err error) {
|
||||
templ_7745c5c3_W, ctx := templ_7745c5c3_Input.Writer, templ_7745c5c3_Input.Context
|
||||
templ_7745c5c3_Buffer, templ_7745c5c3_IsBuffer := templruntime.GetBuffer(templ_7745c5c3_W)
|
||||
if !templ_7745c5c3_IsBuffer {
|
||||
defer func() {
|
||||
templ_7745c5c3_BufErr := templruntime.ReleaseBuffer(templ_7745c5c3_Buffer)
|
||||
if templ_7745c5c3_Err == nil {
|
||||
templ_7745c5c3_Err = templ_7745c5c3_BufErr
|
||||
}
|
||||
}()
|
||||
}
|
||||
ctx = templ.InitializeContext(ctx)
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 1, "<h3 class=\"title\">Historique</h3>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
for _, turn := range vmodel.History {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 2, "<details><summary class=\"has-text-weight-bold is-clickable is-size-4\">Tour #")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var3 string
|
||||
templ_7745c5c3_Var3, templ_7745c5c3_Err = templ.JoinStringErrs(fmt.Sprintf("%d", turn.ID))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/history_page.templ`, Line: 20, Col: 99}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var3))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 3, "</summary><div class=\"pl-5\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
for _, entry := range turn.Entries {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 4, "<details class=\"mt-3\"><summary class=\"has-text-weight-bold is-clickable is-size-5\"><span>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var4 string
|
||||
templ_7745c5c3_Var4, templ_7745c5c3_Err = templ.JoinStringErrs(entry.Question)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/history_page.templ`, Line: 24, Col: 90}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var4))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 5, "</span><span class=\"is-italic has-text-grey is-size-6\">( ")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var5 string
|
||||
templ_7745c5c3_Var5, templ_7745c5c3_Err = templ.JoinStringErrs(entry.Category.Theme)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/history_page.templ`, Line: 24, Col: 172}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var5))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 6, " / ")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var6 string
|
||||
templ_7745c5c3_Var6, templ_7745c5c3_Err = templ.JoinStringErrs(entry.Category.Name)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/history_page.templ`, Line: 24, Col: 198}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var6))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 7, " / ")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var7 string
|
||||
templ_7745c5c3_Var7, templ_7745c5c3_Err = templ.JoinStringErrs(store.DifficultyLevel(entry.Level))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/history_page.templ`, Line: 24, Col: 239}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var7))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 8, " )</span></summary><div class=\"content\"><ol class=\"mt-3\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
for _, proposition := range entry.Propositions {
|
||||
var templ_7745c5c3_Var8 = []any{templ.KV("has-text-success has-text-weight-bold", proposition == entry.Answer)}
|
||||
templ_7745c5c3_Err = templ.RenderCSSItems(ctx, templ_7745c5c3_Buffer, templ_7745c5c3_Var8...)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 9, "<li class=\"")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var9 string
|
||||
templ_7745c5c3_Var9, templ_7745c5c3_Err = templ.JoinStringErrs(templ.CSSClasses(templ_7745c5c3_Var8).String())
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/history_page.templ`, Line: 1, Col: 0}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var9))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 10, "\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var10 string
|
||||
templ_7745c5c3_Var10, templ_7745c5c3_Err = templ.JoinStringErrs(proposition)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/history_page.templ`, Line: 28, Col: 116}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var10))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 11, "</li>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 12, "</ol></div><div class=\"message is-small\"><div class=\"message-header\">Le saviez vous ?</div><div class=\"message-body\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var11 string
|
||||
templ_7745c5c3_Var11, templ_7745c5c3_Err = templ.JoinStringErrs(entry.Anecdote)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/history_page.templ`, Line: 34, Col: 50}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var11))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 13, "</div></div></details>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 14, "</div></details><hr>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
}
|
||||
return nil
|
||||
})
|
||||
templ_7745c5c3_Err = common.AppPage(common.WithPageOptions(
|
||||
common.WithTitle("Historique"),
|
||||
)).Render(templ.WithChildren(ctx, templ_7745c5c3_Var2), templ_7745c5c3_Buffer)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
return nil
|
||||
})
|
||||
}
|
||||
|
||||
var _ = templruntime.GeneratedTemplate
|
@ -4,6 +4,7 @@ import (
|
||||
"fmt"
|
||||
common "forge.cadoles.com/wpetit/kouiz/internal/http/handler/webui/common/component"
|
||||
"forge.cadoles.com/wpetit/kouiz/internal/store"
|
||||
"math"
|
||||
"strconv"
|
||||
)
|
||||
|
||||
@ -18,37 +19,59 @@ templ LeaderboardPage(vmodel LeaderboardPageVModel) {
|
||||
common.WithTitle("Tableau des scores"),
|
||||
)) {
|
||||
<h3 class="title">Podium</h3>
|
||||
{{ podium := getPodium(vmodel.Players) }}
|
||||
<div class="podium">
|
||||
<div class="podium-position podium-second">
|
||||
if len(vmodel.Players) > 1 {
|
||||
<div class="podium-player">
|
||||
<span class="has-text-weight-bold is-uppercase">{ vmodel.Players[1].Name }</span>
|
||||
<br/>
|
||||
<span class="has-text-grey is-size-7">{ strconv.FormatInt(int64(vmodel.Players[1].Score), 10) }pts</span>
|
||||
</div>
|
||||
}
|
||||
<div class="podium-player">
|
||||
<span class="has-text-weight-bold is-uppercase">
|
||||
for i, p := range podium[1] {
|
||||
if i > 0 {
|
||||
<br/>
|
||||
}
|
||||
<span>{ p.Name }</span>
|
||||
}
|
||||
</span>
|
||||
<br/>
|
||||
if len(podium[1]) > 0 {
|
||||
<span class="has-text-grey is-size-7">{ fmt.Sprintf("%d", podium[1][0].Score) }pts</span>
|
||||
}
|
||||
</div>
|
||||
<div class="podium-step">2ème</div>
|
||||
</div>
|
||||
<div class="podium-position podium-first">
|
||||
if len(vmodel.Players) > 0 {
|
||||
<div class="podium-player">
|
||||
<span class="icon is-size-4 has-text-warning"><i class="fas fa-trophy"></i></span>
|
||||
<br/>
|
||||
<span class="has-text-weight-bold is-uppercase">{ vmodel.Players[0].Name }</span>
|
||||
<br/>
|
||||
<span class="has-text-grey is-size-7">{ strconv.FormatInt(int64(vmodel.Players[0].Score), 10) }pts</span>
|
||||
</div>
|
||||
}
|
||||
<div class="podium-player">
|
||||
<span class="icon is-size-4 has-text-warning"><i class="fas fa-trophy"></i></span>
|
||||
<br/>
|
||||
<span class="has-text-weight-bold is-uppercase">
|
||||
for i, p := range podium[0] {
|
||||
if i > 0 {
|
||||
<br/>
|
||||
}
|
||||
<span>{ p.Name }</span>
|
||||
}
|
||||
</span>
|
||||
<br/>
|
||||
if len(podium[0]) > 0 {
|
||||
<span class="has-text-grey is-size-7">{ fmt.Sprintf("%d", podium[0][0].Score) }pts</span>
|
||||
}
|
||||
</div>
|
||||
<div class="podium-step">1er</div>
|
||||
</div>
|
||||
<div class="podium-position podium-third">
|
||||
if len(vmodel.Players) > 2 {
|
||||
<div class="podium-player">
|
||||
<span class="has-text-weight-bold is-uppercase">{ vmodel.Players[2].Name }</span>
|
||||
<br/>
|
||||
<span class="has-text-grey is-size-7">{ strconv.FormatInt(int64(vmodel.Players[2].Score), 10) }pts</span>
|
||||
</div>
|
||||
}
|
||||
<div class="podium-player">
|
||||
<span class="has-text-weight-bold is-uppercase">
|
||||
for i, p := range podium[2] {
|
||||
if i > 0 {
|
||||
<br/>
|
||||
}
|
||||
<span>{ p.Name }</span>
|
||||
}
|
||||
</span>
|
||||
<br/>
|
||||
if len(podium[2]) > 0 {
|
||||
<span class="has-text-grey is-size-7">{ fmt.Sprintf("%d", podium[2][0].Score) }pts</span>
|
||||
}
|
||||
</div>
|
||||
<div class="podium-step">3ème</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -127,3 +150,28 @@ templ LeaderboardPage(vmodel LeaderboardPageVModel) {
|
||||
</style>
|
||||
}
|
||||
}
|
||||
|
||||
func getPodium(players []*store.Player) [][]*store.Player {
|
||||
score := math.MaxInt
|
||||
podium := make([][]*store.Player, 3)
|
||||
podiumIndex := -1
|
||||
for _, p := range players {
|
||||
if p.Score < score {
|
||||
score = p.Score
|
||||
podiumIndex++
|
||||
if podiumIndex > 2 {
|
||||
break
|
||||
}
|
||||
|
||||
podium[podiumIndex] = append(podium[podiumIndex], p)
|
||||
continue
|
||||
}
|
||||
|
||||
if p.Score == score {
|
||||
podium[podiumIndex] = append(podium[podiumIndex], p)
|
||||
continue
|
||||
}
|
||||
}
|
||||
|
||||
return podium
|
||||
}
|
||||
|
@ -12,6 +12,7 @@ import (
|
||||
"fmt"
|
||||
common "forge.cadoles.com/wpetit/kouiz/internal/http/handler/webui/common/component"
|
||||
"forge.cadoles.com/wpetit/kouiz/internal/store"
|
||||
"math"
|
||||
"strconv"
|
||||
)
|
||||
|
||||
@ -54,187 +55,240 @@ func LeaderboardPage(vmodel LeaderboardPageVModel) templ.Component {
|
||||
}()
|
||||
}
|
||||
ctx = templ.InitializeContext(ctx)
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 1, "<h3 class=\"title\">Podium</h3><div class=\"podium\"><div class=\"podium-position podium-second\">")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 1, "<h3 class=\"title\">Podium</h3>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
if len(vmodel.Players) > 1 {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 2, "<div class=\"podium-player\"><span class=\"has-text-weight-bold is-uppercase\">")
|
||||
podium := getPodium(vmodel.Players)
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 2, "<div class=\"podium\"><div class=\"podium-position podium-second\"><div class=\"podium-player\"><span class=\"has-text-weight-bold is-uppercase\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
for i, p := range podium[1] {
|
||||
if i > 0 {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 3, "<br>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 4, " <span>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var3 string
|
||||
templ_7745c5c3_Var3, templ_7745c5c3_Err = templ.JoinStringErrs(vmodel.Players[1].Name)
|
||||
templ_7745c5c3_Var3, templ_7745c5c3_Err = templ.JoinStringErrs(p.Name)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 25, Col: 78}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 31, Col: 21}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var3))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 3, "</span><br><span class=\"has-text-grey is-size-7\">")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 5, "</span>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 6, "</span><br>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
if len(podium[1]) > 0 {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 7, "<span class=\"has-text-grey is-size-7\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var4 string
|
||||
templ_7745c5c3_Var4, templ_7745c5c3_Err = templ.JoinStringErrs(strconv.FormatInt(int64(vmodel.Players[1].Score), 10))
|
||||
templ_7745c5c3_Var4, templ_7745c5c3_Err = templ.JoinStringErrs(fmt.Sprintf("%d", podium[1][0].Score))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 27, Col: 99}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 36, Col: 83}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var4))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 4, "pts</span></div>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 8, "pts</span>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 5, "<div class=\"podium-step\">2ème</div></div><div class=\"podium-position podium-first\">")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 9, "</div><div class=\"podium-step\">2ème</div></div><div class=\"podium-position podium-first\"><div class=\"podium-player\"><span class=\"icon is-size-4 has-text-warning\"><i class=\"fas fa-trophy\"></i></span><br><span class=\"has-text-weight-bold is-uppercase\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
if len(vmodel.Players) > 0 {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 6, "<div class=\"podium-player\"><span class=\"icon is-size-4 has-text-warning\"><i class=\"fas fa-trophy\"></i></span><br><span class=\"has-text-weight-bold is-uppercase\">")
|
||||
for i, p := range podium[0] {
|
||||
if i > 0 {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 10, "<br>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 11, " <span>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var5 string
|
||||
templ_7745c5c3_Var5, templ_7745c5c3_Err = templ.JoinStringErrs(vmodel.Players[0].Name)
|
||||
templ_7745c5c3_Var5, templ_7745c5c3_Err = templ.JoinStringErrs(p.Name)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 37, Col: 78}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 50, Col: 21}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var5))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 7, "</span><br><span class=\"has-text-grey is-size-7\">")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 12, "</span>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 13, "</span><br>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
if len(podium[0]) > 0 {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 14, "<span class=\"has-text-grey is-size-7\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var6 string
|
||||
templ_7745c5c3_Var6, templ_7745c5c3_Err = templ.JoinStringErrs(strconv.FormatInt(int64(vmodel.Players[0].Score), 10))
|
||||
templ_7745c5c3_Var6, templ_7745c5c3_Err = templ.JoinStringErrs(fmt.Sprintf("%d", podium[0][0].Score))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 39, Col: 99}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 55, Col: 83}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var6))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 8, "pts</span></div>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 15, "pts</span>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 9, "<div class=\"podium-step\">1er</div></div><div class=\"podium-position podium-third\">")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 16, "</div><div class=\"podium-step\">1er</div></div><div class=\"podium-position podium-third\"><div class=\"podium-player\"><span class=\"has-text-weight-bold is-uppercase\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
if len(vmodel.Players) > 2 {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 10, "<div class=\"podium-player\"><span class=\"has-text-weight-bold is-uppercase\">")
|
||||
for i, p := range podium[2] {
|
||||
if i > 0 {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 17, "<br>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 18, " <span>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var7 string
|
||||
templ_7745c5c3_Var7, templ_7745c5c3_Err = templ.JoinStringErrs(vmodel.Players[2].Name)
|
||||
templ_7745c5c3_Var7, templ_7745c5c3_Err = templ.JoinStringErrs(p.Name)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 47, Col: 78}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 67, Col: 21}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var7))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 11, "</span><br><span class=\"has-text-grey is-size-7\">")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 19, "</span>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 20, "</span><br>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
if len(podium[2]) > 0 {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 21, "<span class=\"has-text-grey is-size-7\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var8 string
|
||||
templ_7745c5c3_Var8, templ_7745c5c3_Err = templ.JoinStringErrs(strconv.FormatInt(int64(vmodel.Players[2].Score), 10))
|
||||
templ_7745c5c3_Var8, templ_7745c5c3_Err = templ.JoinStringErrs(fmt.Sprintf("%d", podium[2][0].Score))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 49, Col: 99}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 72, Col: 83}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var8))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 12, "pts</span></div>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 22, "pts</span>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 13, "<div class=\"podium-step\">3ème</div></div></div><h3 class=\"title mt-5\">Tableau des scores</h3><div class=\"table-container\"><table class=\"table is-fullwidth\"><thead><tr><th>Position</th><th>Pseudonyme</th><th>Score</th></tr></thead> <tbody>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 23, "</div><div class=\"podium-step\">3ème</div></div></div><h3 class=\"title mt-5\">Tableau des scores</h3><div class=\"table-container\"><table class=\"table is-fullwidth\"><thead><tr><th>Position</th><th>Pseudonyme</th><th>Score</th></tr></thead> <tbody>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
for i, p := range vmodel.Players {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 14, "<tr")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 24, "<tr")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
if p.ID == vmodel.Player.ID {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 15, " class=\"has-text-weight-bold is-info\"")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 25, " class=\"has-text-weight-bold is-info\"")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 16, " id=\"")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 26, " id=\"")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var9 string
|
||||
templ_7745c5c3_Var9, templ_7745c5c3_Err = templ.JoinStringErrs(fmt.Sprintf("player-%d", p.ID))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 71, Col: 42}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 94, Col: 42}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var9))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 17, "\"><td>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 27, "\"><td>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var10 string
|
||||
templ_7745c5c3_Var10, templ_7745c5c3_Err = templ.JoinStringErrs(strconv.FormatInt(int64(i+1), 10))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 73, Col: 46}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 96, Col: 46}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var10))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 18, "</td><td>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 28, "</td><td>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var11 string
|
||||
templ_7745c5c3_Var11, templ_7745c5c3_Err = templ.JoinStringErrs(p.Name)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 74, Col: 19}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 97, Col: 19}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var11))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 19, "</td><td>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 29, "</td><td>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var12 string
|
||||
templ_7745c5c3_Var12, templ_7745c5c3_Err = templ.JoinStringErrs(strconv.FormatInt(int64(p.Score), 10))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 75, Col: 50}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/leaderboard_page.templ`, Line: 98, Col: 50}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var12))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 20, "</td></tr>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 30, "</td></tr>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 21, "</tbody></table></div><style>\n .podium {\n display: flex;\n flex-direction: row;\n align-items: flex-end;\n justify-content: center;\n gap: 10px;\n }\n\n .podium .podium-step {\n width: 100px;\n justify-content: center;\n align-items: center;\n display: flex;\n font-weight: bold;\n color: white;\n text-shadow: 1px 1px #333;\n }\n\n .podium .podium-position {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n }\n\n .podium .podium-player {\n text-shadow: none;\n color: #333;\n text-align: center;\n }\n\n .podium .podium-first .podium-step {\n height: 70px;\n background-color: hsl(141, 71%, 48%)\t;\n }\n\n .podium .podium-second .podium-step {\n height: 50px;\n background-color: hsl(204, 86%, 53%);\n }\n\n .podium .podium-third .podium-step {\n height: 30px;\n background-color: #66d1ff;\n }\n </style>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 31, "</tbody></table></div><style>\n .podium {\n display: flex;\n flex-direction: row;\n align-items: flex-end;\n justify-content: center;\n gap: 10px;\n }\n\n .podium .podium-step {\n width: 100px;\n justify-content: center;\n align-items: center;\n display: flex;\n font-weight: bold;\n color: white;\n text-shadow: 1px 1px #333;\n }\n\n .podium .podium-position {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n }\n\n .podium .podium-player {\n text-shadow: none;\n color: #333;\n text-align: center;\n }\n\n .podium .podium-first .podium-step {\n height: 70px;\n background-color: hsl(141, 71%, 48%)\t;\n }\n\n .podium .podium-second .podium-step {\n height: 50px;\n background-color: hsl(204, 86%, 53%);\n }\n\n .podium .podium-third .podium-step {\n height: 30px;\n background-color: #66d1ff;\n }\n </style>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
@ -250,4 +304,29 @@ func LeaderboardPage(vmodel LeaderboardPageVModel) templ.Component {
|
||||
})
|
||||
}
|
||||
|
||||
func getPodium(players []*store.Player) [][]*store.Player {
|
||||
score := math.MaxInt
|
||||
podium := make([][]*store.Player, 3)
|
||||
podiumIndex := -1
|
||||
for _, p := range players {
|
||||
if p.Score < score {
|
||||
score = p.Score
|
||||
podiumIndex++
|
||||
if podiumIndex > 2 {
|
||||
break
|
||||
}
|
||||
|
||||
podium[podiumIndex] = append(podium[podiumIndex], p)
|
||||
continue
|
||||
}
|
||||
|
||||
if p.Score == score {
|
||||
podium[podiumIndex] = append(podium[podiumIndex], p)
|
||||
continue
|
||||
}
|
||||
}
|
||||
|
||||
return podium
|
||||
}
|
||||
|
||||
var _ = templruntime.GeneratedTemplate
|
||||
|
@ -19,6 +19,7 @@ type QuizPageVModel struct {
|
||||
Player *store.Player
|
||||
CurrentTurn *store.QuizTurn
|
||||
PlayDelay time.Duration
|
||||
IsOffDay bool
|
||||
}
|
||||
|
||||
func NewSelectEntryForm() *form.Form {
|
||||
@ -46,10 +47,28 @@ templ QuizPage(vmodel QuizPageVModel) {
|
||||
common.WithTitle(fmt.Sprintf("Tour #%d", vmodel.CurrentTurn.ID)),
|
||||
)) {
|
||||
<h2 class="title is-size-3">Tour #{ strconv.FormatUint(uint64(vmodel.CurrentTurn.ID), 10) }</h2>
|
||||
if vmodel.Player.PlayedAt.After(vmodel.CurrentTurn.StartedAt) {
|
||||
<div class="content has-text-centered is-size-5">
|
||||
<p><strong>Vous avez déjà joué ce tour ci !</strong></p>
|
||||
<p>Le prochain tour commencera dans { vmodel.CurrentTurn.EndedAt.Sub(time.Now().UTC()).Round(time.Second).String() }.</p>
|
||||
if vmodel.IsOffDay {
|
||||
<div class="message is-warning">
|
||||
<div class="message-header">
|
||||
<p>Jeu désactivé aujourd'hui</p>
|
||||
</div>
|
||||
<div class="message-body">
|
||||
<div class="content">
|
||||
<p>Désolé, le jeu est désactivé pour la journée. Revenez prochainement pour le prochain tour !</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
} else if vmodel.Player.PlayedAt.After(vmodel.CurrentTurn.StartedAt) {
|
||||
<div class="content has-text-centered is-size-5"></div>
|
||||
<div class="message is-info">
|
||||
<div class="message-header">
|
||||
<p>En attente du prochain tour</p>
|
||||
</div>
|
||||
<div class="message-body">
|
||||
<div class="content">
|
||||
<p>Il commencera dans { vmodel.CurrentTurn.EndedAt.Local().Sub(time.Now().Local()).Round(time.Second).String() }.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
} else if vmodel.Player.SelectedEntry == nil || vmodel.Player.SelectedTurn == nil || *vmodel.Player.SelectedTurn != vmodel.CurrentTurn.ID {
|
||||
@QuizQuestionSelector(vmodel)
|
||||
@ -89,7 +108,7 @@ templ QuizQuestionSelector(vmodel QuizPageVModel) {
|
||||
<div class="level-item">
|
||||
<div class="content">
|
||||
<p class="is-size-4 is-family-secondary has-text-right" style="width:300px">
|
||||
<span></span> <span class="has-text-weight-bold">{ difficultyLevel(entry.Level) }</span>
|
||||
<span></span> <span class="has-text-weight-bold">{ store.DifficultyLevel(entry.Level) }</span>
|
||||
<br/>
|
||||
<span>+{ strconv.FormatInt(int64((entry.Level+1)*2), 10) } points</span>
|
||||
</p>
|
||||
@ -158,19 +177,6 @@ templ QuizQuestion(vmodel QuizPageVModel) {
|
||||
</script>
|
||||
}
|
||||
|
||||
func difficultyLevel(level uint) string {
|
||||
switch level {
|
||||
case 0:
|
||||
return "Débutant"
|
||||
case 1:
|
||||
return "Confirmé"
|
||||
case 2:
|
||||
return "Expert"
|
||||
default:
|
||||
return fmt.Sprintf("Hors catégorie (%d)", level)
|
||||
}
|
||||
}
|
||||
|
||||
func markdownToHTML(ctx context.Context, text string) string {
|
||||
var buff bytes.Buffer
|
||||
if err := goldmark.Convert([]byte(text), &buff); err != nil {
|
||||
|
@ -27,6 +27,7 @@ type QuizPageVModel struct {
|
||||
Player *store.Player
|
||||
CurrentTurn *store.QuizTurn
|
||||
PlayDelay time.Duration
|
||||
IsOffDay bool
|
||||
}
|
||||
|
||||
func NewSelectEntryForm() *form.Form {
|
||||
@ -89,7 +90,7 @@ func QuizPage(vmodel QuizPageVModel) templ.Component {
|
||||
var templ_7745c5c3_Var3 string
|
||||
templ_7745c5c3_Var3, templ_7745c5c3_Err = templ.JoinStringErrs(strconv.FormatUint(uint64(vmodel.CurrentTurn.ID), 10))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 48, Col: 91}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 49, Col: 91}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var3))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
@ -99,21 +100,26 @@ func QuizPage(vmodel QuizPageVModel) templ.Component {
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
if vmodel.Player.PlayedAt.After(vmodel.CurrentTurn.StartedAt) {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 3, "<div class=\"content has-text-centered is-size-5\"><p><strong>Vous avez déjà joué ce tour ci !</strong></p><p>Le prochain tour commencera dans ")
|
||||
if vmodel.IsOffDay {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 3, "<div class=\"message is-warning\"><div class=\"message-header\"><p>Jeu désactivé aujourd'hui</p></div><div class=\"message-body\"><div class=\"content\"><p>Désolé, le jeu est désactivé pour la journée. Revenez prochainement pour le prochain tour !</p></div></div></div>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
} else if vmodel.Player.PlayedAt.After(vmodel.CurrentTurn.StartedAt) {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 4, "<div class=\"content has-text-centered is-size-5\"></div><div class=\"message is-info\"><div class=\"message-header\"><p>En attente du prochain tour</p></div><div class=\"message-body\"><div class=\"content\"><p>Il commencera dans ")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var4 string
|
||||
templ_7745c5c3_Var4, templ_7745c5c3_Err = templ.JoinStringErrs(vmodel.CurrentTurn.EndedAt.Sub(time.Now().UTC()).Round(time.Second).String())
|
||||
templ_7745c5c3_Var4, templ_7745c5c3_Err = templ.JoinStringErrs(vmodel.CurrentTurn.EndedAt.Local().Sub(time.Now().Local()).Round(time.Second).String())
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 52, Col: 118}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 69, Col: 116}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var4))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 4, ".</p></div>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 5, ".</p></div></div></div>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
@ -161,7 +167,7 @@ func QuizQuestionSelector(vmodel QuizPageVModel) templ.Component {
|
||||
templ_7745c5c3_Var5 = templ.NopComponent
|
||||
}
|
||||
ctx = templ.ClearChildren(ctx)
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 5, "<form action=\"")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 6, "<form action=\"")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
@ -170,108 +176,108 @@ func QuizQuestionSelector(vmodel QuizPageVModel) templ.Component {
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 6, "\" method=\"post\"><h3 class=\"title is-size-3\">Choisissez votre prochaine question</h3><div class=\"message is-info\"><div class=\"message-body\"><p><strong>Attention</strong>, une fois la thématique sélectionnée vous aurez <strong>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 7, "\" method=\"post\"><h3 class=\"title is-size-3\">Choisissez votre prochaine question</h3><div class=\"message is-info\"><div class=\"message-body\"><p><strong>Attention</strong>, une fois la thématique sélectionnée vous aurez <strong>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var7 string
|
||||
templ_7745c5c3_Var7, templ_7745c5c3_Err = templ.JoinStringErrs(vmodel.PlayDelay.String())
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 68, Col: 118}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 87, Col: 118}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var7))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 7, " pour répondre</strong>. Faites le bon choix !</p></div></div>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 8, " pour répondre</strong>. Faites le bon choix !</p></div></div>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
for _, entry := range vmodel.CurrentTurn.Entries {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 8, "<div class=\"box\"><div class=\"level mx-5\"><div class=\"level-left\"><div class=\"level-item\"><div class=\"content\"><p class=\"title\">")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 9, "<div class=\"box\"><div class=\"level mx-5\"><div class=\"level-left\"><div class=\"level-item\"><div class=\"content\"><p class=\"title\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var8 string
|
||||
templ_7745c5c3_Var8, templ_7745c5c3_Err = templ.JoinStringErrs(entry.Category.Theme)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 79, Col: 31}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 98, Col: 31}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var8))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 9, "</p><p class=\"subtitle\">")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 10, "</p><p class=\"subtitle\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var9 string
|
||||
templ_7745c5c3_Var9, templ_7745c5c3_Err = templ.JoinStringErrs(entry.Category.Name)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 81, Col: 49}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 100, Col: 49}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var9))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 10, "</p><div class=\"content is-italic\"><p>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 11, "</p><div class=\"content is-italic\"><p>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var10 string
|
||||
templ_7745c5c3_Var10, templ_7745c5c3_Err = templ.JoinStringErrs(entry.Category.Description)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 83, Col: 40}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 102, Col: 40}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var10))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 11, "</p></div></div></div></div><div class=\"level-right\"><div class=\"level-item\"><div class=\"content\"><p class=\"is-size-4 is-family-secondary has-text-right\" style=\"width:300px\"><span></span> <span class=\"has-text-weight-bold\">")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 12, "</p></div></div></div></div><div class=\"level-right\"><div class=\"level-item\"><div class=\"content\"><p class=\"is-size-4 is-family-secondary has-text-right\" style=\"width:300px\"><span></span> <span class=\"has-text-weight-bold\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var11 string
|
||||
templ_7745c5c3_Var11, templ_7745c5c3_Err = templ.JoinStringErrs(difficultyLevel(entry.Level))
|
||||
templ_7745c5c3_Var11, templ_7745c5c3_Err = templ.JoinStringErrs(store.DifficultyLevel(entry.Level))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 92, Col: 88}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 111, Col: 94}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var11))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 12, "</span><br><span>+")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 13, "</span><br><span>+")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var12 string
|
||||
templ_7745c5c3_Var12, templ_7745c5c3_Err = templ.JoinStringErrs(strconv.FormatInt(int64((entry.Level+1)*2), 10))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 94, Col: 65}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 113, Col: 65}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var12))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 13, " points</span></p></div></div><div class=\"level-item\"><button class=\"button is-large ml-5\" name=\"entry\" value=\"")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 14, " points</span></p></div></div><div class=\"level-item\"><button class=\"button is-large ml-5\" name=\"entry\" value=\"")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var13 string
|
||||
templ_7745c5c3_Var13, templ_7745c5c3_Err = templ.JoinStringErrs(strconv.FormatInt(int64(entry.ID), 10))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 99, Col: 103}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 118, Col: 103}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var13))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 14, "\"><span class=\"icon\"><i class=\"fas fa-chevron-right\"></i></span></button></div></div></div></div>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 15, "\"><span class=\"icon\"><i class=\"fas fa-chevron-right\"></i></span></button></div></div></div></div>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 15, "</form>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 16, "</form>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
@ -305,46 +311,46 @@ func QuizQuestion(vmodel QuizPageVModel) templ.Component {
|
||||
return vmodel.Player.SelectedEntry != nil && *vmodel.Player.SelectedEntry == e.ID
|
||||
})
|
||||
selectedEntry := vmodel.CurrentTurn.Entries[selectedEntryIndex]
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 16, "<div class=\"content\"><p class=\"title is-size-3\">")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 17, "<div class=\"content\"><p class=\"title is-size-3\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var15 string
|
||||
templ_7745c5c3_Var15, templ_7745c5c3_Err = templ.JoinStringErrs(selectedEntry.Question)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 119, Col: 27}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 138, Col: 27}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var15))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 17, "</p><p class=\"subtitle\">")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 18, "</p><p class=\"subtitle\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var16 string
|
||||
templ_7745c5c3_Var16, templ_7745c5c3_Err = templ.JoinStringErrs(selectedEntry.Category.Name)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 121, Col: 51}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 140, Col: 51}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var16))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 18, " - ")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 19, " - ")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var17 string
|
||||
templ_7745c5c3_Var17, templ_7745c5c3_Err = templ.JoinStringErrs(selectedEntry.Category.Theme)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 121, Col: 86}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 140, Col: 86}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var17))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 19, "</p></div><form action=\"")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 20, "</p></div><form action=\"")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
@ -353,87 +359,87 @@ func QuizQuestion(vmodel QuizPageVModel) templ.Component {
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 20, "\" method=\"post\">")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 21, "\" method=\"post\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
for index, proposition := range selectedEntry.Propositions {
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 21, "<div class=\"box\"><div class=\"level\"><div class=\"level-left\"><div class=\"level-item\"><div class=\"content\"><p class=\"has-font-weight-bold is-size-4\"><span class=\"has-text-grey\t\">")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 22, "<div class=\"box\"><div class=\"level\"><div class=\"level-left\"><div class=\"level-item\"><div class=\"content\"><p class=\"has-font-weight-bold is-size-4\"><span class=\"has-text-grey\t\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var19 string
|
||||
templ_7745c5c3_Var19, templ_7745c5c3_Err = templ.JoinStringErrs(strconv.FormatInt(int64(index), 10))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 131, Col: 75}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 150, Col: 75}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var19))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 22, ".</span> <span class=\"is-family-secondary\">")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 23, ".</span> <span class=\"is-family-secondary\">")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var20 string
|
||||
templ_7745c5c3_Var20, templ_7745c5c3_Err = templ.JoinStringErrs(proposition)
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 131, Col: 133}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 150, Col: 133}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var20))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 23, "</span></p></div></div></div><div class=\"level-right\"><div class=\"level-item\"><button class=\"button is-large ml-5\" name=\"answer\" value=\"")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 24, "</span></p></div></div></div><div class=\"level-right\"><div class=\"level-item\"><button class=\"button is-large ml-5\" name=\"answer\" value=\"")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var21 string
|
||||
templ_7745c5c3_Var21, templ_7745c5c3_Err = templ.JoinStringErrs(strconv.FormatInt(int64(index), 10))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 138, Col: 101}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 157, Col: 101}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var21))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 24, "\"><span class=\"icon\"><i class=\"fas fa-chevron-right\"></i></span></button></div></div></div></div>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 25, "\"><span class=\"icon\"><i class=\"fas fa-chevron-right\"></i></span></button></div></div></div></div>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 25, "</form>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 26, "</form>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
remainingSeconds := vmodel.Player.SelectedAt.Add(vmodel.PlayDelay).Sub(time.Now().UTC()).Seconds()
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 26, "<progress id=\"question-timer\" class=\"progress is-info is-small mt-5\" value=\"")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 27, "<progress id=\"question-timer\" class=\"progress is-info is-small mt-5\" value=\"")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var22 string
|
||||
templ_7745c5c3_Var22, templ_7745c5c3_Err = templ.JoinStringErrs(strconv.FormatInt(int64(remainingSeconds), 10))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 148, Col: 124}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 167, Col: 124}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var22))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 27, "\" max=\"")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 28, "\" max=\"")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
var templ_7745c5c3_Var23 string
|
||||
templ_7745c5c3_Var23, templ_7745c5c3_Err = templ.JoinStringErrs(strconv.FormatInt(int64(remainingSeconds), 10))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 148, Col: 179}
|
||||
return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/http/handler/webui/quiz/component/quiz_page.templ`, Line: 167, Col: 179}
|
||||
}
|
||||
_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var23))
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 28, "\"></progress><script>\n\t\t(function(){\n\t\t\tconst element = document.getElementById(\"question-timer\")\n\t\t\tconst updateProgress = () => {\n\t\t\t\telement.value = parseInt(element.value)-1;\n\t\t\t\tsetTimeout(updateProgress, 1000);\n\t\t\t};\n\t\t\tsetTimeout(updateProgress, 1000);\n\t\t}());\n\t</script>")
|
||||
templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 29, "\"></progress><script>\n\t\t(function(){\n\t\t\tconst element = document.getElementById(\"question-timer\")\n\t\t\tconst updateProgress = () => {\n\t\t\t\telement.value = parseInt(element.value)-1;\n\t\t\t\tsetTimeout(updateProgress, 1000);\n\t\t\t};\n\t\t\tsetTimeout(updateProgress, 1000);\n\t\t}());\n\t</script>")
|
||||
if templ_7745c5c3_Err != nil {
|
||||
return templ_7745c5c3_Err
|
||||
}
|
||||
@ -441,19 +447,6 @@ func QuizQuestion(vmodel QuizPageVModel) templ.Component {
|
||||
})
|
||||
}
|
||||
|
||||
func difficultyLevel(level uint) string {
|
||||
switch level {
|
||||
case 0:
|
||||
return "Débutant"
|
||||
case 1:
|
||||
return "Confirmé"
|
||||
case 2:
|
||||
return "Expert"
|
||||
default:
|
||||
return fmt.Sprintf("Hors catégorie (%d)", level)
|
||||
}
|
||||
}
|
||||
|
||||
func markdownToHTML(ctx context.Context, text string) string {
|
||||
var buff bytes.Buffer
|
||||
if err := goldmark.Convert([]byte(text), &buff); err != nil {
|
||||
|
@ -14,6 +14,7 @@ type Handler struct {
|
||||
playInterval time.Duration
|
||||
playPeriod timex.PeriodType
|
||||
playDelay time.Duration
|
||||
offDays []time.Weekday
|
||||
}
|
||||
|
||||
// ServeHTTP implements http.Handler.
|
||||
@ -21,13 +22,14 @@ func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||
h.mux.ServeHTTP(w, r)
|
||||
}
|
||||
|
||||
func NewHandler(store *store.Store, playInterval time.Duration, playPeriod timex.PeriodType, playDelay time.Duration) *Handler {
|
||||
func NewHandler(store *store.Store, playInterval time.Duration, playPeriod timex.PeriodType, playDelay time.Duration, offDays []time.Weekday) *Handler {
|
||||
h := &Handler{
|
||||
mux: http.NewServeMux(),
|
||||
store: store,
|
||||
playInterval: playInterval,
|
||||
playPeriod: playPeriod,
|
||||
playDelay: playDelay,
|
||||
offDays: offDays,
|
||||
}
|
||||
|
||||
h.mux.HandleFunc("GET /", h.getQuizPage)
|
||||
@ -35,6 +37,7 @@ func NewHandler(store *store.Store, playInterval time.Duration, playPeriod timex
|
||||
h.mux.HandleFunc("POST /select", h.handleSelectEntryForm)
|
||||
h.mux.HandleFunc("POST /answer", h.handleAnswerForm)
|
||||
h.mux.HandleFunc("GET /result", h.getResultPage)
|
||||
h.mux.HandleFunc("GET /history", h.getHistoryPage)
|
||||
|
||||
return h
|
||||
}
|
||||
|
59
internal/http/handler/webui/quiz/history_page.go
Normal file
59
internal/http/handler/webui/quiz/history_page.go
Normal file
@ -0,0 +1,59 @@
|
||||
package quiz
|
||||
|
||||
import (
|
||||
"context"
|
||||
"net/http"
|
||||
|
||||
"forge.cadoles.com/wpetit/kouiz/internal/http/handler/webui/common"
|
||||
"forge.cadoles.com/wpetit/kouiz/internal/http/handler/webui/quiz/component"
|
||||
"forge.cadoles.com/wpetit/kouiz/internal/store"
|
||||
"github.com/a-h/templ"
|
||||
"github.com/pkg/errors"
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
func (h *Handler) getHistoryPage(w http.ResponseWriter, r *http.Request) {
|
||||
vmodel, err := h.fillHistoryPageVModel(r)
|
||||
if err != nil {
|
||||
h.handleError(w, r, errors.WithStack(err))
|
||||
return
|
||||
}
|
||||
|
||||
page := component.HistoryPage(*vmodel)
|
||||
templ.Handler(page).ServeHTTP(w, r)
|
||||
}
|
||||
|
||||
func (h *Handler) fillHistoryPageVModel(r *http.Request) (*component.HistoryPageVModel, error) {
|
||||
vmodel := &component.HistoryPageVModel{}
|
||||
|
||||
err := common.FillViewModel(
|
||||
r.Context(), vmodel, r,
|
||||
h.fillHistoryPageHistory,
|
||||
)
|
||||
if err != nil {
|
||||
return nil, errors.WithStack(err)
|
||||
}
|
||||
|
||||
return vmodel, nil
|
||||
}
|
||||
|
||||
func (h *Handler) fillHistoryPageHistory(ctx context.Context, vmodel *component.HistoryPageVModel, r *http.Request) error {
|
||||
player, err := h.getRequestPlayer(r)
|
||||
if err != nil {
|
||||
return errors.WithStack(err)
|
||||
}
|
||||
|
||||
err = h.store.Do(ctx, func(db *gorm.DB) error {
|
||||
err := db.Model(&store.QuizTurn{}).
|
||||
Preload("Entries").
|
||||
Preload("Entries.Category").
|
||||
Order("started_at DESC").
|
||||
Find(&vmodel.History, "ended_at < ?", player.PlayedAt.UTC()).Error
|
||||
if err != nil {
|
||||
return errors.WithStack(err)
|
||||
}
|
||||
return nil
|
||||
})
|
||||
|
||||
return nil
|
||||
}
|
@ -3,6 +3,7 @@ package quiz
|
||||
import (
|
||||
"context"
|
||||
"net/http"
|
||||
"slices"
|
||||
"strconv"
|
||||
"time"
|
||||
|
||||
@ -36,6 +37,7 @@ func (h *Handler) fillQuizPageVModel(r *http.Request) (*component.QuizPageVModel
|
||||
r.Context(), vmodel, r,
|
||||
h.fillQuizPagePlayer,
|
||||
h.fillQuizPageTurn,
|
||||
h.fillQuizPageOffDay,
|
||||
)
|
||||
if err != nil {
|
||||
return nil, errors.WithStack(err)
|
||||
@ -66,6 +68,12 @@ func (h *Handler) fillQuizPageTurn(ctx context.Context, vmodel *component.QuizPa
|
||||
return nil
|
||||
}
|
||||
|
||||
func (h *Handler) fillQuizPageOffDay(ctx context.Context, vmodel *component.QuizPageVModel, r *http.Request) error {
|
||||
today := time.Now().Weekday()
|
||||
vmodel.IsOffDay = slices.Contains(h.offDays, today)
|
||||
return nil
|
||||
}
|
||||
|
||||
func (h *Handler) getRequestPlayer(r *http.Request) (*store.Player, error) {
|
||||
ctx := r.Context()
|
||||
user := auth.ContextUser(ctx)
|
||||
|
@ -22,7 +22,7 @@ func NewQuizHandlerFromConfig(ctx context.Context, conf *config.Config) (*quiz.H
|
||||
return nil, errors.WithStack(err)
|
||||
}
|
||||
|
||||
return quiz.NewHandler(store, conf.Quiz.PlayInterval, conf.Quiz.PlayPeriod, conf.Quiz.PlayDelay), nil
|
||||
return quiz.NewHandler(store, conf.Quiz.PlayInterval, conf.Quiz.PlayPeriod, conf.Quiz.PlayDelay, conf.Quiz.OffDays), nil
|
||||
}
|
||||
|
||||
func loadEmbeddedQuizz(ctx context.Context, st *store.Store) error {
|
||||
|
@ -21,6 +21,13 @@ var getStoreFromConfig = createFromConfigOnce(func(ctx context.Context, conf *co
|
||||
return nil, errors.WithStack(err)
|
||||
}
|
||||
|
||||
sqlDB, err := db.DB()
|
||||
if err != nil {
|
||||
return nil, errors.WithStack(err)
|
||||
}
|
||||
|
||||
sqlDB.SetMaxOpenConns(1)
|
||||
|
||||
if conf.Store.Debug {
|
||||
db = db.Debug()
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
package store
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"gorm.io/datatypes"
|
||||
@ -64,3 +65,16 @@ type QuizEntry struct {
|
||||
Level uint `gorm:"index"`
|
||||
Anecdote string
|
||||
}
|
||||
|
||||
func DifficultyLevel(level uint) string {
|
||||
switch level {
|
||||
case 0:
|
||||
return "Débutant"
|
||||
case 1:
|
||||
return "Confirmé"
|
||||
case 2:
|
||||
return "Expert"
|
||||
default:
|
||||
return fmt.Sprintf("Hors catégorie (%d)", level)
|
||||
}
|
||||
}
|
||||
|
@ -60,7 +60,7 @@ func createGetDatabase(db *gorm.DB) func(ctx context.Context) (*gorm.DB, error)
|
||||
return
|
||||
}
|
||||
|
||||
if err := db.Exec("PRAGMA journal_mode=WAL; PRAGMA encoding='UTF-8';").Error; err != nil {
|
||||
if err := db.Exec("PRAGMA journal_mode=WAL; PRAGMA busy_timeout=500; PRAGMA txlock=deferred; PRAGMA synchronous=normal; PRAGMA encoding='UTF-8';").Error; err != nil {
|
||||
migrateErr = errors.WithStack(err)
|
||||
return
|
||||
}
|
||||
|
2250
misc/quiz/openquizzdb/epices.json
Normal file
2250
misc/quiz/openquizzdb/epices.json
Normal file
@ -0,0 +1,2250 @@
|
||||
{
|
||||
"fournisseur": "OpenQuizzDB - Fournisseur de contenu libre (https://www.openquizzdb.org)",
|
||||
"licence": "CC BY-SA",
|
||||
"rédacteur": "Philippe Bresoux",
|
||||
"difficulté": "4 / 5",
|
||||
"version": 1,
|
||||
"mise-à-jour": "2023-06-19",
|
||||
"catégorie-nom-slogan": {
|
||||
"fr": {
|
||||
"catégorie": "Nature",
|
||||
"nom": "Herbes et épices",
|
||||
"slogan": "Parfumer et donner du relief aux plats"
|
||||
},
|
||||
"en": {
|
||||
"catégorie": "Nature",
|
||||
"nom": "Herbs and spices",
|
||||
"slogan": "Flavor and give depth to dishes"
|
||||
},
|
||||
"es": {
|
||||
"catégorie": "Naturaleza",
|
||||
"nom": "Hierbas y especias",
|
||||
"slogan": "Sabor y profundidad a los platos"
|
||||
},
|
||||
"it": {
|
||||
"catégorie": "Natura",
|
||||
"nom": "Erbe e spezie",
|
||||
"slogan": "Insaporire e dare spessore ai piatti"
|
||||
},
|
||||
"de": {
|
||||
"catégorie": "Natur",
|
||||
"nom": "Kräuter und Gewürze",
|
||||
"slogan": "Gerichten Geschmack und Tiefe verleihen"
|
||||
},
|
||||
"nl": {
|
||||
"catégorie": "Natuur",
|
||||
"nom": "Kruiden en specerijen",
|
||||
"slogan": "Smaak en diepte aan gerechten"
|
||||
}
|
||||
},
|
||||
"quizz": {
|
||||
"fr": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "Quelle est la couleur du paprika, utilisé en cuisine pour son parfum âcre ?",
|
||||
"propositions": [
|
||||
"Rouge",
|
||||
"Jaune",
|
||||
"Blanche",
|
||||
"Verte"
|
||||
],
|
||||
"réponse": "Rouge",
|
||||
"anecdote": "Le paprika est une épice en poudre obtenue à partir de la graine mûre, séchée et moulue du piment doux ou poivron."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Le safran, obtenu par déshydratation, est une épice tirée de quelle variété de fleur ?",
|
||||
"propositions": [
|
||||
"Tulipe",
|
||||
"Crocus",
|
||||
"Acacia",
|
||||
"Pavot"
|
||||
],
|
||||
"réponse": "Crocus",
|
||||
"anecdote": "Le safran, poétiquement appelé or rouge, est l'épice utilisée en cuisine la plus chère au monde."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Dans l'antiquité, quelle plante aromatique composait la couronne des vainqueurs ?",
|
||||
"propositions": [
|
||||
"Thym",
|
||||
"Basilic",
|
||||
"Persil",
|
||||
"Laurier"
|
||||
],
|
||||
"réponse": "Laurier",
|
||||
"anecdote": "Dans le sport, les concours ou les prix intellectuels, le laurier (Laurus nobilis) est le symbole de la victoire, d'où l'origine du mot lauréat."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Quelle plante est utilisée au Maghreb pour la préparation du thé ?",
|
||||
"propositions": [
|
||||
"Menthe",
|
||||
"Anis",
|
||||
"Cannelle",
|
||||
"Coriandre"
|
||||
],
|
||||
"réponse": "Menthe",
|
||||
"anecdote": "Le thé à la menthe, la boisson de l'hospitalité, n'est pas seulement proposée lors des repas mais tout au long de la journée."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Quel est le principal parfum du pastis, dont le titre alcoométrique minimal est de 40% ?",
|
||||
"propositions": [
|
||||
"Cardamone",
|
||||
"Orange",
|
||||
"Menthe",
|
||||
"Anis"
|
||||
],
|
||||
"réponse": "Anis",
|
||||
"anecdote": "Lorsque l'on fait le mélange en versant l'eau, on passe alors d'une couleur ambrée assez transparente à un jaune trouble."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Quelle plante est nommée farigoule en Provence ?",
|
||||
"propositions": [
|
||||
"Marjolaine",
|
||||
"Thym",
|
||||
"Bergamote",
|
||||
"Basilic"
|
||||
],
|
||||
"réponse": "Thym",
|
||||
"anecdote": "Ces plantes rampantes ou en coussinet sont riches en huiles essentielles et, à ce titre, font partie des plantes aromatiques."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Quelle herbe est indispensable dans la sauce béarnaise ?",
|
||||
"propositions": [
|
||||
"Cerfeuil",
|
||||
"Romarin",
|
||||
"Sauge",
|
||||
"Estragon"
|
||||
],
|
||||
"réponse": "Estragon",
|
||||
"anecdote": "La sauce béarnaise est une sauce émulsifiée chaude à base de beurre clarifié, de jaune d'oeuf, d'échalote, d'estragon et de cerfeuil."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "Quel mélange contient entre autres poivre, coriandre, curcuma, fenugrec et piment ?",
|
||||
"propositions": [
|
||||
"Romarin",
|
||||
"Cumin",
|
||||
"Carvi",
|
||||
"Curry"
|
||||
],
|
||||
"réponse": "Curry",
|
||||
"anecdote": "Selon sa composition, le curry peut être très doux ou très fort (pimenté), généralement très parfumé."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Quelle noix est utilisée pour parfumer les pommes de terre et les soufflés au fromage ?",
|
||||
"propositions": [
|
||||
"Origan",
|
||||
"Gingembre",
|
||||
"Poivre",
|
||||
"Muscade"
|
||||
],
|
||||
"réponse": "Muscade",
|
||||
"anecdote": "La noix de muscade est utilisée râpée pour accommoder les viandes, less soupes, les purées de légumes et certains cocktails."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "En quelle année a été lancée la campagne de publicité « Ducros se décarcasse » ?",
|
||||
"propositions": [
|
||||
"1985",
|
||||
"1995",
|
||||
"1965",
|
||||
"1975"
|
||||
],
|
||||
"réponse": "1975",
|
||||
"anecdote": "Gilbert Ducros, industriel français, est le créateur des épices Ducros, désormais propriété du groupe américain McCormick And Company."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Sous quel nom le thym des bergers, parfois confondu avec la marjolaine, est-il connu ?",
|
||||
"propositions": [
|
||||
"Estragon",
|
||||
"Origan",
|
||||
"Ciboulette",
|
||||
"Basilic"
|
||||
],
|
||||
"réponse": "Origan",
|
||||
"anecdote": "L'origan, qui nécessite un sol léger et aéré, se multiplie par éclat de touffes au printemps ou éventuellement par semis."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "Quelle plante forme le pistou, avec l'ail et l'huile d'olive ?",
|
||||
"propositions": [
|
||||
"Cumin",
|
||||
"Marjolaine",
|
||||
"Menthe",
|
||||
"Basilic"
|
||||
],
|
||||
"réponse": "Basilic",
|
||||
"anecdote": "Le pistou constitue l'ingrédient essentiel de la soupe au pistou, une soupe de légumes frais et secs à laquelle on ajoute des pâtes."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "Laquelle de ces plantes aromatiques possède un goût légèrement citronné ?",
|
||||
"propositions": [
|
||||
"Marjolaine",
|
||||
"Menthe",
|
||||
"Absinthe",
|
||||
"Mélisse"
|
||||
],
|
||||
"réponse": "Mélisse",
|
||||
"anecdote": "La mélisse a des petites feuilles ovales gaufrées et dentelées qui exhalent un parfum doux et citronné quand on les froisse."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Quelle épice est constituée par le fruit de certaines orchidées ?",
|
||||
"propositions": [
|
||||
"Cannelle",
|
||||
"Vanille",
|
||||
"Myrte",
|
||||
"Aneth"
|
||||
],
|
||||
"réponse": "Vanille",
|
||||
"anecdote": "Pour obtenir une épice richement aromatique, la culture et la préparation de la vanille nécessitent des soins longs et attentifs."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Quel aromate est aussi considéré comme un médicament ?",
|
||||
"propositions": [
|
||||
"Thym",
|
||||
"Absinthe",
|
||||
"Ail",
|
||||
"Sauge"
|
||||
],
|
||||
"réponse": "Sauge",
|
||||
"anecdote": "Les sauges étaient considérées au Moyen Âge comme une panacée, certaines espèces possédant en effet des vertus médicinales."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Parmi ces propositions, laquelle ne désigne pas un mélange de plusieurs épices ?",
|
||||
"propositions": [
|
||||
"Curry",
|
||||
"Toute épice",
|
||||
"Cinq-parfums",
|
||||
"Garam masala"
|
||||
],
|
||||
"réponse": "Toute épice",
|
||||
"anecdote": "La graine et l'huile de nigelle sont très appréciées, en particulier des musulmans, selon qui cette plante serait une panacée."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Quelle épice extraite de la fleur d'un crocus parfume le risotto à la milanaise ?",
|
||||
"propositions": [
|
||||
"Curry",
|
||||
"Origan",
|
||||
"Curcuma",
|
||||
"Safran"
|
||||
],
|
||||
"réponse": "Safran",
|
||||
"anecdote": "Selon certains chroniqueurs gastronomiques, le risotto à la milanaise descendrait directement d'une recette médiévale du riz au safran."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Quel apaisement procure une infusion de badiane, fruit du badianier de Chine ?",
|
||||
"propositions": [
|
||||
"Toux",
|
||||
"Démangeaisons",
|
||||
"Rhumatismes",
|
||||
"Digestion"
|
||||
],
|
||||
"réponse": "Digestion",
|
||||
"anecdote": "Les fruits du badianier sont cueillis verts, avant d'être séchés au soleil où ils prennent une couleur marron rouge."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "Combien faut-il de fleurs de safran pour obtenir 500 grammes de filaments ?",
|
||||
"propositions": [
|
||||
"80 000",
|
||||
"100 000",
|
||||
"60 000",
|
||||
"40 000"
|
||||
],
|
||||
"réponse": "60 000",
|
||||
"anecdote": "Le crocus prospère dans les climats semblables à celui des maquis méditerranéens ou du chaparral nord-américain."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Avec quelle viande êtes-vous sûr de ne pas faire de fausse note à utiliser la cannelle ?",
|
||||
"propositions": [
|
||||
"Agneau",
|
||||
"Poulet",
|
||||
"Boeuf",
|
||||
"Porc"
|
||||
],
|
||||
"réponse": "Agneau",
|
||||
"anecdote": "Sur l'île de Sri Lanka, seuls les Salagama avaient le droit de toucher à la cannelle, les autres étant alors punis de mort."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Quelle épice et plante exceptionnelle est parfois appelée safran des Indes ?",
|
||||
"propositions": [
|
||||
"Pesto",
|
||||
"Origan",
|
||||
"Noix de muscade",
|
||||
"Curcuma"
|
||||
],
|
||||
"réponse": "Curcuma",
|
||||
"anecdote": "S'il est répandu dans le sud-est de l'Asie depuis l'antiquité, le curcuma est également l'objet de nombreuses études scientifiques."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "En Inde, quelles graines sont considérées comme un symbole d'immortalité ?",
|
||||
"propositions": [
|
||||
"Pavot",
|
||||
"Thym",
|
||||
"Quinoa",
|
||||
"Sésame"
|
||||
],
|
||||
"réponse": "Sésame",
|
||||
"anecdote": "Le sésame connaît un fort développement du fait de sa culture facile et des faibles coûts de production."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "Quel cousin de la marjolaine est utilisé dans la soupe de goulasch ?",
|
||||
"propositions": [
|
||||
"Cumin",
|
||||
"Origan",
|
||||
"Laurier",
|
||||
"Sauge"
|
||||
],
|
||||
"réponse": "Origan",
|
||||
"anecdote": "Le goulasch est vraisemblablement à l'origine un mets indissociable de la vie pastorale dans la Grande plaine hongroise."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "Quel nom commun utilise-t-on parfois pour désigner l'aneth ?",
|
||||
"propositions": [
|
||||
"Céleri vulgaire",
|
||||
"Fenouil bâtard",
|
||||
"Cumin noir",
|
||||
"Mauvais ail"
|
||||
],
|
||||
"réponse": "Fenouil bâtard",
|
||||
"anecdote": "L'aneth est cultivée pour ses feuilles et ses graines aromatiques, proche du fenouil par son odeur et ses propriétés."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Quelle partie du gingembre utilise-t-on dans un grand nombre de cuisines asiatiques ?",
|
||||
"propositions": [
|
||||
"Les fleurs",
|
||||
"Les feuilles",
|
||||
"Le rhizome",
|
||||
"La racine"
|
||||
],
|
||||
"réponse": "Le rhizome",
|
||||
"anecdote": "Les jeunes racines de gingembre, qui sont en fait des rhizomes, sont juteuses et charnues avec un goût très doux."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Quelle plante très ramifiée est aussi appelée herbe sacrée ?",
|
||||
"propositions": [
|
||||
"Estragon",
|
||||
"Sarriette",
|
||||
"Coriandre",
|
||||
"Sauge"
|
||||
],
|
||||
"réponse": "Sauge",
|
||||
"anecdote": "Commune en Europe, plus spécialement dans les régions méridionales, la sauge est cependant rare à l'état sauvage."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "Quelle épice originaire du Mexique a été commercialisée en Europe au XVIe siècle ?",
|
||||
"propositions": [
|
||||
"Cannelle",
|
||||
"Canille",
|
||||
"Cacao",
|
||||
"Basilic"
|
||||
],
|
||||
"réponse": "Canille",
|
||||
"anecdote": "La vanille se présente sous la forme de bâtonnets noirs et luisants, communément appelés « gousses de vanille »."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "Quelle épice, dont le fruit ressemble à une orange, est surtout cultivée en Calabre ?",
|
||||
"propositions": [
|
||||
"Estragon",
|
||||
"Sauge",
|
||||
"Sarriette",
|
||||
"Bergamote"
|
||||
],
|
||||
"réponse": "Bergamote",
|
||||
"anecdote": "Le fruit est récolté principalement pour l'huile utilisée pour moitié dans le domaine alimentaire et en cosmétique."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Quelle plante est appréciée des Allemands pour assaisonner les haricots ?",
|
||||
"propositions": [
|
||||
"Sarriette",
|
||||
"Basilic",
|
||||
"Romarin",
|
||||
"Origan"
|
||||
],
|
||||
"réponse": "Sarriette",
|
||||
"anecdote": "Les espèces de sarriettes ont comme habitat préférentiel des lieux ensoleillés aux sols calcaires, légers et bien drainés."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Quelle épice parfume les fromages comme le gouda ou encore le munster ?",
|
||||
"propositions": [
|
||||
"Carvi",
|
||||
"Cardamone",
|
||||
"Sarriette",
|
||||
"Cumin"
|
||||
],
|
||||
"réponse": "Carvi",
|
||||
"anecdote": "Le carvi, proche du fenouil, de l'anis et de l'aneth, est parfois appelé anis des Vosges ou cumin de Hollande."
|
||||
}
|
||||
]
|
||||
},
|
||||
"en": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "What is the color of paprika, used in cooking for its pungent scent ?",
|
||||
"propositions": [
|
||||
"Red",
|
||||
"Green",
|
||||
"Yellow",
|
||||
"White"
|
||||
],
|
||||
"réponse": "Red",
|
||||
"anecdote": "Paprika is a powdered spice obtained from the ripe, dried and ground seed of the sweet pepper or bell pepper."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Saffron, obtained by dehydration, is a spice obtained from which variety of flower ?",
|
||||
"propositions": [
|
||||
"Poppy",
|
||||
"Tulip",
|
||||
"Acacia",
|
||||
"Crocus"
|
||||
],
|
||||
"réponse": "Crocus",
|
||||
"anecdote": "Saffron, poetically called red gold, is the most expensive spice used in cooking in the world."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "In antiquity, which aromatic plant made up the crown of the victors ?",
|
||||
"propositions": [
|
||||
"Parsley",
|
||||
"Thyme",
|
||||
"Laurier",
|
||||
"Basil"
|
||||
],
|
||||
"réponse": "Laurier",
|
||||
"anecdote": "In sports, competitions or intellectual prizes, the laurel (Laurus nobilis) is the symbol of victory, hence the origin of the word winner."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "What plant is used in the Maghreb for the preparation of tea ?",
|
||||
"propositions": [
|
||||
"Coriander",
|
||||
"Anise",
|
||||
"Mint",
|
||||
"Cinnamon"
|
||||
],
|
||||
"réponse": "Mint",
|
||||
"anecdote": "Mint tea, the drink of hospitality, is not only offered with meals but throughout the day."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "What is the main flavor of pastis, which has a minimum alcoholic strength of 40% ?",
|
||||
"propositions": [
|
||||
"Coriander",
|
||||
"Anise",
|
||||
"Mint",
|
||||
"Cardamom"
|
||||
],
|
||||
"réponse": "Anise",
|
||||
"anecdote": "When the mixture is made by pouring in the water, it goes from a fairly transparent amber color to a cloudy yellow."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Which plant is called farigoule in Provence ?",
|
||||
"propositions": [
|
||||
"Bergamot",
|
||||
"Basil",
|
||||
"Marjoram",
|
||||
"Thyme"
|
||||
],
|
||||
"réponse": "Thyme",
|
||||
"anecdote": "These creeping or cushion plants are rich in essential oils and, as such, are part of aromatic plants."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Which herb is essential in the Béarnaise sauce ?",
|
||||
"propositions": [
|
||||
"Sage",
|
||||
"Rosemary",
|
||||
"Tarragon",
|
||||
"Chervil"
|
||||
],
|
||||
"réponse": "Tarragon",
|
||||
"anecdote": "Béarnaise sauce is a hot emulsified sauce made from clarified butter, egg yolk, shallot, tarragon and chervil."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "Which mixture contains among other pepper, coriander, turmeric, fenugreek and chilli ?",
|
||||
"propositions": [
|
||||
"Cumin",
|
||||
"Caraway",
|
||||
"Rosemary",
|
||||
"Curry"
|
||||
],
|
||||
"réponse": "Curry",
|
||||
"anecdote": "Depending on its composition, the curry can be very mild or very strong (spicy), usually very fragrant."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Which nut is used to flavor potatoes and cheese soufflés ?",
|
||||
"propositions": [
|
||||
"Nutmeg",
|
||||
"Pepper",
|
||||
"Oregano",
|
||||
"Ginger"
|
||||
],
|
||||
"réponse": "Nutmeg",
|
||||
"anecdote": "Nutmeg is used grated to accommodate meats, soups, vegetable purees and some cocktails."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "In which year was the “Ducros s'décarcasse” advertising campaign launched ?",
|
||||
"propositions": [
|
||||
"1995",
|
||||
"1975",
|
||||
"1985",
|
||||
"1965"
|
||||
],
|
||||
"réponse": "1975",
|
||||
"anecdote": "Gilbert Ducros, a French industrialist, is the creator of Ducros spices, now owned by the American group McCormick And Company."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Under what name is shepherd's thyme, sometimes confused with marjoram, better known ?",
|
||||
"propositions": [
|
||||
"Tarragon",
|
||||
"Chives",
|
||||
"Oregano",
|
||||
"Basil"
|
||||
],
|
||||
"réponse": "Oregano",
|
||||
"anecdote": "Oregano, which requires light and airy soil, multiplies by bursting tufts in spring or possibly by sowing."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "Which plant forms the pesto, with garlic and olive oil ?",
|
||||
"propositions": [
|
||||
"Basil",
|
||||
"Marjoram",
|
||||
"Mint",
|
||||
"Cumin"
|
||||
],
|
||||
"réponse": "Basil",
|
||||
"anecdote": "Pesto is the essential ingredient in pesto soup, a soup of fresh and dried vegetables to which pasta is added."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "Which of these aromatic plants has a slightly lemony taste ?",
|
||||
"propositions": [
|
||||
"Mint",
|
||||
"Marjoram",
|
||||
"Absinthe",
|
||||
"Lemon balm"
|
||||
],
|
||||
"réponse": "Lemon balm",
|
||||
"anecdote": "Lemon balm has small, oval, embossed, serrated leaves that give off a sweet, lemony scent when crumpled."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "What spice is made up of the fruit of certain orchids ?",
|
||||
"propositions": [
|
||||
"Vanilla",
|
||||
"Myrtle",
|
||||
"Cinnamon",
|
||||
"Dill"
|
||||
],
|
||||
"réponse": "Vanilla",
|
||||
"anecdote": "To obtain a richly aromatic spice, the cultivation and preparation of vanilla requires long and careful care."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Which flavoring is also considered a medicine ?",
|
||||
"propositions": [
|
||||
"Garlic",
|
||||
"Thyme",
|
||||
"Sage",
|
||||
"Absinthe"
|
||||
],
|
||||
"réponse": "Sage",
|
||||
"anecdote": "Sages were considered in the Middle Ages as a panacea, some species indeed possessing medicinal properties."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Among these proposals, which does not designate a mixture of several spices ?",
|
||||
"propositions": [
|
||||
"Five-scent",
|
||||
"Any spice",
|
||||
"Garam masala",
|
||||
"Curry"
|
||||
],
|
||||
"réponse": "Any spice",
|
||||
"anecdote": "The seed and black seed oil are very popular, especially among Muslims, who believe this plant is a panacea."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "What spice extracted from the flower of a crocus flavor Milanese risotto ?",
|
||||
"propositions": [
|
||||
"Curry",
|
||||
"Safran",
|
||||
"Oregano",
|
||||
"Turmeric"
|
||||
],
|
||||
"réponse": "Safran",
|
||||
"anecdote": "According to some food columnists, Milanese risotto comes directly from a medieval recipe for rice with saffron."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "What appeasement provides an infusion of star anise, fruit of the Chinese badian tree ?",
|
||||
"propositions": [
|
||||
"Rheumatism",
|
||||
"Cough",
|
||||
"Itching",
|
||||
"Digestion"
|
||||
],
|
||||
"réponse": "Digestion",
|
||||
"anecdote": "The fruits of the badian tree are picked green, before being dried in the sun where they take a reddish brown color."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "How many saffron flowers does it take to obtain 500 grams of filaments ?",
|
||||
"propositions": [
|
||||
"40,000",
|
||||
"80,000",
|
||||
"100,000",
|
||||
"60,000"
|
||||
],
|
||||
"réponse": "60,000",
|
||||
"anecdote": "The crocus thrives in climates similar to that of the Mediterranean scrub or North American chaparral."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "What meat are you sure you won't miss out on using cinnamon ?",
|
||||
"propositions": [
|
||||
"Chicken",
|
||||
"Beef",
|
||||
"Lamb",
|
||||
"Pork"
|
||||
],
|
||||
"réponse": "Lamb",
|
||||
"anecdote": "On the island of Sri Lanka, only the Salagama had the right to touch cinnamon, the others being punished by death."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "What exceptional spice and plant is sometimes called Indian saffron ?",
|
||||
"propositions": [
|
||||
"Nutmeg",
|
||||
"Pesto",
|
||||
"Turmeric",
|
||||
"Oregano"
|
||||
],
|
||||
"réponse": "Turmeric",
|
||||
"anecdote": "While it has been prevalent in Southeast Asia since ancient times, turmeric has also been the subject of numerous scientific studies."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "In India, which seeds are considered a symbol of immortality ?",
|
||||
"propositions": [
|
||||
"Poppy",
|
||||
"Quinoa",
|
||||
"Sesame",
|
||||
"Thyme"
|
||||
],
|
||||
"réponse": "Sesame",
|
||||
"anecdote": "Sesame is experiencing strong development due to its easy cultivation and low production costs."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "Which cousin of marjoram is used in goulash soup ?",
|
||||
"propositions": [
|
||||
"Sage",
|
||||
"Oregano",
|
||||
"Cumin",
|
||||
"Laurier"
|
||||
],
|
||||
"réponse": "Oregano",
|
||||
"anecdote": "Goulash is probably originally a delicacy inseparable from pastoral life in the Great Hungarian Plain."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "What common name is sometimes used to refer to dill ?",
|
||||
"propositions": [
|
||||
"Bad garlic",
|
||||
"Common celery",
|
||||
"Bastard fennel",
|
||||
"Black cumin"
|
||||
],
|
||||
"réponse": "Bastard fennel",
|
||||
"anecdote": "Dill is cultivated for its leaves and its aromatic seeds, close to fennel by its smell and its properties."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "What part of ginger is used in many Asian cuisines ?",
|
||||
"propositions": [
|
||||
"The root",
|
||||
"The flowers",
|
||||
"The leaves",
|
||||
"The rhizome"
|
||||
],
|
||||
"réponse": "The rhizome",
|
||||
"anecdote": "Young ginger roots, which are actually rhizomes, are juicy and fleshy with a very sweet taste."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Which highly branched plant is also called the sacred herb ?",
|
||||
"propositions": [
|
||||
"Coriander",
|
||||
"Savory",
|
||||
"Sage",
|
||||
"Tarragon"
|
||||
],
|
||||
"réponse": "Sage",
|
||||
"anecdote": "Common in Europe, especially in southern regions, sage is however rare in the wild."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "Which spice from Mexico was marketed in Europe in the 16th century ?",
|
||||
"propositions": [
|
||||
"Cinnamon",
|
||||
"Basil",
|
||||
"Cocoa",
|
||||
"Canilla"
|
||||
],
|
||||
"réponse": "Canilla",
|
||||
"anecdote": "Vanilla comes in the form of black, shiny sticks, commonly known as vanilla pods."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "Which spice, the fruit of which resembles an orange, is mainly cultivated in Calabria ?",
|
||||
"propositions": [
|
||||
"Bergamot",
|
||||
"Savory",
|
||||
"Tarragon",
|
||||
"Sage"
|
||||
],
|
||||
"réponse": "Bergamot",
|
||||
"anecdote": "The fruit is harvested mainly for the oil used for half in the food sector and in cosmetics."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Which plant is loved by Germans for seasoning beans ?",
|
||||
"propositions": [
|
||||
"Oregano",
|
||||
"Savory",
|
||||
"Rosemary",
|
||||
"Basil"
|
||||
],
|
||||
"réponse": "Savory",
|
||||
"anecdote": "The savory species prefer sunny places with calcareous, light and well-drained soils."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "What spice flavor cheeses like Gouda or Munster ?",
|
||||
"propositions": [
|
||||
"Savory",
|
||||
"Caraway",
|
||||
"Cardamom",
|
||||
"Cumin"
|
||||
],
|
||||
"réponse": "Caraway",
|
||||
"anecdote": "Caraway, close to fennel, anise and dill, is sometimes called anise from the Vosges or cumin from Holland."
|
||||
}
|
||||
]
|
||||
},
|
||||
"de": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "Welche Farbe hat Paprika, der beim Kochen wegen seines stechenden Geruchs verwendet wird ?",
|
||||
"propositions": [
|
||||
"Gelb",
|
||||
"Weiß",
|
||||
"Rot",
|
||||
"Grün"
|
||||
],
|
||||
"réponse": "Rot",
|
||||
"anecdote": "Paprika ist ein Gewürzpulver, das aus dem reifen, getrockneten und gemahlenen Samen der Paprika oder Paprika gewonnen wird."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Safran, der durch Dehydration gewonnen wird, ist ein Gewürz aus welcher Blumensorte ?",
|
||||
"propositions": [
|
||||
"Akazie",
|
||||
"Tulpe",
|
||||
"Mohn",
|
||||
"Krokus"
|
||||
],
|
||||
"réponse": "Krokus",
|
||||
"anecdote": "Safran, poetisch Rotgold genannt, ist das teuerste Gewürz der Welt, das zum Kochen verwendet wird."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Welche aromatische Pflanze bildete in der Antike die Krone der Sieger ?",
|
||||
"propositions": [
|
||||
"Basilikum",
|
||||
"Laurier",
|
||||
"Petersilie",
|
||||
"Thymian"
|
||||
],
|
||||
"réponse": "Laurier",
|
||||
"anecdote": "Bei Sportarten, Wettkämpfen oder intellektuellen Preisen ist der Lorbeer (Laurus nobilis) das Symbol des Sieges, daher der Ursprung des Wortes Gewinner."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Welche Pflanze wird im Maghreb zur Zubereitung von Tee verwendet ?",
|
||||
"propositions": [
|
||||
"Anis",
|
||||
"Koriander",
|
||||
"Zimt",
|
||||
"Minze"
|
||||
],
|
||||
"réponse": "Minze",
|
||||
"anecdote": "Minztee, das Getränk der Gastfreundschaft, wird nicht nur zu den Mahlzeiten, sondern den ganzen Tag über angeboten."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Was ist der Hauptgeschmack von Pastis mit einem Mindestalkoholgehalt von 40% ?",
|
||||
"propositions": [
|
||||
"Anis",
|
||||
"Minze",
|
||||
"Kardamom",
|
||||
"Koriander"
|
||||
],
|
||||
"réponse": "Anis",
|
||||
"anecdote": "Wenn Sie es durch Eingießen des Wassers mischen, wechseln Sie von einer ziemlich transparenten Bernsteinfarbe zu einem trüben Gelb."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Welche Pflanze heißt in der Provence Farigoule ?",
|
||||
"propositions": [
|
||||
"Bergamotte",
|
||||
"Thymian",
|
||||
"Majoran",
|
||||
"Basilikum"
|
||||
],
|
||||
"réponse": "Thymian",
|
||||
"anecdote": "Diese Kriech- oder Kissenpflanzen sind reich an ätherischen Ölen und als solche Teil aromatischer Pflanzen."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Welches Kraut ist in der Béarnaise-Sauce essentiell ?",
|
||||
"propositions": [
|
||||
"Kerbel",
|
||||
"Estragon",
|
||||
"Rosmarin",
|
||||
"Salbei"
|
||||
],
|
||||
"réponse": "Estragon",
|
||||
"anecdote": "Béarnaise-Sauce ist eine scharfe emulgierte Sauce aus geklärter Butter, Eigelb, Schalotte, Estragon und Kerbel."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "Welche Mischung enthält unter anderem Pfeffer, Koriander, Kurkuma, Bockshornklee und Chili ?",
|
||||
"propositions": [
|
||||
"Kreuzkümmel",
|
||||
"Kümmel",
|
||||
"Rosmarin",
|
||||
"Curry"
|
||||
],
|
||||
"réponse": "Curry",
|
||||
"anecdote": "Je nach Zusammensetzung kann das Curry sehr mild oder sehr stark (würzig) sein, normalerweise sehr duftend."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Mit welcher Nuss werden Kartoffeln und Käsesoufflés gewürzt ?",
|
||||
"propositions": [
|
||||
"Oregano",
|
||||
"Pfeffer",
|
||||
"Ingwer",
|
||||
"Muskatnuss"
|
||||
],
|
||||
"réponse": "Muskatnuss",
|
||||
"anecdote": "Muskatnuss wird gerieben verwendet, um Fleisch, Suppen, Gemüsepürees und einige Cocktails aufzunehmen."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "In welchem Jahr wurde die Werbekampagne „Ducros s'décarcasse“ gestartet ?",
|
||||
"propositions": [
|
||||
"1975",
|
||||
"1965",
|
||||
"1995",
|
||||
"1985"
|
||||
],
|
||||
"réponse": "1975",
|
||||
"anecdote": "Gilbert Ducros, ein französischer Industrieller, ist der Schöpfer von Ducros-Gewürzen, die jetzt der amerikanischen Gruppe McCormick And Company gehören."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Unter welchem ? ?Namen ist Hirten-Thymian, manchmal verwechselt mit Majoran, besser bekannt ?",
|
||||
"propositions": [
|
||||
"Basilikum",
|
||||
"Oregano",
|
||||
"Schnittlauch",
|
||||
"Estragon"
|
||||
],
|
||||
"réponse": "Oregano",
|
||||
"anecdote": "Oregano, das leichten und luftigen Boden benötigt, vermehrt sich, indem es im Frühjahr Büschel platzt oder möglicherweise sät."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "Welche Pflanze bildet das Pesto mit Knoblauch und Olivenöl ?",
|
||||
"propositions": [
|
||||
"Minze",
|
||||
"Kreuzkümmel",
|
||||
"Basilikum",
|
||||
"Majoran"
|
||||
],
|
||||
"réponse": "Basilikum",
|
||||
"anecdote": "Pesto ist der wesentliche Bestandteil der Pesto-Suppe, einer Suppe aus frischem und getrocknetem Gemüse, zu der Nudeln hinzugefügt werden."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "Welche dieser aromatischen Pflanzen hat einen leicht zitronigen Geschmack ?",
|
||||
"propositions": [
|
||||
"Zitronenmelisse",
|
||||
"Majoran",
|
||||
"Minze",
|
||||
"Absinth"
|
||||
],
|
||||
"réponse": "Zitronenmelisse",
|
||||
"anecdote": "Zitronenmelisse hat kleine, ovale, geprägte, gezackte Blätter, die beim Zerknittern einen süßen, zitronigen Duft abgeben."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Welches Gewürz besteht aus den Früchten bestimmter Orchideen ?",
|
||||
"propositions": [
|
||||
"Dill",
|
||||
"Myrte",
|
||||
"Vanille",
|
||||
"Zimt"
|
||||
],
|
||||
"réponse": "Vanille",
|
||||
"anecdote": "Um ein reichhaltiges aromatisches Gewürz zu erhalten, erfordert der Anbau und die Zubereitung von Vanille eine lange und sorgfältige Pflege."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Welches Aroma gilt auch als Medikament ?",
|
||||
"propositions": [
|
||||
"Absinth",
|
||||
"Salbei",
|
||||
"Thymian",
|
||||
"Knoblauch"
|
||||
],
|
||||
"réponse": "Salbei",
|
||||
"anecdote": "Salbei galt im Mittelalter als Allheilmittel, einige Arten besaßen tatsächlich medizinische Eigenschaften."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Welcher dieser Vorschläge bezeichnet nicht eine Mischung aus mehreren Gewürzen ?",
|
||||
"propositions": [
|
||||
"Curry",
|
||||
"Jedes Gewürz",
|
||||
"Garam masala",
|
||||
"Fünf-Duft"
|
||||
],
|
||||
"réponse": "Jedes Gewürz",
|
||||
"anecdote": "Der Samen und das Öl des schwarzen Samens werden besonders von Muslimen sehr geschätzt, nach denen diese Pflanze ein Allheilmittel wäre."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Welches Gewürz wird aus der Blume eines Mailänder Risottos mit Krokusgeschmack gewonnen ?",
|
||||
"propositions": [
|
||||
"Kurkuma",
|
||||
"Safran",
|
||||
"Curry",
|
||||
"Oregano"
|
||||
],
|
||||
"réponse": "Safran",
|
||||
"anecdote": "Laut einigen Foodwritern stammt das Mailänder Risotto direkt aus einem mittelalterlichen Rezept für Safranreis."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Welche Beschwichtigung liefert eine Infusion von Sternanis, Frucht des chinesischen Badianbaums ?",
|
||||
"propositions": [
|
||||
"Rheuma",
|
||||
"Verdauung",
|
||||
"Husten",
|
||||
"Juckreiz"
|
||||
],
|
||||
"réponse": "Verdauung",
|
||||
"anecdote": "Die Früchte des Badianbaums werden grün gepflückt, bevor sie in der Sonne getrocknet werden, wo sie eine rotbraune Farbe annehmen."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "Wie viele Safranblüten braucht man, um 500 Gramm Filamente zu erhalten ?",
|
||||
"propositions": [
|
||||
"80.000",
|
||||
"60.000",
|
||||
"40.000",
|
||||
"100.000"
|
||||
],
|
||||
"réponse": "60.000",
|
||||
"anecdote": "Der Krokus gedeiht in Klimazonen, die denen des Mittelmeerpeelings oder des nordamerikanischen Chaparral ähneln."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Welches Fleisch werden Sie sicher nicht verpassen, wenn Sie Zimt verwenden ?",
|
||||
"propositions": [
|
||||
"Huhn",
|
||||
"Schweinefleisch",
|
||||
"Lamm",
|
||||
"Rindfleisch"
|
||||
],
|
||||
"réponse": "Lamm",
|
||||
"anecdote": "Auf der Insel Sri Lanka hatten nur die Salagama das Recht, Zimt zu berühren, die anderen wurden mit dem Tod bestraft."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Welches außergewöhnliche Gewürz und welche außergewöhnliche Pflanze wird manchmal als indischer Safran bezeichnet ?",
|
||||
"propositions": [
|
||||
"Muskatnuss",
|
||||
"Kurkuma",
|
||||
"Pesto",
|
||||
"Oregano"
|
||||
],
|
||||
"réponse": "Kurkuma",
|
||||
"anecdote": "Während es in Südostasien seit der Antike weit verbreitet ist, war Kurkuma auch Gegenstand zahlreicher wissenschaftlicher Studien."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "Welche Samen gelten in Indien als Symbol der Unsterblichkeit ?",
|
||||
"propositions": [
|
||||
"Mohn",
|
||||
"Thymian",
|
||||
"Quinoa",
|
||||
"Sesam"
|
||||
],
|
||||
"réponse": "Sesam",
|
||||
"anecdote": "Sesam entwickelt sich aufgrund seines einfachen Anbaus und der geringen Produktionskosten stark."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "Welcher Majoran-Cousin wird in Gulaschsuppe verwendet ?",
|
||||
"propositions": [
|
||||
"Salbei",
|
||||
"Oregano",
|
||||
"Laurier",
|
||||
"Kreuzkümmel"
|
||||
],
|
||||
"réponse": "Oregano",
|
||||
"anecdote": "Gulasch ist wahrscheinlich ursprünglich eine Delikatesse, die untrennbar mit dem pastoralen Leben in der ungarischen Tiefebene verbunden ist."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "Welcher gebräuchliche Name wird manchmal verwendet, um sich auf Dill zu beziehen ?",
|
||||
"propositions": [
|
||||
"Schwarzkümmel",
|
||||
"Bastard Fenchel",
|
||||
"Schlechter Knoblauch",
|
||||
"Gemeiner Sellerie"
|
||||
],
|
||||
"réponse": "Bastard Fenchel",
|
||||
"anecdote": "Dill wird wegen seiner Blätter und seiner aromatischen Samen angebaut, die aufgrund ihres Geruchs und ihrer Eigenschaften dem Fenchel nahe kommen."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Welcher Teil Ingwer wird in vielen asiatischen Küchen verwendet ?",
|
||||
"propositions": [
|
||||
"Die Blätter",
|
||||
"Das Rhizom",
|
||||
"Die Wurzel",
|
||||
"Die Blumen"
|
||||
],
|
||||
"réponse": "Das Rhizom",
|
||||
"anecdote": "Junge Ingwerwurzeln, die eigentlich Rhizome sind, sind saftig und fleischig mit einem sehr süßen Geschmack."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Welche hochverzweigte Pflanze wird auch das heilige Kraut genannt ?",
|
||||
"propositions": [
|
||||
"Salbei",
|
||||
"Herzhaft",
|
||||
"Estragon",
|
||||
"Koriander"
|
||||
],
|
||||
"réponse": "Salbei",
|
||||
"anecdote": "Salbei ist in Europa, insbesondere in südlichen Regionen, verbreitet, in freier Wildbahn jedoch selten."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "Welches Gewürz aus Mexiko wurde im 16. Jahrhundert in Europa vermarktet ?",
|
||||
"propositions": [
|
||||
"Zimt",
|
||||
"Kakao",
|
||||
"Canilla",
|
||||
"Basilikum"
|
||||
],
|
||||
"réponse": "Canilla",
|
||||
"anecdote": "Vanille kommt in Form von schwarzen, glänzenden Stäbchen, allgemein bekannt als Vanilleschoten."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "Welches Gewürz, dessen Frucht einer Orange ähnelt, wird hauptsächlich in Kalabrien angebaut ?",
|
||||
"propositions": [
|
||||
"Herzhaft",
|
||||
"Salbei",
|
||||
"Estragon",
|
||||
"Bergamotte"
|
||||
],
|
||||
"réponse": "Bergamotte",
|
||||
"anecdote": "Die Früchte werden hauptsächlich für das Öl geerntet, das zur Hälfte im Lebensmittelbereich und in der Kosmetik verwendet wird."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Welche Pflanze lieben die Deutschen zum Würzen von Bohnen ?",
|
||||
"propositions": [
|
||||
"Oregano",
|
||||
"Basilikum",
|
||||
"Herzhaft",
|
||||
"Rosmarin"
|
||||
],
|
||||
"réponse": "Herzhaft",
|
||||
"anecdote": "Die herzhaften Arten bevorzugen sonnige Orte mit kalkhaltigen, leichten und gut durchlässigen Böden."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Welche Gewürzkäse wie Gouda oder Münster ?",
|
||||
"propositions": [
|
||||
"Herzhaft",
|
||||
"Kümmel",
|
||||
"Kardamom",
|
||||
"Kreuzkümmel"
|
||||
],
|
||||
"réponse": "Kümmel",
|
||||
"anecdote": "Kümmel, in der Nähe von Fenchel, Anis und Dill, wird manchmal Anis aus den Vogesen oder Kreuzkümmel aus Holland genannt."
|
||||
}
|
||||
]
|
||||
},
|
||||
"es": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "¿De qué color es el pimentón, utilizado en la cocina por su olor acre ?",
|
||||
"propositions": [
|
||||
"Verde",
|
||||
"Blanco",
|
||||
"Amarillo",
|
||||
"Rojo"
|
||||
],
|
||||
"réponse": "Rojo",
|
||||
"anecdote": "El pimentón es una especia en polvo obtenida de la semilla madura, seca y molida del pimiento dulce o morrón."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "El azafrán, obtenido por deshidratación, ¿se obtiene una especia de qué variedad de flor ?",
|
||||
"propositions": [
|
||||
"Tulipán",
|
||||
"Crocus",
|
||||
"Acacia",
|
||||
"Poppy"
|
||||
],
|
||||
"réponse": "Crocus",
|
||||
"anecdote": "El azafrán, poéticamente llamado oro rojo, es la especia más cara utilizada en la cocina del mundo."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "En la antigüedad, ¿qué planta aromática constituía la corona de los vencedores ?",
|
||||
"propositions": [
|
||||
"Laurier",
|
||||
"Tomillo",
|
||||
"Perejil ","Persil",
|
||||
"Albahaca"
|
||||
],
|
||||
"réponse": "Laurier",
|
||||
"anecdote": "En los deportes, competiciones o premios intelectuales, el laurel (Laurus nobilis) es el símbolo de la victoria, de ahí el origen de la palabra ganador."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "¿Qué planta se utiliza en el Magreb para la preparación del té ?",
|
||||
"propositions": [
|
||||
"Menta",
|
||||
"Canela",
|
||||
"Anís",
|
||||
"Cilantro"
|
||||
],
|
||||
"réponse": "Menta",
|
||||
"anecdote": "El té de menta, la bebida de la hospitalidad, no solo se ofrece con las comidas sino durante todo el día."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "¿Cuál es el sabor principal de la pastis, que tiene un grado alcohólico mínimo del 40% ?",
|
||||
"propositions": [
|
||||
"Cilantro",
|
||||
"Anís",
|
||||
"Menta",
|
||||
"Cardamomo"
|
||||
],
|
||||
"réponse": "Anís",
|
||||
"anecdote": "Cuando lo mezclas vertiendo agua, pasas de un color ámbar bastante transparente a un amarillo turbio."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "¿Qué planta se llama farigoule en Provenza ?",
|
||||
"propositions": [
|
||||
"Mejorana",
|
||||
"Albahaca",
|
||||
"Bergamota",
|
||||
"Tomillo"
|
||||
],
|
||||
"réponse": "Tomillo",
|
||||
"anecdote": "Estas plantas rastreras o colchonetas son ricas en aceites esenciales y, como tales, forman parte de plantas aromáticas."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "¿Qué hierba es imprescindible en la salsa bearnesa ?",
|
||||
"propositions": [
|
||||
"Sage",
|
||||
"Estragón",
|
||||
"Romero",
|
||||
"Chervil"
|
||||
],
|
||||
"réponse": "Estragón",
|
||||
"anecdote": "La salsa bearnesa es una salsa emulsionada caliente hecha de mantequilla clarificada, yema de huevo, chalota, estragón y perifollo."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "¿Qué mezcla contiene, entre otros, pimienta, cilantro, cúrcuma, fenogreco y guindilla ?",
|
||||
"propositions": [
|
||||
"Alcaravea",
|
||||
"Curry",
|
||||
"Comino",
|
||||
"Romero"
|
||||
],
|
||||
"réponse": "Curry",
|
||||
"anecdote": "Dependiendo de su composición, el curry puede ser muy suave o muy fuerte (picante), normalmente muy fragante."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "¿Qué nuez se utiliza para dar sabor a los soufflés de patatas y queso ?",
|
||||
"propositions": [
|
||||
"Pimienta",
|
||||
"Orégano",
|
||||
"Nuez moscada",
|
||||
"Jengibre"
|
||||
],
|
||||
"réponse": "Nuez moscada",
|
||||
"anecdote": "La nuez moscada se utiliza rallada para dar cabida a carnes, sopas, purés de verduras y algunos cócteles."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "¿En qué año se lanzó la campaña publicitaria “Ducros s'décarcasse” ?",
|
||||
"propositions": [
|
||||
"1985",
|
||||
"1975",
|
||||
"1995",
|
||||
"1965"
|
||||
],
|
||||
"réponse": "1975",
|
||||
"anecdote": "Gilbert Ducros, un industrial francés, es el creador de las especias Ducros, ahora propiedad del grupo estadounidense McCormick And Company."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "¿Con qué nombre se conoce mejor el tomillo de pastor, a veces confundido con mejorana ?",
|
||||
"propositions": [
|
||||
"Estragón",
|
||||
"Cebollino",
|
||||
"Albahaca",
|
||||
"Orégano"
|
||||
],
|
||||
"réponse": "Orégano",
|
||||
"anecdote": "El orégano, que requiere un suelo ligero y aireado, se multiplica al reventar mechones en primavera o posiblemente al sembrar."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "¿Qué planta forma el pesto, con ajo y aceite de oliva ?",
|
||||
"propositions": [
|
||||
"Menta",
|
||||
"Comino",
|
||||
"Albahaca",
|
||||
"Mejorana"
|
||||
],
|
||||
"réponse": "Albahaca",
|
||||
"anecdote": "El pesto es el ingrediente esencial de la sopa de pesto, una sopa de verduras frescas y secas a la que se le añade pasta."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "¿Cuál de estas plantas aromáticas tiene un sabor ligeramente a limón ?",
|
||||
"propositions": [
|
||||
"Mejorana",
|
||||
"Absenta",
|
||||
"Bálsamo de limón",
|
||||
"Menta"
|
||||
],
|
||||
"réponse": "Bálsamo de limón",
|
||||
"anecdote": "El bálsamo de limón tiene hojas pequeñas, ovaladas, en relieve y dentadas que desprenden un dulce aroma a limón cuando se arrugan."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "¿Qué especia se compone del fruto de determinadas orquídeas ?",
|
||||
"propositions": [
|
||||
"Vainilla",
|
||||
"Canela",
|
||||
"Eneldo",
|
||||
"Myrtle"
|
||||
],
|
||||
"réponse": "Vainilla",
|
||||
"anecdote": "Para obtener una especia ricamente aromática, el cultivo y preparación de la vainilla requiere un cuidado prolongado y cuidadoso."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "¿Qué saborizante también se considera un medicamento ?",
|
||||
"propositions": [
|
||||
"Absenta",
|
||||
"Tomillo",
|
||||
"Ajo ","Ail",
|
||||
"Sage"
|
||||
],
|
||||
"réponse": "Sage",
|
||||
"anecdote": "Los sabios fueron considerados en la Edad Media como una panacea, algunas especies de hecho poseían propiedades medicinales."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Entre estas propuestas, ¿cuál no designa una mezcla de varias especias ?",
|
||||
"propositions": [
|
||||
"Cualquier especia",
|
||||
"Cinco fragancias",
|
||||
"Garam masala",
|
||||
"Curry"
|
||||
],
|
||||
"réponse": "Cualquier especia",
|
||||
"anecdote": "La semilla y el aceite de semilla negra son muy apreciados, en particular por los musulmanes, para quienes esta planta sería una panacea."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "¿Qué especia se extrae de la flor de un risotto milanés sabor azafrán ?",
|
||||
"propositions": [
|
||||
"Safran",
|
||||
"Orégano",
|
||||
"Cúrcuma",
|
||||
"Curry"
|
||||
],
|
||||
"réponse": "Safran",
|
||||
"anecdote": "Según algunos escritores gastronómicos, el risotto milanés proviene directamente de una receta medieval de arroz con azafrán."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "¿Qué apaciguamiento proporciona una infusión de anís estrellado, fruto del árbol badian chino ?",
|
||||
"propositions": [
|
||||
"Reumatismo",
|
||||
"Tos ","Toux",
|
||||
"Prurito",
|
||||
"Digestión"
|
||||
],
|
||||
"réponse": "Digestión",
|
||||
"anecdote": "Los frutos del árbol badian se recogen de color verde, antes de secarse al sol donde toman un color marrón rojizo."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "¿Cuántas flores de azafrán se necesitan para obtener 500 gramos de filamentos ?",
|
||||
"propositions": [
|
||||
"60,000",
|
||||
"100,000",
|
||||
"40.000",
|
||||
"80,000"
|
||||
],
|
||||
"réponse": "60,000",
|
||||
"anecdote": "El azafrán prospera en climas similares a los del matorral mediterráneo o el chaparral de América del Norte."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "¿Qué carne estás seguro de que no te perderás de usar canela ?",
|
||||
"propositions": [
|
||||
"Cerdo",
|
||||
"Carne de res",
|
||||
"Pollo",
|
||||
"Cordero"
|
||||
],
|
||||
"réponse": "Cordero",
|
||||
"anecdote": "En la isla de Sri Lanka, solo los Salagama tenían derecho a tocar la canela, los demás eran castigados con la muerte."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "¿Qué especia y planta excepcionales a veces se llama azafrán indio ?",
|
||||
"propositions": [
|
||||
"Pesto",
|
||||
"Orégano",
|
||||
"Nuez moscada",
|
||||
"Cúrcuma"
|
||||
],
|
||||
"réponse": "Cúrcuma",
|
||||
"anecdote": "Si bien ha prevalecido en el sudeste asiático desde la antigüedad, la cúrcuma también ha sido objeto de numerosos estudios científicos."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "En India, ¿qué semillas se consideran símbolo de inmortalidad ?",
|
||||
"propositions": [
|
||||
"Tomillo",
|
||||
"Quinua",
|
||||
"Sésamo",
|
||||
"Poppy"
|
||||
],
|
||||
"réponse": "Sésamo",
|
||||
"anecdote": "El sésamo está experimentando un fuerte desarrollo debido a su fácil cultivo y bajos costos de producción."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "¿Qué primo de la mejorana se usa en la sopa de gulash ?",
|
||||
"propositions": [
|
||||
"Sage",
|
||||
"Laurier",
|
||||
"Comino",
|
||||
"Orégano"
|
||||
],
|
||||
"réponse": "Orégano",
|
||||
"anecdote": "El gulash es probablemente originalmente un manjar inseparable de la vida pastoral en la Gran Llanura Húngara."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "¿Qué nombre común se usa a veces para referirse al eneldo ?",
|
||||
"propositions": [
|
||||
"Hinojo bastardo",
|
||||
"Comino negro",
|
||||
"Ajo malo",
|
||||
"Apio común"
|
||||
],
|
||||
"réponse": "Hinojo bastardo",
|
||||
"anecdote": "El eneldo se cultiva por sus hojas y sus semillas aromáticas, cercano al hinojo por su olor y sus propiedades."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "¿Qué parte del jengibre se utiliza en muchas cocinas asiáticas ?",
|
||||
"propositions": [
|
||||
"Las flores",
|
||||
"El rizoma",
|
||||
"La raíz",
|
||||
"Las hojas"
|
||||
],
|
||||
"réponse": "El rizoma",
|
||||
"anecdote": "Las raíces jóvenes de jengibre, que en realidad son rizomas, son jugosas y carnosas con un sabor muy dulce."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "¿Qué planta muy ramificada también se llama hierba sagrada ?",
|
||||
"propositions": [
|
||||
"Estragón",
|
||||
"Cilantro",
|
||||
"Savory",
|
||||
"Sage"
|
||||
],
|
||||
"réponse": "Sage",
|
||||
"anecdote": "Sin embargo, común en Europa, especialmente en las regiones del sur, la salvia es rara en la naturaleza."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "¿Qué especia de México se comercializó en Europa en el siglo XVI ?",
|
||||
"propositions": [
|
||||
"Canilla",
|
||||
"Cacao",
|
||||
"Canela",
|
||||
"Albahaca"
|
||||
],
|
||||
"réponse": "Canilla",
|
||||
"anecdote": "La vainilla viene en forma de barras negras brillantes, comúnmente conocidas como vainas de vainilla."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "¿Qué especia, cuyo fruto se asemeja a una naranja, se cultiva principalmente en Calabria ?",
|
||||
"propositions": [
|
||||
"Savory",
|
||||
"Sage",
|
||||
"Estragón",
|
||||
"Bergamota"
|
||||
],
|
||||
"réponse": "Bergamota",
|
||||
"anecdote": "La fruta se cosecha principalmente por el aceite utilizado por la mitad en el sector alimentario y en cosmética."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "¿Qué planta adoran los alemanes para condimentar frijoles ?",
|
||||
"propositions": [
|
||||
"Orégano",
|
||||
"Savory",
|
||||
"Romero",
|
||||
"Albahaca"
|
||||
],
|
||||
"réponse": "Savory",
|
||||
"anecdote": "Las especies saladas prefieren lugares soleados con suelos calcáreos, ligeros y bien drenados."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "¿Qué quesos de sabor especiado como Gouda o Munster ?",
|
||||
"propositions": [
|
||||
"Comino",
|
||||
"Cardamomo",
|
||||
"Alcaravea",
|
||||
"Savory"
|
||||
],
|
||||
"réponse": "Alcaravea",
|
||||
"anecdote": "La alcaravea, cercana al hinojo, el anís y el eneldo, a veces se llama anís de los Vosgos o comino de Holanda."
|
||||
}
|
||||
]
|
||||
},
|
||||
"it": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "Di che colore è la paprika, usata in cucina per il suo profumo pungente ?",
|
||||
"propositions": [
|
||||
"Verde",
|
||||
"Bianco",
|
||||
"Rosso",
|
||||
"Giallo"
|
||||
],
|
||||
"réponse": "Rosso",
|
||||
"anecdote": "La paprika è una spezia in polvere ottenuta dal seme maturo, essiccato e macinato del peperone dolce o peperone."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Lo zafferano, ottenuto per disidratazione, è una spezia ottenuta da quale varietà di fiore ?",
|
||||
"propositions": [
|
||||
"Papavero",
|
||||
"Tulipano",
|
||||
"Crocus",
|
||||
"Acacia"
|
||||
],
|
||||
"réponse": "Crocus",
|
||||
"anecdote": "Lo zafferano, poeticamente chiamato oro rosso, è la spezia più costosa usata in cucina nel mondo."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Quale pianta aromatica componeva nell'antichità la corona dei vincitori ?",
|
||||
"propositions": [
|
||||
"Basilico",
|
||||
"Timo",
|
||||
"Laurier",
|
||||
"Prezzemolo"
|
||||
],
|
||||
"réponse": "Laurier",
|
||||
"anecdote": "Nello sport, nelle competizioni o nei premi intellettuali, l'alloro (Laurus nobilis) è il simbolo della vittoria, da qui l'origine della parola vincitore."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Quale pianta viene utilizzata nel Maghreb per la preparazione del tè ?",
|
||||
"propositions": [
|
||||
"Menta",
|
||||
"Cannella",
|
||||
"Coriandolo",
|
||||
"Anice"
|
||||
],
|
||||
"réponse": "Menta",
|
||||
"anecdote": "Il tè alla menta, la bevanda dell'ospitalità, non viene offerto solo ai pasti ma per tutta la giornata."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Qual è il sapore principale del pastis, che ha un titolo alcolometrico minimo del 40% ?",
|
||||
"propositions": [
|
||||
"Coriandolo",
|
||||
"Cardamomo",
|
||||
"Menta",
|
||||
"Anice"
|
||||
],
|
||||
"réponse": "Anice",
|
||||
"anecdote": "Quando si mescola versando l'acqua si passa da un colore ambrato abbastanza trasparente ad un giallo torbido."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Quale pianta si chiama farigoule in Provenza ?",
|
||||
"propositions": [
|
||||
"Basilico",
|
||||
"Bergamotto",
|
||||
"Timo",
|
||||
"Maggiorana"
|
||||
],
|
||||
"réponse": "Timo",
|
||||
"anecdote": "Queste piante rampicanti o cuscino sono ricche di oli essenziali e, come tali, fanno parte delle piante aromatiche."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Qual è l'erba essenziale nella salsa bernese ?",
|
||||
"propositions": [
|
||||
"Sage",
|
||||
"Dragoncello",
|
||||
"Rosmarino",
|
||||
"Cerfoglio"
|
||||
],
|
||||
"réponse": "Dragoncello",
|
||||
"anecdote": "La salsa bernese è una salsa calda emulsionata a base di burro chiarificato, tuorlo d'uovo, scalogno, dragoncello e cerfoglio."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "Quale miscela contiene tra l'altro pepe, coriandolo, curcuma, fieno greco e peperoncino ?",
|
||||
"propositions": [
|
||||
"Cumino",
|
||||
"Curry",
|
||||
"Rosmarino",
|
||||
"Cumino"
|
||||
],
|
||||
"réponse": "Curry",
|
||||
"anecdote": "A seconda della sua composizione, il curry può essere molto dolce o molto forte (piccante), solitamente molto profumato."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Quale noce si usa per insaporire patate e soufflé al formaggio ?",
|
||||
"propositions": [
|
||||
"Zenzero",
|
||||
"Origano",
|
||||
"Pepe",
|
||||
"Noce moscata"
|
||||
],
|
||||
"réponse": "Noce moscata",
|
||||
"anecdote": "La noce moscata viene utilizzata grattugiata per accogliere carni, zuppe, puree di verdure e alcuni cocktail."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "In che anno è stata lanciata la campagna pubblicitaria “Ducros s'décarcasse” ?",
|
||||
"propositions": [
|
||||
"1965",
|
||||
"1975",
|
||||
"1995",
|
||||
"1985"
|
||||
],
|
||||
"réponse": "1975",
|
||||
"anecdote": "Gilbert Ducros, un industriale francese, è il creatore delle spezie Ducros, ora di proprietà del gruppo americano McCormick And Company."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Con quale nome è meglio conosciuto il timo del pastore, a volte confuso con la maggiorana ?",
|
||||
"propositions": [
|
||||
"Dragoncello",
|
||||
"Basilico",
|
||||
"Erba cipollina",
|
||||
"Origano"
|
||||
],
|
||||
"réponse": "Origano",
|
||||
"anecdote": "L'origano, che necessita di terreno leggero e arioso, si moltiplica facendo scoppiare i cespi in primavera o eventualmente per semina."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "Quale pianta forma il pesto, con aglio e olio d'oliva ?",
|
||||
"propositions": [
|
||||
"Maggiorana",
|
||||
"Menta",
|
||||
"Cumino",
|
||||
"Basilico"
|
||||
],
|
||||
"réponse": "Basilico",
|
||||
"anecdote": "Il pesto è l'ingrediente essenziale della zuppa al pesto, una zuppa di verdure fresche e secche a cui viene aggiunta la pasta."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "Quale di queste piante aromatiche ha un sapore leggermente di limone ?",
|
||||
"propositions": [
|
||||
"Maggiorana",
|
||||
"Assenzio",
|
||||
"Melissa",
|
||||
"Menta"
|
||||
],
|
||||
"réponse": "Melissa",
|
||||
"anecdote": "La melissa ha foglie piccole, ovali, in rilievo e seghettate che emanano un dolce profumo di limone quando sono sgualcite."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Quale spezia è composta dal frutto di certe orchidee ?",
|
||||
"propositions": [
|
||||
"Mirto",
|
||||
"Cannella",
|
||||
"Dill",
|
||||
"Vaniglia"
|
||||
],
|
||||
"réponse": "Vaniglia",
|
||||
"anecdote": "Per ottenere una spezia riccamente aromatica, la coltivazione e la preparazione della vaniglia richiede una cura lunga e attenta."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Quale aroma è anche considerato un medicinale ?",
|
||||
"propositions": [
|
||||
"Sage",
|
||||
"Assenzio",
|
||||
"Aglio",
|
||||
"Timo"
|
||||
],
|
||||
"réponse": "Sage",
|
||||
"anecdote": "I saggi erano considerati nel Medioevo una panacea, alcune specie possedevano effettivamente proprietà medicinali."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Tra queste proposte, quale non designa una miscela di più spezie ?",
|
||||
"propositions": [
|
||||
"Curry",
|
||||
"Cinque profumi",
|
||||
"Qualsiasi spezia",
|
||||
"Garam masala"
|
||||
],
|
||||
"réponse": "Qualsiasi spezia",
|
||||
"anecdote": "Il seme e l'olio di seme nero sono molto apprezzati, in particolare dai musulmani, secondo i quali questa pianta sarebbe una panacea."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Quale spezia estratta dal fiore di un risotto alla milanese al gusto di croco ?",
|
||||
"propositions": [
|
||||
"Origano",
|
||||
"Curcuma",
|
||||
"Safran",
|
||||
"Curry"
|
||||
],
|
||||
"réponse": "Safran",
|
||||
"anecdote": "Secondo alcuni food writer, il risotto alla milanese deriva direttamente da una ricetta medievale del riso allo zafferano."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Quale appeasement fornisce un infuso di anice stellato, frutto dell'albero della badia cinese ?",
|
||||
"propositions": [
|
||||
"Prurito",
|
||||
"Digestione",
|
||||
"Tosse",
|
||||
"Reumatismi"
|
||||
],
|
||||
"réponse": "Digestione",
|
||||
"anecdote": "I frutti della badiana vengono raccolti verdi, prima di essere essiccati al sole dove assumono un colore bruno rossastro."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "Quanti fiori di zafferano ci vogliono per ottenere 500 grammi di filamenti ?",
|
||||
"propositions": [
|
||||
"100.000",
|
||||
"40.000",
|
||||
"60.000",
|
||||
"80.000"
|
||||
],
|
||||
"réponse": "60.000",
|
||||
"anecdote": "Il croco prospera in climi simili a quello della macchia mediterranea o chaparral nordamericano."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Quale carne sei sicuro di non perdere usando la cannella ?",
|
||||
"propositions": [
|
||||
"Maiale",
|
||||
"Agnello",
|
||||
"Pollo",
|
||||
"Manzo"
|
||||
],
|
||||
"réponse": "Agnello",
|
||||
"anecdote": "Nell'isola dello Sri Lanka solo i Salagama avevano il diritto di toccare la cannella, gli altri venivano puniti con la morte."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Quale spezia e pianta eccezionale viene talvolta chiamata zafferano indiano ?",
|
||||
"propositions": [
|
||||
"Noce moscata",
|
||||
"Pesto",
|
||||
"Curcuma",
|
||||
"Origano"
|
||||
],
|
||||
"réponse": "Curcuma",
|
||||
"anecdote": "Sebbene sia stata prevalente nel sud-est asiatico sin dai tempi antichi, la curcuma è stata anche oggetto di numerosi studi scientifici."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "In India, quali semi sono considerati un simbolo di immortalità ?",
|
||||
"propositions": [
|
||||
"Timo",
|
||||
"Sesamo",
|
||||
"Quinoa",
|
||||
"Papavero"
|
||||
],
|
||||
"réponse": "Sesamo",
|
||||
"anecdote": "Il sesamo sta vivendo un forte sviluppo grazie alla sua facile coltivazione e ai bassi costi di produzione."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "Quale cugino della maggiorana si usa nella zuppa di gulasch ?",
|
||||
"propositions": [
|
||||
"Cumino",
|
||||
"Sage",
|
||||
"Laurier",
|
||||
"Origano"
|
||||
],
|
||||
"réponse": "Origano",
|
||||
"anecdote": "Il gulasch è probabilmente in origine una prelibatezza inseparabile dalla vita pastorale nella Grande Pianura Ungherese."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "Quale nome comune a volte viene usato per riferirsi all'aneto ?",
|
||||
"propositions": [
|
||||
"Cumino nero",
|
||||
"Aglio cattivo",
|
||||
"Finocchietto bastardo",
|
||||
"Sedano comune"
|
||||
],
|
||||
"réponse": "Finocchietto bastardo",
|
||||
"anecdote": "L'aneto è coltivato per le sue foglie e per i suoi semi aromatici, vicino al finocchio per il suo profumo e le sue proprietà."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Quale parte di zenzero viene utilizzata in molte cucine asiatiche ?",
|
||||
"propositions": [
|
||||
"Le foglie",
|
||||
"Il rizoma",
|
||||
"I fiori",
|
||||
"La radice"
|
||||
],
|
||||
"réponse": "Il rizoma",
|
||||
"anecdote": "Le giovani radici di zenzero, che in realtà sono rizomi, sono succose e carnose con un sapore molto dolce."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Quale pianta altamente ramificata è anche chiamata erba sacra ?",
|
||||
"propositions": [
|
||||
"Sage",
|
||||
"Dragoncello",
|
||||
"Coriandolo",
|
||||
"Salato"
|
||||
],
|
||||
"réponse": "Sage",
|
||||
"anecdote": "Comune in Europa, soprattutto nelle regioni meridionali, la salvia è comunque rara in natura."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "Quale spezia proveniente dal Messico è stata commercializzata in Europa nel XVI secolo ?",
|
||||
"propositions": [
|
||||
"Cacao",
|
||||
"Basilico",
|
||||
"Canilla",
|
||||
"Cannella"
|
||||
],
|
||||
"réponse": "Canilla",
|
||||
"anecdote": "La vaniglia si presenta sotto forma di bastoncini neri e lucenti, comunemente noti come baccelli di vaniglia."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "Quale spezia, il cui frutto ricorda un'arancia, è coltivata principalmente in Calabria ?",
|
||||
"propositions": [
|
||||
"Bergamotto",
|
||||
"Dragoncello",
|
||||
"Salato",
|
||||
"Sage"
|
||||
],
|
||||
"réponse": "Bergamotto",
|
||||
"anecdote": "Il frutto viene raccolto principalmente per l'olio utilizzato per metà nel settore alimentare e nella cosmetica."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Quale pianta è amata dai tedeschi per condire i fagioli ?",
|
||||
"propositions": [
|
||||
"Rosmarino",
|
||||
"Salato",
|
||||
"Origano",
|
||||
"Basilico"
|
||||
],
|
||||
"réponse": "Salato",
|
||||
"anecdote": "Le specie saporite prediligono luoghi soleggiati con terreni calcarei, leggeri e ben drenati."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Quali formaggi aromatizzati alle spezie come il Gouda o il Munster ?",
|
||||
"propositions": [
|
||||
"Cardamomo",
|
||||
"Cumino",
|
||||
"Cumino",
|
||||
"Salato"
|
||||
],
|
||||
"réponse": "Cumino",
|
||||
"anecdote": "Il cumino, vicino al finocchio, all'anice e all'aneto, è talvolta chiamato anice dei Vosgi o cumino dell'Olanda."
|
||||
}
|
||||
]
|
||||
},
|
||||
"nl": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "Welke kleur heeft paprikapoeder dat bij het koken wordt gebruikt vanwege zijn scherpe geur",
|
||||
"propositions": [
|
||||
"Rood",
|
||||
"Geel",
|
||||
"Groen",
|
||||
"Wit"
|
||||
],
|
||||
"réponse": "Rood",
|
||||
"anecdote": "Paprika is een kruidenpoeder dat wordt verkregen uit het rijpe, gedroogde en gemalen zaad van de paprika of paprika."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Saffraan, verkregen door uitdroging, is een specerij die wordt verkregen uit welke bloemsoort",
|
||||
"propositions": [
|
||||
"Krokus",
|
||||
"Acacia",
|
||||
"Papaver",
|
||||
"Tulp"
|
||||
],
|
||||
"réponse": "Krokus",
|
||||
"anecdote": "Saffraan, poëtisch rood goud genoemd, is de duurste specerij die ter wereld wordt gebruikt bij het koken."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Welke aromatische plant vormde in de oudheid de kroon van de overwinnaars",
|
||||
"propositions": [
|
||||
"Laurier",
|
||||
"Basilicum",
|
||||
"Peterselie",
|
||||
"Tijm"
|
||||
],
|
||||
"réponse": "Laurier",
|
||||
"anecdote": "In sporten, wedstrijden of intellectuele prijzen is de laurier (Laurus nobilis) het symbool van de overwinning, vandaar de oorsprong van het woord winnaar."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Welke plant wordt in de Maghreb gebruikt voor de bereiding van thee",
|
||||
"propositions": [
|
||||
"Koriander",
|
||||
"Munt",
|
||||
"Anijs",
|
||||
"Kaneel"
|
||||
],
|
||||
"réponse": "Munt",
|
||||
"anecdote": "Muntthee, de drank van gastvrijheid, wordt niet alleen bij de maaltijden maar gedurende de dag aangeboden."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Wat is de belangrijkste smaak van pastis, met een minimum alcoholgehalte van 40%",
|
||||
"propositions": [
|
||||
"Anijs",
|
||||
"Kardemom",
|
||||
"Munt",
|
||||
"Koriander"
|
||||
],
|
||||
"réponse": "Anijs",
|
||||
"anecdote": "Wanneer je het mengt door het water erbij te gieten, ga je van een vrij transparante amberkleurige kleur naar troebel geel."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Welke plant wordt in de Provence Farigoule genoemd",
|
||||
"propositions": [
|
||||
"Basilicum",
|
||||
"Marjolein",
|
||||
"Tijm",
|
||||
"Bergamot"
|
||||
],
|
||||
"réponse": "Tijm",
|
||||
"anecdote": "Deze kruip- of kussenplanten zijn rijk aan etherische oliën en maken als zodanig deel uit van aromatische planten."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Welk kruid is essentieel in de bearnaisesaus",
|
||||
"propositions": [
|
||||
"Salie",
|
||||
"Rozemarijn",
|
||||
"Dragon",
|
||||
"Kervel"
|
||||
],
|
||||
"réponse": "Dragon",
|
||||
"anecdote": "Béarnaisesaus is een hete geëmulgeerde saus gemaakt van geklaarde boter, eigeel, sjalot, dragon en kervel."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "Welk mengsel bevat onder andere peper, koriander, kurkuma, fenegriek en chili",
|
||||
"propositions": [
|
||||
"Curry",
|
||||
"Komijn",
|
||||
"Rozemarijn",
|
||||
"Karwij"
|
||||
],
|
||||
"réponse": "Curry",
|
||||
"anecdote": "Afhankelijk van de samenstelling kan de curry erg mild of erg sterk (pittig) zijn, meestal erg geurig."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Welke noot wordt gebruikt om aardappelen en kaassoufflés op smaak te brengen",
|
||||
"propositions": [
|
||||
"Peper",
|
||||
"Nootmuskaat",
|
||||
"Gember",
|
||||
"Oregano"
|
||||
],
|
||||
"réponse": "Nootmuskaat",
|
||||
"anecdote": "Nootmuskaat wordt geraspt gebruikt voor vlees, soepen, groentepurees en sommige cocktails."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "In welk jaar werd de reclamecampagne “Ducros s'décarcasse” gelanceerd",
|
||||
"propositions": [
|
||||
"1985",
|
||||
"1965",
|
||||
"1995",
|
||||
"1975"
|
||||
],
|
||||
"réponse": "1975",
|
||||
"anecdote": "Gilbert Ducros, een Franse industrieel, is de maker van Ducros-specerijen, nu eigendom van de Amerikaanse groep McCormick And Company."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Onder welke naam is herderstijm, soms verward met marjolein, beter bekend ?",
|
||||
"propositions": [
|
||||
"Dragon",
|
||||
"Bieslook",
|
||||
"Basilicum",
|
||||
"Oregano"
|
||||
],
|
||||
"réponse": "Oregano",
|
||||
"anecdote": "Oregano, dat een lichte en luchtige grond nodig heeft, vermenigvuldigt zich door in het voorjaar bosjes te laten barsten of mogelijk door te zaaien."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "Welke plant vormt de pesto, met knoflook en olijfolie",
|
||||
"propositions": [
|
||||
"Munt",
|
||||
"Marjolein",
|
||||
"Basilicum",
|
||||
"Komijn"
|
||||
],
|
||||
"réponse": "Basilicum",
|
||||
"anecdote": "Pesto is het essentiële ingrediënt in pestosoep, een soep van verse en gedroogde groenten waaraan pasta wordt toegevoegd."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "Welke van deze aromatische planten heeft een licht citroenachtige smaak",
|
||||
"propositions": [
|
||||
"Marjolein",
|
||||
"Citroenmelisse",
|
||||
"Munt",
|
||||
"Absint"
|
||||
],
|
||||
"réponse": "Citroenmelisse",
|
||||
"anecdote": "Citroenmelisse heeft kleine, ovale, gegraveerde, gekartelde bladeren die een zoete, citroenachtige geur afgeven wanneer ze worden gekreukt."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Welk kruid bestaat uit de vrucht van bepaalde orchideeën",
|
||||
"propositions": [
|
||||
"Dille",
|
||||
"Kaneel",
|
||||
"Myrtle",
|
||||
"Vanille"
|
||||
],
|
||||
"réponse": "Vanille",
|
||||
"anecdote": "Om een \u200b\u200brijk aromatisch kruid te verkrijgen, vereist de teelt en bereiding van vanille een langdurige en zorgvuldige verzorging."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Welke smaakstof wordt ook als medicijn beschouwd",
|
||||
"propositions": [
|
||||
"Knoflook",
|
||||
"Tijm",
|
||||
"Salie",
|
||||
"Absint"
|
||||
],
|
||||
"réponse": "Salie",
|
||||
"anecdote": "Wijzen werden in de Middeleeuwen beschouwd als een wondermiddel, sommige soorten hadden inderdaad geneeskrachtige eigenschappen."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Van deze voorstellen, die niet een mengsel van verschillende kruiden aanduidt",
|
||||
"propositions": [
|
||||
"Vijf geur",
|
||||
"Elke specerij",
|
||||
"Curry",
|
||||
"Garam masala"
|
||||
],
|
||||
"réponse": "Elke specerij",
|
||||
"anecdote": "Het zaad en de olie van zwart zaad worden zeer gewaardeerd, met name door moslims, volgens wie deze plant een wondermiddel zou zijn."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Welke specerij wordt gewonnen uit de bloem van een Milanese risotto met krokussmaak",
|
||||
"propositions": [
|
||||
"Kurkuma",
|
||||
"Safran",
|
||||
"Oregano",
|
||||
"Curry"
|
||||
],
|
||||
"réponse": "Safran",
|
||||
"anecdote": "Volgens sommige voedselschrijvers komt Milanese risotto rechtstreeks uit een middeleeuws recept voor saffraanrijst."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Welke verzoening biedt een aftreksel van steranijs, vrucht van de Chinese steranijsboom",
|
||||
"propositions": [
|
||||
"Spijsvertering",
|
||||
"Hoest",
|
||||
"Reuma",
|
||||
"Jeuk"
|
||||
],
|
||||
"réponse": "Spijsvertering",
|
||||
"anecdote": "De vruchten van de Badian-boom worden groen geplukt, voordat ze in de zon worden gedroogd, waar ze een roodbruine kleur krijgen."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "Hoeveel saffraanbloemen zijn er nodig om 500 gram filamenten te verkrijgen",
|
||||
"propositions": [
|
||||
"80.000",
|
||||
"40.000",
|
||||
"100.000",
|
||||
"60.000"
|
||||
],
|
||||
"réponse": "60.000",
|
||||
"anecdote": "De krokus gedijt in klimaten die vergelijkbaar zijn met die van de mediterrane struikgewas of Noord-Amerikaanse chaparral."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Van welk vlees weet je zeker dat je het gebruik van kaneel niet zult missen",
|
||||
"propositions": [
|
||||
"Kip",
|
||||
"Rundvlees",
|
||||
"Lam",
|
||||
"Varkensvlees"
|
||||
],
|
||||
"réponse": "Lam",
|
||||
"anecdote": "Op het eiland Sri Lanka hadden alleen de Salagama het recht om kaneel aan te raken, de anderen werden gestraft met de dood."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Welke uitzonderlijke specerij en plant wordt soms Indiase saffraan genoemd ?",
|
||||
"propositions": [
|
||||
"Nootmuskaat",
|
||||
"Pesto",
|
||||
"Oregano",
|
||||
"Kurkuma"
|
||||
],
|
||||
"réponse": "Kurkuma",
|
||||
"anecdote": "Hoewel kurkuma sinds de oudheid veel voorkomt in Zuidoost-Azië, is kurkuma ook het onderwerp geweest van talrijke wetenschappelijke studies."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "Welke zaden worden in India als een symbool van onsterfelijkheid beschouwd",
|
||||
"propositions": [
|
||||
"Papaver",
|
||||
"Tijm",
|
||||
"Quinoa",
|
||||
"Sesam"
|
||||
],
|
||||
"réponse": "Sesam",
|
||||
"anecdote": "Sesam maakt een sterke ontwikkeling door door de gemakkelijke teelt en lage productiekosten."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "Welk neefje van marjolein wordt gebruikt in goulashsoep",
|
||||
"propositions": [
|
||||
"Oregano",
|
||||
"Laurier",
|
||||
"Salie",
|
||||
"Komijn"
|
||||
],
|
||||
"réponse": "Oregano",
|
||||
"anecdote": "Goulash is van oorsprong waarschijnlijk een delicatesse die niet te scheiden is van het landelijke leven in de Grote Hongaarse Laagvlakte."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "Welke gewone naam wordt soms gebruikt om naar dille te verwijzen",
|
||||
"propositions": [
|
||||
"Bastaardvenkel",
|
||||
"Gemeenschappelijke selderij",
|
||||
"Slechte knoflook",
|
||||
"Zwarte komijn"
|
||||
],
|
||||
"réponse": "Bastaardvenkel",
|
||||
"anecdote": "Dille wordt gekweekt vanwege zijn bladeren en zijn aromatische zaden, dicht bij venkel door zijn geur en zijn eigenschappen."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Welk deel van gember wordt in veel Aziatische keukens gebruikt",
|
||||
"propositions": [
|
||||
"De wortel",
|
||||
"De wortelstok",
|
||||
"De bladeren",
|
||||
"De bloemen"
|
||||
],
|
||||
"réponse": "De wortelstok",
|
||||
"anecdote": "Jonge gemberwortels, die eigenlijk wortelstokken zijn, zijn sappig en vlezig met een zeer zoete smaak."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Welke sterk vertakte plant wordt ook wel het heilige kruid genoemd",
|
||||
"propositions": [
|
||||
"Koriander",
|
||||
"Salie",
|
||||
"Hartig",
|
||||
"Dragon"
|
||||
],
|
||||
"réponse": "Salie",
|
||||
"anecdote": "Salie komt veel voor in Europa, vooral in zuidelijke streken, maar is zeldzaam in het wild."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "Welke specerij uit Mexico werd in de 16e eeuw in Europa op de markt gebracht",
|
||||
"propositions": [
|
||||
"Canilla",
|
||||
"Basilicum",
|
||||
"Cacao",
|
||||
"Kaneel"
|
||||
],
|
||||
"réponse": "Canilla",
|
||||
"anecdote": "Vanille komt in de vorm van zwarte, glanzende stokjes, algemeen bekend als vanillestokjes."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "Welk kruid, waarvan de vrucht op een sinaasappel lijkt, wordt voornamelijk in Calabrië verbouwd",
|
||||
"propositions": [
|
||||
"Dragon",
|
||||
"Bergamot",
|
||||
"Salie",
|
||||
"Hartig"
|
||||
],
|
||||
"réponse": "Bergamot",
|
||||
"anecdote": "Het fruit wordt voornamelijk geoogst voor de olie die voor de helft wordt gebruikt in de voedingssector en in cosmetica."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Welke plant is geliefd bij Duitsers voor het kruiden van bonen",
|
||||
"propositions": [
|
||||
"Basilicum",
|
||||
"Oregano",
|
||||
"Hartig",
|
||||
"Rozemarijn"
|
||||
],
|
||||
"réponse": "Hartig",
|
||||
"anecdote": "De hartige soorten geven de voorkeur aan zonnige plaatsen met kalkrijke, lichte en goed doorlatende bodems."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Welke specerijen smaken kazen zoals Gouda of Munster",
|
||||
"propositions": [
|
||||
"Karwij",
|
||||
"Hartig",
|
||||
"Kardemom",
|
||||
"Komijn"
|
||||
],
|
||||
"réponse": "Karwij",
|
||||
"anecdote": "Karwij, dicht bij venkel, anijs en dille, wordt ook wel anijs uit de Vogezen of komijn uit Holland genoemd."
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
2250
misc/quiz/openquizzdb/expressions.json
Normal file
2250
misc/quiz/openquizzdb/expressions.json
Normal file
@ -0,0 +1,2250 @@
|
||||
{
|
||||
"fournisseur": "OpenQuizzDB - Fournisseur de contenu libre (https://www.openquizzdb.org)",
|
||||
"licence": "CC BY-SA",
|
||||
"rédacteur": "Philippe Bresoux",
|
||||
"difficulté": "4 / 5",
|
||||
"version": 1,
|
||||
"mise-à-jour": "2024-03-31",
|
||||
"catégorie-nom-slogan": {
|
||||
"fr": {
|
||||
"catégorie": "Littérature",
|
||||
"nom": "Expressions connues",
|
||||
"slogan": "La culture, moins on en a, plus on l'étale"
|
||||
},
|
||||
"en": {
|
||||
"catégorie": "Literature",
|
||||
"nom": "Known Expressions",
|
||||
"slogan": "Culture, the less we have, the more we spread it"
|
||||
},
|
||||
"es": {
|
||||
"catégorie": "Literatura",
|
||||
"nom": "Expresiones conocidas",
|
||||
"slogan": "Cultura, cuanto menos tenemos, más la difundimos"
|
||||
},
|
||||
"it": {
|
||||
"catégorie": "Letteratura",
|
||||
"nom": "Espressioni conosciute",
|
||||
"slogan": "Cultura, meno abbiamo, più la diffondiamo"
|
||||
},
|
||||
"de": {
|
||||
"catégorie": "Literatur",
|
||||
"nom": "Bekannte Ausdrücke",
|
||||
"slogan": "Kultur, je weniger wir haben, desto mehr verbreiten wir sie"
|
||||
},
|
||||
"nl": {
|
||||
"catégorie": "Literatuur",
|
||||
"nom": "Bekende uitdrukkingen",
|
||||
"slogan": "Cultuur, hoe minder we hebben, hoe meer we het verspreiden"
|
||||
}
|
||||
},
|
||||
"quizz": {
|
||||
"fr": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "Quel sport de combat a vu naître l'expression « jeter l'éponge » ?",
|
||||
"propositions": [
|
||||
"Catch",
|
||||
"Boxe",
|
||||
"Lutte",
|
||||
"Judo"
|
||||
],
|
||||
"réponse": "Boxe",
|
||||
"anecdote": "Quand le coach n'arrivait plus à reconnaître son poulain tellement il avait pris de bourre-pif, il jetait l'éponge à terre."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "De quelle section militaire provient l'expression « être mis à pied » ?",
|
||||
"propositions": [
|
||||
"Logistique",
|
||||
"Radio",
|
||||
"Infanterie",
|
||||
"Cavalerie"
|
||||
],
|
||||
"réponse": "Cavalerie",
|
||||
"anecdote": "Lorsque les cavaliers étaient sanctionnés par leurs supérieurs, on leur retirait leurs armes, leurs chevaux, et même parfois leurs slips."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "De quel écrit provient l'expression « vieux comme Mathusalem » ?",
|
||||
"propositions": [
|
||||
"Guide Michelin",
|
||||
"Petit Larousse",
|
||||
"Quid",
|
||||
"Bible"
|
||||
],
|
||||
"réponse": "Bible",
|
||||
"anecdote": "Mathusalem, qui serait mort à l'âge de 969 ans, est célèbre pour être la personne la plus âgée mentionnée dans l'Ancien Testament."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Quelle expression signifie que vous possédez un modèle récent de tablette ?",
|
||||
"propositions": [
|
||||
"Première onde",
|
||||
"Dernier cri",
|
||||
"Haute voix",
|
||||
"Nouveau son"
|
||||
],
|
||||
"réponse": "Dernier cri",
|
||||
"anecdote": "Bien avant l'invention de la télévision et la lecture de journaux par la population, les informations étaient criées sur la place publique."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Quel animal se cache en réalité derrière l'expression « fier comme un pou » ?",
|
||||
"propositions": [
|
||||
"Lion",
|
||||
"Cheval",
|
||||
"Coq",
|
||||
"Ours"
|
||||
],
|
||||
"réponse": "Coq",
|
||||
"anecdote": "En réalité, le pou désignait autrefois le coq, associé dans la symbolique occidentale à la vigueur, au courage et à la fierté."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "À quel document se rapporte l'expression « en voiture Simone », reprise par Guy Lux ?",
|
||||
"propositions": [
|
||||
"Permis de conduire",
|
||||
"Billet d'avion",
|
||||
"Ticket de train",
|
||||
"CV"
|
||||
],
|
||||
"réponse": "Permis de conduire",
|
||||
"anecdote": "Mademoiselle Simone Louise de Pinet de Borde des Forest fut une des premières Françaises à obtenir son permis de conduire, en 1929."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Au début du XXe siècle, dans quel endroit était-il fréquent de « faire un tabac » ?",
|
||||
"propositions": [
|
||||
"Théâtre",
|
||||
"Hôpital",
|
||||
"Tribunal",
|
||||
"Cirque"
|
||||
],
|
||||
"réponse": "Théâtre",
|
||||
"anecdote": "Au début du XXe siècle, pour un comédien de théâtre, l'expression « avoir le gros tabac » signifiait en fait « être très applaudi »."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "Comment partez-vous si vous le faites « sans tambour ni trompette » ?",
|
||||
"propositions": [
|
||||
"Sans famille",
|
||||
"Sans argent",
|
||||
"Sans vêtement",
|
||||
"Sans bruit"
|
||||
],
|
||||
"réponse": "Sans bruit",
|
||||
"anecdote": "Venue du monde militaire en 1650, cette expression s'est généralisée à toute action effectuée discrètement ou secrètement."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Comment faut-il « nager » pour manoeuvrer sans se compromettre ?",
|
||||
"propositions": [
|
||||
"Sur le dos",
|
||||
"À contre courant",
|
||||
"Avec des palmes",
|
||||
"Entre deux eaux"
|
||||
],
|
||||
"réponse": "Entre deux eaux",
|
||||
"anecdote": "Cette expression apparue au XIVe siècle vient en réalité de la marine, où « nager » voulait alors dire « conduire un bateau »."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "Quelle expression est évoquée chez les hommes de la quarantaine ?",
|
||||
"propositions": [
|
||||
"Faire le baron",
|
||||
"Démon de midi",
|
||||
"Plein aux as",
|
||||
"Tourner la page"
|
||||
],
|
||||
"réponse": "Démon de midi",
|
||||
"anecdote": "Ce démon-là serait d'abord né d'une erreur de traduction de la Bible de l'hébreu vers le grec par les Septante."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Que devez-vous être si on vous demande de « ne pas tirer sur le pianiste » ?",
|
||||
"propositions": [
|
||||
"Franc",
|
||||
"Indulgent",
|
||||
"Craintif",
|
||||
"Rapide"
|
||||
],
|
||||
"réponse": "Indulgent",
|
||||
"anecdote": "Ce message était écrit à l'entrée des saloons car lorsqu'une bagarre démarrait, le pianiste était souvent la première cible."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "Dans quelle position vous retrouvez-vous si vous êtes « sur la sellette » ?",
|
||||
"propositions": [
|
||||
"Pendu",
|
||||
"Assis",
|
||||
"Couché",
|
||||
"Debout"
|
||||
],
|
||||
"réponse": "Assis",
|
||||
"anecdote": "Au XIIIe siècle, la sellette était dans les tribunaux un siège bas afin que les juges puissent dominer et dégrader l'accusé."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "Comment voyait-on un ourson pour qu'il devienne un « ours mal léché » ?",
|
||||
"propositions": [
|
||||
"Enragé",
|
||||
"Rasé",
|
||||
"Malade",
|
||||
"Difforme"
|
||||
],
|
||||
"réponse": "Difforme",
|
||||
"anecdote": "Au XVIIe siècle, on croyait que les oursons naissaient difformes et que c'était les mères qui les façonnaient en les léchant longuement."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "De que type de gaz provient l'expression « il y a de l'eau dans le gaz » ?",
|
||||
"propositions": [
|
||||
"Gaz naturel",
|
||||
"Gaz de schiste",
|
||||
"Gaz de houille",
|
||||
"Gaz de chasse"
|
||||
],
|
||||
"réponse": "Gaz de houille",
|
||||
"anecdote": "Autrefois, la flamme du réchaud pouvait s'éteindre avec le gaz de houille chargé de vapeur d'eau, provoquant retard et disputes."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "À quel type de combat remonte l'expression « au pied du mur » ?",
|
||||
"propositions": [
|
||||
"Lance",
|
||||
"Épée",
|
||||
"Hache",
|
||||
"Main nue"
|
||||
],
|
||||
"réponse": "Épée",
|
||||
"anecdote": "Lorsque l'adversaire reculait, il arrivait un moment où il se trouvait au pied du mur, ceci l'obligeant à se défendre ou à s'avouer vaincu."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "De quelle époque date l'expression « une autre paire de manches » ?",
|
||||
"propositions": [
|
||||
"Renaissance",
|
||||
"Moyen Âge",
|
||||
"Préhistoire",
|
||||
"Antiquité"
|
||||
],
|
||||
"réponse": "Moyen Âge",
|
||||
"anecdote": "Les manches étaient une partie détachable du reste de l'habit : en journée, on changeait ses manches au gré de ses activités."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Au XVIIIe siècle, quelle profession a généré la fin des haricots ?",
|
||||
"propositions": [
|
||||
"Marin",
|
||||
"Pompier",
|
||||
"Avocat",
|
||||
"Huissier"
|
||||
],
|
||||
"réponse": "Marin",
|
||||
"anecdote": "Il convenait de manger a bord les animaux vivants et produits frais, puis les biscuits secs, les produits fumés et enfin les jambons."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Originellement, de qui disait-on qu'il s'était fait la malle ?",
|
||||
"propositions": [
|
||||
"Banquier",
|
||||
"Pilote",
|
||||
"Explorateur",
|
||||
"Prisonnier"
|
||||
],
|
||||
"réponse": "Prisonnier",
|
||||
"anecdote": "Cette expression semble en effet être apparue vers 1935 dans les milieux carcéraux pour signifier s'évader ou se faire la belle."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "Laquelle de ces expressions, synonyme de réprimander, pourriez-vous utiliser ?",
|
||||
"propositions": [
|
||||
"Avoir les foies",
|
||||
"Passer un savon",
|
||||
"Bourrer le mou",
|
||||
"Fendre la bise"
|
||||
],
|
||||
"réponse": "Passer un savon",
|
||||
"anecdote": "Autrefois, les femmes faisaient la lessive à l'aide de savon et d'une palette en y échangeant informations, potins et médisances."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Au XVIe siècle, que coupait-on réellement pour « couper le sifflet » à quelqu'un ?",
|
||||
"propositions": [
|
||||
"Sexe",
|
||||
"Pieds",
|
||||
"Gorge",
|
||||
"Main"
|
||||
],
|
||||
"réponse": "Gorge",
|
||||
"anecdote": "En effet, à cette époque, le sifflet, au figuré, désignait le gosier, cet endroit où passe la trachée-artère par laquelle nous respirons."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Quel lieu a engendré l'expression mentir comme un arracheur de dents ?",
|
||||
"propositions": [
|
||||
"Musées",
|
||||
"Champs",
|
||||
"Hôpitaux",
|
||||
"Rue"
|
||||
],
|
||||
"réponse": "Rue",
|
||||
"anecdote": "Au XIXe siècle, les dentistes exerçaient dans la rue et engageaient des musiciens pour ne pas dissuader d'éventuels nouveaux patients."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "Quel objet est à l'origine de l'expression « voir midi à sa porte » ?",
|
||||
"propositions": [
|
||||
"Sismographe",
|
||||
"Girouette",
|
||||
"Calendrier",
|
||||
"Cadran solaire"
|
||||
],
|
||||
"réponse": "Cadran solaire",
|
||||
"anecdote": "Dans les campagnes, il était fréquent que soit installé un tel cadran sur la façade de la maison orientée au sud, à proximité de l'entrée."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "De quelle monde provient la célèbre expression « veiller au grain » ?",
|
||||
"propositions": [
|
||||
"Universitaire",
|
||||
"Agricole",
|
||||
"Des affaires",
|
||||
"Maritime"
|
||||
],
|
||||
"réponse": "Maritime",
|
||||
"anecdote": "Le grain est en mer une tempête de vent soudaine que les marins redoutent et surveillent donc avec beaucoup d'attention."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "L'expression « être une tête de turc » provient de quel endroit particulier ?",
|
||||
"propositions": [
|
||||
"Théâtre",
|
||||
"Opéra",
|
||||
"Cirque",
|
||||
"Fête foraine"
|
||||
],
|
||||
"réponse": "Fête foraine",
|
||||
"anecdote": "La partie sur laquelle on frappait pour mesurer sa force musculaire représentait au XIXe siècle une tête de Turc, particulièrement fort."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "À qui était directement destinée l'expression « sentir le roussi » ?",
|
||||
"propositions": [
|
||||
"Prophètes",
|
||||
"Fidèles",
|
||||
"Hérétiques",
|
||||
"Prêtres"
|
||||
],
|
||||
"réponse": "Hérétiques",
|
||||
"anecdote": "L'expression fait référence aux hérétiques, victimes potentielles des foudres de l'Inquisition et souvent condamnées à finir au bûcher."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Quelle peuplade est à l'origine de l'envoi du « bouc émissaire » ?",
|
||||
"propositions": [
|
||||
"Étrusques",
|
||||
"Celtes",
|
||||
"Phéniciens",
|
||||
"Hébreux"
|
||||
],
|
||||
"réponse": "Hébreux",
|
||||
"anecdote": "À la fête des expiations, le Grand Prêtre envoyait vers le désert un pauvre bouc chargé de tous les péchés et malédictions d'Israël."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "Autour de quel jeu pouvait-on autrefois « épater la galerie » ?",
|
||||
"propositions": [
|
||||
"Polo",
|
||||
"Baseball",
|
||||
"Tir à la corde",
|
||||
"Jeu de paume"
|
||||
],
|
||||
"réponse": "Jeu de paume",
|
||||
"anecdote": "Les galeries sont les espaces couverts ceinturant le jeu de paume où se tenaient les spectateurs chez qui susciter l'admiration."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "Dans quel lieu public pouvait-on jadis entendre un « minute papillon » ?",
|
||||
"propositions": [
|
||||
"Université",
|
||||
"Théâtre",
|
||||
"Café",
|
||||
"Musée"
|
||||
],
|
||||
"réponse": "Café",
|
||||
"anecdote": "Papillon était le patronyme d'un serveur du café du Cadran à Paris : le « Minute Papillon » lui indiquait qu'il pouvait prendre son temps."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Quel rapport lexical est à l'origine de l'expression « être dans les choux » ?",
|
||||
"propositions": [
|
||||
"Paraphrase",
|
||||
"Paronymie",
|
||||
"Anastrophe",
|
||||
"Apocope"
|
||||
],
|
||||
"réponse": "Paronymie",
|
||||
"anecdote": "C'est la paronymie entre les choux et échouer qui est le tout premier sens de cette expression datant du milieu du XIXe siècle."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Dans le langage de quelles courses arrivait-on « les doigts dans le nez » ?",
|
||||
"propositions": [
|
||||
"Cyclistes",
|
||||
"De fond",
|
||||
"Automobiles",
|
||||
"Hippiques"
|
||||
],
|
||||
"réponse": "Hippiques",
|
||||
"anecdote": "C'est une image amusante qui montre la facilité qu'a eu le jockey à gagner, avec en plus les doigts dans le nez."
|
||||
}
|
||||
]
|
||||
},
|
||||
"en": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "Which fighting sport has given birth to the expression « throw in the towel » ?",
|
||||
"propositions": [
|
||||
"Wrestling",
|
||||
"Catch",
|
||||
"Judo",
|
||||
"Boxing"
|
||||
],
|
||||
"réponse": "Boxing",
|
||||
"anecdote": "When the coach could not recognize his foal so much he had taken a wad, he threw the sponge to the ground."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Which military section does the expression « to be laid off » come from ?",
|
||||
"propositions": [
|
||||
"Radio",
|
||||
"Infantry",
|
||||
"Logistics",
|
||||
"Cavalry"
|
||||
],
|
||||
"réponse": "Cavalry",
|
||||
"anecdote": "When the riders were sanctioned by their superiors, their weapons, their horses, and sometimes their underpants were removed."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "From what writing comes the expression « old as Methuselah » ?",
|
||||
"propositions": [
|
||||
"Bible",
|
||||
"Quid",
|
||||
"Petit Larousse",
|
||||
"Michelin Guide"
|
||||
],
|
||||
"réponse": "Bible",
|
||||
"anecdote": "Methuselah, who died at the age of 969, is famous for being the eldest person mentioned in the Old Testament."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "What expression means you have a recent tablet model ?",
|
||||
"propositions": [
|
||||
"Trendy",
|
||||
"High voice",
|
||||
"First wave",
|
||||
"New sound"
|
||||
],
|
||||
"réponse": "Trendy",
|
||||
"anecdote": "Long before the invention of television and the reading of newspapers by the population, information was shouted in the public square."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "What animal is actually hiding behind the expression « proud as a louse » ?",
|
||||
"propositions": [
|
||||
"Bear",
|
||||
"Lion",
|
||||
"Cock",
|
||||
"Horse"
|
||||
],
|
||||
"réponse": "Cock",
|
||||
"anecdote": "In fact, the louse was once the cock, associated in Western symbolism with vigor, courage and pride."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Which document refers to the expression « by car Simone », often taken up by Guy Lux ?",
|
||||
"propositions": [
|
||||
"CV",
|
||||
"Train ticket",
|
||||
"Air ticket",
|
||||
"Driving license"
|
||||
],
|
||||
"réponse": "Driving license",
|
||||
"anecdote": "Mademoiselle Simone Louise de Pinet of Borde des Forest was one of the first French women to obtain her driving license in 1929."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "At the beginning of the twentieth century, in what place was it common to « make a cigarette » ?",
|
||||
"propositions": [
|
||||
"Court",
|
||||
"Circus",
|
||||
"Hospital",
|
||||
"Theater"
|
||||
],
|
||||
"réponse": "Theater",
|
||||
"anecdote": "At the beginning of the 20th century, for a theater actor, the expression « to have the big tobacco » meant in fact « to be very applauded »."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "How do you go if you do it « without fanfare » ?",
|
||||
"propositions": [
|
||||
"Without clothes",
|
||||
"Without money",
|
||||
"Without noise",
|
||||
"Without family"
|
||||
],
|
||||
"réponse": "Without noise",
|
||||
"anecdote": "Coming from the military world in 1650, this expression is generalized to all actions carried out discreetly or secretly."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "How is it necessary to maneuver without compromising ?",
|
||||
"propositions": [
|
||||
"Against a current",
|
||||
"With fins",
|
||||
"Between two waters",
|
||||
"On the back"
|
||||
],
|
||||
"réponse": "Between two waters",
|
||||
"anecdote": "This expression, which appeared in the 14th century, actually comes from the Navy, where « swimming » then meant « driving a boat »."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "What expression is evoked in men in their forties ?",
|
||||
"propositions": [
|
||||
"Turn the page",
|
||||
"Full of Ace",
|
||||
"To make the baron",
|
||||
"Midday demon"
|
||||
],
|
||||
"réponse": "Midday demon",
|
||||
"anecdote": "This demon would first be born of an error in the translation of the Bible from Hebrew to Greek by the Septuagint."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "What should you be if you are asked to « do not shoot the pianist » ?",
|
||||
"propositions": [
|
||||
"Fearful",
|
||||
"Fast",
|
||||
"Indulgent",
|
||||
"Franc"
|
||||
],
|
||||
"réponse": "Indulgent",
|
||||
"anecdote": "This message was written at the entrance of the saloons because when a fight started, the pianist was often the first target."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "In which position do you find yourself if you are « in the hot seat » ?",
|
||||
"propositions": [
|
||||
"Standing",
|
||||
"Hung",
|
||||
"Sitting",
|
||||
"Layer"
|
||||
],
|
||||
"réponse": "Sitting",
|
||||
"anecdote": "In the thirteenth century, the hot seat was in the courts a low seat so that judges can dominate and degrade the accused."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "How did you see a cub to become a « badly licked bear » ?",
|
||||
"propositions": [
|
||||
"Sick",
|
||||
"Shaven",
|
||||
"Difform",
|
||||
"Mad"
|
||||
],
|
||||
"réponse": "Difform",
|
||||
"anecdote": "In the seventeenth century, it was believed that cubs were born deformed and that it was the mothers who made them by licking them at length."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "What type of gas comes from the phrase « there is water in the gas » ?",
|
||||
"propositions": [
|
||||
"Coal gas",
|
||||
"Natural gas",
|
||||
"Hunting gas",
|
||||
"Shale gas"
|
||||
],
|
||||
"réponse": "Coal gas",
|
||||
"anecdote": "In the past, the flame of the reheat could be extinguished with coal gas charged with water vapor, causing delay and disputes."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "What type of fight is the expression « at the foot of the wall » ?",
|
||||
"propositions": [
|
||||
"Bare hand",
|
||||
"Ax",
|
||||
"Sword",
|
||||
"Lance"
|
||||
],
|
||||
"réponse": "Sword",
|
||||
"anecdote": "When the opponent recoiled, a moment came when he was at the foot of the wall, forcing him to defend himself or to confess defeat."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "What is the date of the expression « another pair of sleeves » ?",
|
||||
"propositions": [
|
||||
"Ancient history",
|
||||
"Middle Age",
|
||||
"Prehistory",
|
||||
"Renaissance"
|
||||
],
|
||||
"réponse": "Middle Age",
|
||||
"anecdote": "The sleeves were a detachable part of the rest of the habit: in the day, one's sleeves were changed with the help of his activities."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "In the eighteenth century, what profession gave rise to the end of beans ?",
|
||||
"propositions": [
|
||||
"Firefighter",
|
||||
"Bailiff",
|
||||
"Marin",
|
||||
"Lawyer"
|
||||
],
|
||||
"réponse": "Marin",
|
||||
"anecdote": "It was advisable to eat live animals and fresh products on board, then biscuits, smoked products and finally hams."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Originally, who was said to have « made the trunk » ?",
|
||||
"propositions": [
|
||||
"Driver",
|
||||
"Prisoner",
|
||||
"Explorer",
|
||||
"Banker"
|
||||
],
|
||||
"réponse": "Prisoner",
|
||||
"anecdote": "This expression seems indeed to have appeared around 1935 in the prison environment to mean « to escape » or « to make oneself beautiful »."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "Which of these expressions, synonymous with reprimand, could you use ?",
|
||||
"propositions": [
|
||||
"To pass a soap",
|
||||
"Have the livers",
|
||||
"Splitting the kiss",
|
||||
"Stuff the slack"
|
||||
],
|
||||
"réponse": "To pass a soap",
|
||||
"anecdote": "In the past, women did laundry using soap and a palette, exchanging information, gossip and mediocrity."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "In the sixteenth century, what was really cut to « cut the whistle » to someone ?",
|
||||
"propositions": [
|
||||
"Hand",
|
||||
"Sex",
|
||||
"Feet",
|
||||
"Throat"
|
||||
],
|
||||
"réponse": "Throat",
|
||||
"anecdote": "In fact, at that time, the whistle, figuratively, indicated the throat, the place where the trachea-artery through which we breathe passes."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Which place gave birth to the expression « lying like a tooth-puller » ?",
|
||||
"propositions": [
|
||||
"Fields",
|
||||
"Hospitals",
|
||||
"Street",
|
||||
"Museums"
|
||||
],
|
||||
"réponse": "Street",
|
||||
"anecdote": "In the nineteenth century, dentists exercised in the street and hired musicians not to deter possible new patients."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "What is the purpose of the phrase « see noon at the door » ?",
|
||||
"propositions": [
|
||||
"Seismograph",
|
||||
"Sundial",
|
||||
"Calendar",
|
||||
"Weathervane"
|
||||
],
|
||||
"réponse": "Sundial",
|
||||
"anecdote": "In the countryside, it was common for such a dial to be placed on the front of the house facing south, near the entrance."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "From which world does the famous phrase « watch the grain » come from ?",
|
||||
"propositions": [
|
||||
"Maritime",
|
||||
"University",
|
||||
"Agricultural",
|
||||
"Business"
|
||||
],
|
||||
"réponse": "Maritime",
|
||||
"anecdote": "The grain is at sea a sudden windy weather that sailors dread and therefore watch with great attention."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "The expression « being a Turkish head » comes from which particular place ?",
|
||||
"propositions": [
|
||||
"Opéra",
|
||||
"Theater",
|
||||
"Circus",
|
||||
"Fun fair"
|
||||
],
|
||||
"réponse": "Fun fair",
|
||||
"anecdote": "The part on which one struck to measure one's muscular force represented in the XIXe century a head of Turkish, particularly strong."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Who was the phrase « smell of singed » meant for ?",
|
||||
"propositions": [
|
||||
"Heretics",
|
||||
"Priests",
|
||||
"Servants",
|
||||
"Prophets"
|
||||
],
|
||||
"réponse": "Heretics",
|
||||
"anecdote": "The term refers to heretics, potential victims of the Inquisition's thunderstorms and often condemned to end the beaker."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Which people are behind the sending of the « scapegoat » ?",
|
||||
"propositions": [
|
||||
"Phenicians",
|
||||
"Etruscans",
|
||||
"Hebrews",
|
||||
"Celts"
|
||||
],
|
||||
"réponse": "Hebrews",
|
||||
"anecdote": "At the feast of atonement, the Great Preacher sent to the desert a poor goat with all the sin and malice of Israel."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "What kind of game was once used to « spoil the gallery » ?",
|
||||
"propositions": [
|
||||
"Rope shooting",
|
||||
"Play of palm",
|
||||
"Polo",
|
||||
"Baseball"
|
||||
],
|
||||
"réponse": "Play of palm",
|
||||
"anecdote": "The galleries are the covered spaces surrounding the game of palm where the spectators were held in which to arouse the admiration."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "In what public place could we once hear a « butterfly minute » ?",
|
||||
"propositions": [
|
||||
"Museum",
|
||||
"Coffeehouse",
|
||||
"Theater",
|
||||
"University"
|
||||
],
|
||||
"réponse": "Coffeehouse",
|
||||
"anecdote": "Papillon was the name of a café waiter at Le Cadran in Paris: the « Minute Papillonn » told him that he could take his time."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "What lexical relationship is the origin of the expression « be in cabbage » ?",
|
||||
"propositions": [
|
||||
"Anastrophe",
|
||||
"Apocope",
|
||||
"Paronymy",
|
||||
"Paraphrase"
|
||||
],
|
||||
"réponse": "Paronymy",
|
||||
"anecdote": "It is the paronymy between cabbages and failure that is the very first meaning of this expression dating from the mid-nineteenth century."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "In the language of what races did one come « fingers in the nose » ?",
|
||||
"propositions": [
|
||||
"Background",
|
||||
"Equine",
|
||||
"Cyclists",
|
||||
"Automobiles"
|
||||
],
|
||||
"réponse": "Equine",
|
||||
"anecdote": "It's a funny picture that shows how easy it was for the jockey to win, with more fingers in his nose."
|
||||
}
|
||||
]
|
||||
},
|
||||
"de": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "Welcher Kampfsport hat den Ausdruck « Wurf im Handtuch » hervorgebracht ?",
|
||||
"propositions": [
|
||||
"Fang",
|
||||
"Boxen",
|
||||
"Wrestling",
|
||||
"Judo"
|
||||
],
|
||||
"réponse": "Boxen",
|
||||
"anecdote": "Als der Trainer sein Fohlen nicht so gut erkennen konnte, warf er den Schwamm zu Boden."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Aus welcher militärischen Abteilung stammt der Ausdruck « entlassen werden » ?",
|
||||
"propositions": [
|
||||
"Logistik",
|
||||
"Infanterie",
|
||||
"Kavallerie",
|
||||
"Radio"
|
||||
],
|
||||
"réponse": "Kavallerie",
|
||||
"anecdote": "Als die Reiter von ihren Vorgesetzten sanktioniert wurden, wurden ihre Waffen, ihre Pferde und manchmal ihre Unterhosen entfernt."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Aus welcher Schrift stammt der Ausdruck « alt wie Methusalem » ?",
|
||||
"propositions": [
|
||||
"Bibel",
|
||||
"Guide Michelin",
|
||||
"Quid",
|
||||
"Petit Larousse"
|
||||
],
|
||||
"réponse": "Bibel",
|
||||
"anecdote": "Methusalah, der im Alter von 969 Jahren starb, ist berühmt dafür, die älteste im Alten Testament erwähnte Person zu sein."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Welcher Ausdruck bedeutet, dass Sie ein neues Tablet-Modell haben ?",
|
||||
"propositions": [
|
||||
"Trendy",
|
||||
"Hohe Stimme",
|
||||
"Erste Welle",
|
||||
"Neuer Sound"
|
||||
],
|
||||
"réponse": "Trendy",
|
||||
"anecdote": "Lange vor der Erfindung des Fernsehens und dem Lesen von Zeitungen durch die Bevölkerung wurden auf dem öffentlichen Platz Informationen gerufen."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Welches Tier verbirgt sich eigentlich hinter dem Ausdruck « stolz wie eine Laus » ?",
|
||||
"propositions": [
|
||||
"Pferd",
|
||||
"Hahn",
|
||||
"Löwe",
|
||||
"Bär"
|
||||
],
|
||||
"réponse": "Hahn",
|
||||
"anecdote": "Tatsächlich war die Laus einst der Hahn, verbunden in der westlichen Symbolik mit Kraft, Mut und Stolz."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Welches Dokument bezieht sich auf den Ausdruck « mit dem Auto Simone », der oft von Guy Lux aufgegriffen wird ?",
|
||||
"propositions": [
|
||||
"Zugfahrkarte",
|
||||
"Führerschein",
|
||||
"Lebenslauf",
|
||||
"Flugticket"
|
||||
],
|
||||
"réponse": "Führerschein",
|
||||
"anecdote": "Frau Simone Louise de Pinet von Borde des Forest war eine der ersten Französinnen, die 1929 ihren Führerschein erwarb."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "An welchem Ort war es zu Beginn des 20. Jahrhunderts üblich, « eine Zigarette zu machen » ?",
|
||||
"propositions": [
|
||||
"Gericht",
|
||||
"Krankenhaus",
|
||||
"Zirkus",
|
||||
"Theater"
|
||||
],
|
||||
"réponse": "Theater",
|
||||
"anecdote": "Zu Beginn des 20. Jahrhunderts bedeutete der Ausdruck « den großen Tabak haben » für einen Theaterschauspieler in der Tat « sehr zu begrüßen »."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "Wie geht es dir, wenn du es « ohne Fanfare » machst ?",
|
||||
"propositions": [
|
||||
"Ohne Familie",
|
||||
"Ohne kleidung",
|
||||
"Ohne geld",
|
||||
"Ohne Lärm"
|
||||
],
|
||||
"réponse": "Ohne Lärm",
|
||||
"anecdote": "Aus der Militärwelt im Jahr 1650 stammend, wird dieser Ausdruck auf alle diskret oder heimlich durchgeführten Handlungen verallgemeinert."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Wie ist es notwendig zu manövrieren, ohne Kompromisse einzugehen ?",
|
||||
"propositions": [
|
||||
"Zwischen zwei Gewässern",
|
||||
"Gegenstrom",
|
||||
"Mit Flossen",
|
||||
"Auf der Rückseite"
|
||||
],
|
||||
"réponse": "Zwischen zwei Gewässern",
|
||||
"anecdote": "Dieser Ausdruck, der im 14. Jahrhundert erschien, stammt eigentlich von der Marine, wo « Schwimmen » dann « Boot fahren » bedeutete."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "Welcher Ausdruck wird bei Männern in den Vierzigern hervorgerufen ?",
|
||||
"propositions": [
|
||||
"Mittags",
|
||||
"Voller Ass",
|
||||
"Seite umblättern",
|
||||
"Den Baron machen ","Faire le baron"
|
||||
],
|
||||
"réponse": "Mittags",
|
||||
"anecdote": "Dieser Dämon würde zuerst aus einem Fehler in der Übersetzung der Bibel von Hebräisch nach Griechisch durch die Septuaginta geboren."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Was sollten Sie sein, wenn Sie gefragt werden, ob Sie den Pianisten nicht erschießen wollen ?",
|
||||
"propositions": [
|
||||
"Ängstlich",
|
||||
"Nachsichtig",
|
||||
"Franc",
|
||||
"Schnell"
|
||||
],
|
||||
"réponse": "Nachsichtig",
|
||||
"anecdote": "Diese Nachricht wurde am Eingang der Saloons geschrieben, da der Pianist zu Beginn eines Kampfes oft das erste Ziel war."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "In welcher Position befinden Sie sich, wenn Sie « auf dem heißen Stuhl » sitzen ?",
|
||||
"propositions": [
|
||||
"Hung",
|
||||
"Sitzen",
|
||||
"Stehend",
|
||||
"Hinlegen"
|
||||
],
|
||||
"réponse": "Sitzen",
|
||||
"anecdote": "Im dreizehnten Jahrhundert war der heiße Sitz in den Gerichten ein niedriger Sitz, damit Richter den Angeklagten dominieren und degradieren können."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "Wie haben Sie gesehen, wie aus einem Jungen ein « schlecht geleckter Bär » wurde ?",
|
||||
"propositions": [
|
||||
"Rasiert",
|
||||
"Difform",
|
||||
"Krank",
|
||||
"Verrückt"
|
||||
],
|
||||
"réponse": "Difform",
|
||||
"anecdote": "Im siebzehnten Jahrhundert glaubte man, dass Jungen deformiert geboren wurden und dass es die Mütter waren, die sie herstellten, indem sie sie ausführlich leckten."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Welche Art von Gas kommt von der Phrase « da ist Wasser im Gas » ?",
|
||||
"propositions": [
|
||||
"Kohlengas",
|
||||
"Schiefergas",
|
||||
"Jagdgas",
|
||||
"Erdgas"
|
||||
],
|
||||
"réponse": "Kohlengas",
|
||||
"anecdote": "In der Vergangenheit konnte die Flamme der Wiedererwärmung mit mit Wasserdampf beladenem Kohlegas gelöscht werden, was zu Verzögerungen und Streitigkeiten führte."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Welche Art von Kampf ist der Ausdruck « am Fuße der Mauer » ?",
|
||||
"propositions": [
|
||||
"Nackte hand",
|
||||
"Lance",
|
||||
"Schwert",
|
||||
"Axt"
|
||||
],
|
||||
"réponse": "Schwert",
|
||||
"anecdote": "Als sich der Gegner zurückzog, kam ein Moment, als er am Fuße der Mauer war und ihn zwang, sich zu verteidigen oder eine Niederlage zu gestehen."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Was ist das Datum des Ausdrucks « ein weiteres Paar Ärmel » ?",
|
||||
"propositions": [
|
||||
"Renaissance",
|
||||
"Vorgeschichte",
|
||||
"Altertum",
|
||||
"Mittelalter"
|
||||
],
|
||||
"réponse": "Mittelalter",
|
||||
"anecdote": "Die Ärmel waren ein abnehmbarer Teil der übrigen Gewohnheit: Im Laufe des Tages wurden die Ärmel mit Hilfe seiner Aktivitäten gewechselt."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Welcher Beruf führte im 18. Jahrhundert zum Ende der Bohnen ?",
|
||||
"propositions": [
|
||||
"Marin",
|
||||
"Feuerwehrmann",
|
||||
"Gerichtsvollzieher",
|
||||
"Anwalt"
|
||||
],
|
||||
"réponse": "Marin",
|
||||
"anecdote": "Es war ratsam, lebende Tiere und frische Produkte an Bord zu essen, dann Kekse, geräucherte Produkte und schließlich Schinken."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Wer soll ursprünglich « den Kofferraum gemacht » haben ?",
|
||||
"propositions": [
|
||||
"Banker",
|
||||
"Fahrer",
|
||||
"Explorer",
|
||||
"Gefangener"
|
||||
],
|
||||
"réponse": "Gefangener",
|
||||
"anecdote": "Dieser Ausdruck scheint tatsächlich um 1935 im Gefängnisumfeld erschienen zu sein und bedeutet « entkommen » oder « sich schön machen »."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "Welchen dieser Ausdrücke, synonym mit Verweis, könnten Sie verwenden ?",
|
||||
"propositions": [
|
||||
"Die Hose stopfen",
|
||||
"Haben die Lebern",
|
||||
"Den Kuss aufteilen",
|
||||
"Eine Seife geben"
|
||||
],
|
||||
"réponse": "Eine Seife geben",
|
||||
"anecdote": "In der Vergangenheit wuschen Frauen mit Seife und einer Palette, tauschten Informationen, Klatsch und Mittelmäßigkeit aus."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Was wurde im 16. Jahrhundert wirklich geschnitten, um jemandem « die Pfeife zu schneiden » ?",
|
||||
"propositions": [
|
||||
"Füße",
|
||||
"Sex",
|
||||
"Hals",
|
||||
"Hand"
|
||||
],
|
||||
"réponse": "Hals",
|
||||
"anecdote": "Tatsächlich zeigte zu dieser Zeit die Pfeife im übertragenen Sinne den Hals an, den Ort, an dem die Luftröhrenarterie, durch die wir atmen, verläuft."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "An welchem Ort ist der Ausdruck « Lügen wie ein Zahnputzer » entstanden ?",
|
||||
"propositions": [
|
||||
"Straße",
|
||||
"Felder",
|
||||
"Krankenhäuser",
|
||||
"Museen"
|
||||
],
|
||||
"réponse": "Straße",
|
||||
"anecdote": "Im neunzehnten Jahrhundert übten Zahnärzte auf der Straße und engagierten Musiker, um mögliche neue Patienten nicht abzuschrecken."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "Was ist der Zweck der Phrase « Mittag an der Tür sehen » ?",
|
||||
"propositions": [
|
||||
"Wetterfahne",
|
||||
"Sonnenuhr",
|
||||
"Seismograph",
|
||||
"Kalender"
|
||||
],
|
||||
"réponse": "Sonnenuhr",
|
||||
"anecdote": "Auf dem Land war es üblich, dass ein solches Zifferblatt an der nach Süden ausgerichteten Vorderseite des Hauses in der Nähe des Eingangs angebracht wurde."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "Aus welcher Welt stammt der berühmte Satz « watch the grain » ?",
|
||||
"propositions": [
|
||||
"Geschäft",
|
||||
"Landwirtschaft",
|
||||
"Maritime",
|
||||
"Universität"
|
||||
],
|
||||
"réponse": "Maritime",
|
||||
"anecdote": "Das Getreide ist auf See ein plötzliches windiges Wetter, das Seeleute fürchten und daher mit großer Aufmerksamkeit beobachten."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "Der Ausdruck « ein türkischer Kopf sein » kommt von welchem bestimmten Ort ?",
|
||||
"propositions": [
|
||||
"Jahrmarkt",
|
||||
"Theater",
|
||||
"Zirkus",
|
||||
"Oper"
|
||||
],
|
||||
"réponse": "Jahrmarkt",
|
||||
"anecdote": "Der Teil, auf den man traf, um seine Muskelkraft zu messen, stellte im 19. Jahrhundert einen Türken dar, der besonders stark war."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Für wen war der Ausdruck « Geruch nach versengt » gedacht ?",
|
||||
"propositions": [
|
||||
"Ketzer",
|
||||
"Propheten",
|
||||
"Diener",
|
||||
"Priester"
|
||||
],
|
||||
"réponse": "Ketzer",
|
||||
"anecdote": "Der Begriff bezieht sich auf Ketzer, potenzielle Opfer der Gewitter der Inquisition und oft dazu verurteilt, den Becher zu beenden."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Welche Menschen stehen hinter der Entsendung des « Sündenbocks » ?",
|
||||
"propositions": [
|
||||
"Hebräer",
|
||||
"Kelten",
|
||||
"Etrusker",
|
||||
"Phönizier"
|
||||
],
|
||||
"réponse": "Hebräer",
|
||||
"anecdote": "Am Versöhnungsfest sandte der Große Prediger eine arme Ziege mit all der Sünde und Bosheit Israels in die Wüste."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "Um welches Spiel könnte man die Galerie jemals « verwöhnen » ?",
|
||||
"propositions": [
|
||||
"Baseball",
|
||||
"Palmenspiel",
|
||||
"Seilschießen",
|
||||
"Polo"
|
||||
],
|
||||
"réponse": "Palmenspiel",
|
||||
"anecdote": "Die Galerien sind die überdachten Räume rund um das Palmenspiel, in denen sich die Zuschauer befanden, um die Bewunderung zu wecken."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "An welchem öffentlichen Ort konnten wir einmal eine « Schmetterlingsminute » hören ?",
|
||||
"propositions": [
|
||||
"Museum",
|
||||
"Café",
|
||||
"Theater",
|
||||
"Universität"
|
||||
],
|
||||
"réponse": "Café",
|
||||
"anecdote": "Papillon hieß ein Kellnercafé im Le Cadran in Paris: Die « Minute Papillon » sagte ihm, er könne sich Zeit lassen."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "In welcher lexikalischen Beziehung befindet sich der Ursprung des Ausdrucks « in Kohl » ?",
|
||||
"propositions": [
|
||||
"Paronymie",
|
||||
"Apocope",
|
||||
"Paraphrase",
|
||||
"Anastrophe"
|
||||
],
|
||||
"réponse": "Paronymie",
|
||||
"anecdote": "Es ist die Paronymie zwischen Kohl und Versagen, die die allererste Bedeutung dieses Ausdrucks aus der Mitte des neunzehnten Jahrhunderts darstellt."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "In der Sprache welcher Rassen kam man « Finger in die Nase » ?",
|
||||
"propositions": [
|
||||
"Hintergrund",
|
||||
"Radfahrer",
|
||||
"Pferde",
|
||||
"Automobile"
|
||||
],
|
||||
"réponse": "Pferde",
|
||||
"anecdote": "Es ist ein lustiges Bild, das zeigt, wie einfach es für den Jockey war, mit mehr Fingern in der Nase zu gewinnen."
|
||||
}
|
||||
]
|
||||
},
|
||||
"es": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "¿Qué deporte de lucha ha dado origen a la expresión « tirar la toalla » ?",
|
||||
"propositions": [
|
||||
"Captura",
|
||||
"Boxeo",
|
||||
"Judo",
|
||||
"Lucha libre"
|
||||
],
|
||||
"réponse": "Boxeo",
|
||||
"anecdote": "Cuando el entrenador no pudo reconocer tanto a su potro que había tomado un taco, tiró la esponja al suelo."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "¿De qué sección militar proviene la expresión « ser despedido » ?",
|
||||
"propositions": [
|
||||
"Radio",
|
||||
"Infantería",
|
||||
"Logística",
|
||||
"Caballería"
|
||||
],
|
||||
"réponse": "Caballería",
|
||||
"anecdote": "Cuando los jinetes fueron sancionados por sus superiores, se retiraron sus armas, sus caballos y, a veces, sus calzoncillos."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "¿De qué escritura proviene la expresión « viejo como Matusalén » ?",
|
||||
"propositions": [
|
||||
"Guía Michelin",
|
||||
"Petit Larousse",
|
||||
"Biblia",
|
||||
"Quid"
|
||||
],
|
||||
"réponse": "Biblia",
|
||||
"anecdote": "Matusalén, quien murió a la edad de 969, es famoso por ser la persona mayor mencionada en el Antiguo Testamento."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "¿Qué expresión significa que tienes un modelo de tableta reciente ?",
|
||||
"propositions": [
|
||||
"Voz alta",
|
||||
"Primera ola",
|
||||
"De moda",
|
||||
"Nuevo sonido"
|
||||
],
|
||||
"réponse": "De moda",
|
||||
"anecdote": "Mucho antes de la invención de la televisión y la lectura de periódicos por parte de la población, la información se gritaba en la plaza pública."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "¿Qué animal se esconde detrás de la expresión « orgulloso como un piojo » ?",
|
||||
"propositions": [
|
||||
"Caballo",
|
||||
"Oso",
|
||||
"Gallo",
|
||||
"León"
|
||||
],
|
||||
"réponse": "Gallo",
|
||||
"anecdote": "De hecho, el piojo fue una vez el gallo, asociado en el simbolismo occidental con vigor, coraje y orgullo."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "¿Qué documento se refiere a la expresión « en auto Simone », a menudo tomada por Guy Lux ?",
|
||||
"propositions": [
|
||||
"Boleto aéreo",
|
||||
"Billete de tren",
|
||||
"CV",
|
||||
"Permiso de conducir"
|
||||
],
|
||||
"réponse": "Permiso de conducir",
|
||||
"anecdote": "Mademoiselle Simone Louise de Pinet de Borde des Forest fue una de las primeras mujeres francesas en obtener su licencia de conducir en 1929."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "A principios del siglo XX, ¿en qué lugar era común « hacer un cigarrillo » ?",
|
||||
"propositions": [
|
||||
"Hospital",
|
||||
"Corte",
|
||||
"Teatro",
|
||||
"Circo"
|
||||
],
|
||||
"réponse": "Teatro",
|
||||
"anecdote": "A principios del siglo XX, para un actor de teatro, la expresión « tener el gran tabaco » significaba, de hecho, « ser muy aplaudido »."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "¿Cómo vas si lo haces « sin fanfarria » ?",
|
||||
"propositions": [
|
||||
"Sin ruido",
|
||||
"Sin ropa",
|
||||
"Sin familia",
|
||||
"Sin dinero"
|
||||
],
|
||||
"réponse": "Sin ruido",
|
||||
"anecdote": "Procedente del mundo militar en 1650, esta expresión se generaliza a todas las acciones llevadas a cabo de forma discreta o secreta."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "¿Cómo es necesario maniobrar sin comprometer ?",
|
||||
"propositions": [
|
||||
"Con aletas",
|
||||
"En la parte de atrás",
|
||||
"Entre dos aguas",
|
||||
"A contra corriente"
|
||||
],
|
||||
"réponse": "Entre dos aguas",
|
||||
"anecdote": "Esta expresión, que apareció en el siglo XIV, en realidad proviene de la Armada, donde « nadar » significaba « conducir un bote »."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "¿Qué expresión se evoca en los hombres de cuarenta y tantos años ?",
|
||||
"propositions": [
|
||||
"Para hacer que el barón",
|
||||
"Da vuelta la página",
|
||||
"Dón del mediodía",
|
||||
"Lleno de as"
|
||||
],
|
||||
"réponse": "Dón del mediodía",
|
||||
"anecdote": "Este demonio nacería primero de un error en la traducción de la Biblia del hebreo al griego por la Septuaginta."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "¿Qué deberías ser si te piden que « no le dispares al pianista » ?",
|
||||
"propositions": [
|
||||
"Indulgente",
|
||||
"Temeroso",
|
||||
"Franco",
|
||||
"Rápido"
|
||||
],
|
||||
"réponse": "Indulgente",
|
||||
"anecdote": "Este mensaje fue escrito en la entrada de los salones porque cuando comenzaba una pelea, el pianista era a menudo el primer objetivo."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "¿En qué posición te encuentras si estás en « el asiento caliente » ?",
|
||||
"propositions": [
|
||||
"De pie",
|
||||
"Acostado",
|
||||
"Sentado",
|
||||
"Colgado"
|
||||
],
|
||||
"réponse": "Sentado",
|
||||
"anecdote": "En el siglo XIII, el asiento caliente era en los tribunales un asiento bajo para que los jueces puedan dominar y degradar al acusado."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "¿Cómo viste a un cachorro para convertirse en un « oso mal lamido » ?",
|
||||
"propositions": [
|
||||
"Difform",
|
||||
"Enfermo",
|
||||
"Afeitado",
|
||||
"Loco"
|
||||
],
|
||||
"réponse": "Difform",
|
||||
"anecdote": "En el siglo XVII, se creía que los cachorros nacieron deformados y que fueron las madres quienes los hicieron lamiéndolos por completo."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "¿Qué tipo de gas proviene de la frase « hay agua en el gas » ?",
|
||||
"propositions": [
|
||||
"Gas de caza",
|
||||
"Gas de esquisto",
|
||||
"Gas de carbón",
|
||||
"Gas natural"
|
||||
],
|
||||
"réponse": "Gas de carbón",
|
||||
"anecdote": "En el pasado, la llama del recalentamiento podía extinguirse con gas de carbón cargado con vapor de agua, lo que causaba demoras y disputas."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "¿Qué tipo de pelea es la expresión « al pie del muro » ?",
|
||||
"propositions": [
|
||||
"Mano desnuda",
|
||||
"Lanza",
|
||||
"Espada",
|
||||
"Hacha"
|
||||
],
|
||||
"réponse": "Espada",
|
||||
"anecdote": "Cuando el oponente retrocedió, llegó un momento en que estaba al pie del muro, obligándolo a defenderse o confesar su derrota."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "¿Cuál es la fecha de la expresión « otro par de mangas » ?",
|
||||
"propositions": [
|
||||
"Renacimiento",
|
||||
"Edad media",
|
||||
"Prehistoria",
|
||||
"Edad Antigua"
|
||||
],
|
||||
"réponse": "Edad media",
|
||||
"anecdote": "Las mangas eran una parte desmontable del resto del hábito: en el día, las mangas de uno se cambiaban con la ayuda de sus actividades."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "En el siglo XVIII, ¿qué profesión dio origen al fin de los frijoles ?",
|
||||
"propositions": [
|
||||
"Alguacil",
|
||||
"Bombero",
|
||||
"Marin",
|
||||
"Abogado"
|
||||
],
|
||||
"réponse": "Marin",
|
||||
"anecdote": "Se aconsejaba comer animales vivos y productos frescos a bordo, luego galletas, productos ahumados y finalmente jamones."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Originalmente, ¿quién se decía que había « hecho el baúl » ?",
|
||||
"propositions": [
|
||||
"Conductor",
|
||||
"Banquero",
|
||||
"Explorador",
|
||||
"Prisionero"
|
||||
],
|
||||
"réponse": "Prisionero",
|
||||
"anecdote": "Esta expresión parece haber aparecido alrededor de 1935 en el ambiente de la prisión que significa « escapar » o « hacerse bello »."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "¿Cuál de estas expresiones, sinónimo de reprimenda, podrías usar ?",
|
||||
"propositions": [
|
||||
"Rellenar la holgura",
|
||||
"Partiendo el beso",
|
||||
"Para pasar un jabón",
|
||||
"Tener los hígados"
|
||||
],
|
||||
"réponse": "Para pasar un jabón",
|
||||
"anecdote": "En el pasado, las mujeres lavaban la ropa con jabón y una paleta, intercambiando información, chismes y mediocridad."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "En el siglo XVI, ¿qué se cortó realmente para « cortar el silbato » a alguien ?",
|
||||
"propositions": [
|
||||
"Pies",
|
||||
"Garganta",
|
||||
"Sexo",
|
||||
"Mano"
|
||||
],
|
||||
"réponse": "Garganta",
|
||||
"anecdote": "De hecho, en ese momento, el silbido, en sentido figurado, indicaba la garganta, el lugar por donde pasa la tráquea a través de la cual respiramos."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "¿Qué lugar dio origen a la expresión « acostado como un extractor de dientes » ?",
|
||||
"propositions": [
|
||||
"Campos",
|
||||
"Calle",
|
||||
"Museos",
|
||||
"Hospitales"
|
||||
],
|
||||
"réponse": "Calle",
|
||||
"anecdote": "En el siglo XIX, los dentistas se ejercitaban en la calle y contrataban músicos para no disuadir a posibles nuevos pacientes."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "¿Cuál es el propósito de la frase « ver mediodía en la puerta » ?",
|
||||
"propositions": [
|
||||
"Veleta",
|
||||
"Calendario",
|
||||
"Sismógrafo",
|
||||
"Reloj de sol"
|
||||
],
|
||||
"réponse": "Reloj de sol",
|
||||
"anecdote": "En el campo, era común que tal esfera se colocara en el frente de la casa hacia el sur, cerca de la entrada."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "¿De qué mundo proviene la famosa frase « ver el grano » ?",
|
||||
"propositions": [
|
||||
"Marítimo",
|
||||
"Universidad",
|
||||
"Negocios",
|
||||
"Agrícola"
|
||||
],
|
||||
"réponse": "Marítimo",
|
||||
"anecdote": "El grano es en el mar un clima ventoso repentino que los marineros temen y, por lo tanto, observan con gran atención."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "¿De qué lugar en particular proviene la expresión « ser cabeza turca » ?",
|
||||
"propositions": [
|
||||
"Opéra",
|
||||
"Teatro",
|
||||
"Feria de diversión",
|
||||
"Circo"
|
||||
],
|
||||
"réponse": "Feria de diversión",
|
||||
"anecdote": "La parte en la que se golpeaba para medir la fuerza muscular de uno representaba en el siglo XIX una cabeza de turco, particularmente fuerte."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "¿Para quién era la frase « olor a chamuscado » ?",
|
||||
"propositions": [
|
||||
"Fieles",
|
||||
"Profetas",
|
||||
"Sacerdotes",
|
||||
"Herejes"
|
||||
],
|
||||
"réponse": "Herejes",
|
||||
"anecdote": "El término se refiere a herejes, víctimas potenciales de las tormentas eléctricas de la Inquisición y, a menudo, condenados a poner fin al vaso de precipitados."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "¿Qué personas están detrás del envío del « chivo expiatorio » ?",
|
||||
"propositions": [
|
||||
"Celtas",
|
||||
"Fenicios",
|
||||
"Etruscos",
|
||||
"Hebreos"
|
||||
],
|
||||
"réponse": "Hebreos",
|
||||
"anecdote": "En la fiesta de la expiación, el Gran Predicador envió al desierto una cabra pobre con todo el pecado y la malicia de Israel."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "¿Qué tipo de juego alguna vez se usó para « estropear la galería » ?",
|
||||
"propositions": [
|
||||
"Juego de palma",
|
||||
"Polo",
|
||||
"Beisbol",
|
||||
"Tiro de cuerda"
|
||||
],
|
||||
"réponse": "Juego de palma",
|
||||
"anecdote": "Las galerías son los espacios cubiertos que rodean el juego de la palma donde se celebraron los espectadores para despertar la admiración."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "¿En qué lugar público podríamos escuchar un « minuto de mariposa » ?",
|
||||
"propositions": [
|
||||
"Universidad",
|
||||
"Museo",
|
||||
"Teatro",
|
||||
"Cafetería"
|
||||
],
|
||||
"réponse": "Cafetería",
|
||||
"anecdote": "Papillon era el nombre de un camarero de un café en Le Cadran en París: el « Minuto Papillon » le dijo que podía tomarse su tiempo."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "¿Qué relación léxica es el origen de la expresión « estar en la col » ?",
|
||||
"propositions": [
|
||||
"Apocope",
|
||||
"Anastrophe",
|
||||
"Paráfrasis",
|
||||
"Paronimia"
|
||||
],
|
||||
"réponse": "Paronimia",
|
||||
"anecdote": "Es la paronimia entre las coles y el fracaso el primer significado de esta expresión que data de mediados del siglo XIX."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "¿En el lenguaje de qué razas aparecieron « dedos en la nariz » ?",
|
||||
"propositions": [
|
||||
"Automóviles",
|
||||
"Antecedentes",
|
||||
"Ciclistas",
|
||||
"Equino"
|
||||
],
|
||||
"réponse": "Equino",
|
||||
"anecdote": "Es una imagen divertida que muestra lo fácil que fue para el jinete ganar, con más dedos en la nariz."
|
||||
}
|
||||
]
|
||||
},
|
||||
"it": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "Quale sport di combattimento ha dato vita all'espressione « gettare la spugna » ?",
|
||||
"propositions": [
|
||||
"Judo",
|
||||
"Pugilato",
|
||||
"Cattura",
|
||||
"Wrestling"
|
||||
],
|
||||
"réponse": "Pugilato",
|
||||
"anecdote": "Quando l'allenatore non riuscì a riconoscere il suo puledro così tanto da aver preso una mazzetta, gettò la spugna a terra."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Da quale sezione militare deriva l'espressione « essere licenziato » ?",
|
||||
"propositions": [
|
||||
"Radio",
|
||||
"Logistica",
|
||||
"Cavalleria",
|
||||
"Fanteria"
|
||||
],
|
||||
"réponse": "Cavalleria",
|
||||
"anecdote": "Quando i cavalieri venivano sanzionati dai loro superiori, le loro armi, i loro cavalli e talvolta le loro mutande venivano rimosse."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Da quale scrittura deriva l'espressione « vecchio come Methuselah » ?",
|
||||
"propositions": [
|
||||
"Guida Michelin",
|
||||
"Quid",
|
||||
"Bibbia",
|
||||
"Petit Larousse"
|
||||
],
|
||||
"réponse": "Bibbia",
|
||||
"anecdote": "Methuselah, morto all'età di 969 anni, è famoso per essere la persona più anziana menzionata nell'Antico Testamento."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Quale espressione significa che hai un modello di tablet recente ?",
|
||||
"propositions": [
|
||||
"Nuovo suono",
|
||||
"Voce alta",
|
||||
"Prima ondata",
|
||||
"Alla moda"
|
||||
],
|
||||
"réponse": "Alla moda",
|
||||
"anecdote": "Molto prima dell'invenzione della televisione e della lettura dei giornali da parte della popolazione, le informazioni venivano gridate in piazza."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Quale animale si nasconde dietro l'espressione « orgoglioso come un pidocchio » ?",
|
||||
"propositions": [
|
||||
"Orso",
|
||||
"Cazzo",
|
||||
"Cavallo",
|
||||
"Lion"
|
||||
],
|
||||
"réponse": "Cazzo",
|
||||
"anecdote": "In effetti, il pidocchio era un tempo il gallo, associato al simbolismo occidentale con vigore, coraggio e orgoglio."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Quale documento fa riferimento all'espressione « in macchina Simone », spesso ripresa da Guy Lux ?",
|
||||
"propositions": [
|
||||
"Patente di guida",
|
||||
"Biglietto aereo",
|
||||
"CV",
|
||||
"Biglietto del treno"
|
||||
],
|
||||
"réponse": "Patente di guida",
|
||||
"anecdote": "La signora Simone Louise de Pinet di Borde des Forest è stata una delle prime donne francesi ad ottenere la patente nel 1929."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "All'inizio del XX secolo, in quale luogo era comune « fare una sigaretta » ?",
|
||||
"propositions": [
|
||||
"Teatro",
|
||||
"Corte",
|
||||
"Circo",
|
||||
"Ospedale"
|
||||
],
|
||||
"réponse": "Teatro",
|
||||
"anecdote": "All'inizio del XX secolo, per un attore teatrale, l'espressione « avere il grande tabacco » significava in realtà « essere molto applaudito »."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "Come vai se lo fai « senza fanfara » ?",
|
||||
"propositions": [
|
||||
"Senza vestiti",
|
||||
"Senza soldi",
|
||||
"Senza famiglia",
|
||||
"Senza rumore"
|
||||
],
|
||||
"réponse": "Senza rumore",
|
||||
"anecdote": "Proveniente dal mondo militare nel 1650, questa espressione è generalizzata a tutte le azioni compiute in modo discreto o segreto."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Come è necessario manovrare senza scendere a compromessi ?",
|
||||
"propositions": [
|
||||
"Andando contro corrente",
|
||||
"Sul retro",
|
||||
"Con pinne",
|
||||
"Tra due acque"
|
||||
],
|
||||
"réponse": "Tra due acque",
|
||||
"anecdote": "Questa espressione, apparsa nel XIV secolo, proviene in realtà dalla Marina, dove « nuotare » significava « guidare una barca »."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "Quale espressione viene evocata negli uomini sulla quarantina ?",
|
||||
"propositions": [
|
||||
"Domani a mezzogiorno",
|
||||
"Per fare il barone",
|
||||
"Pieno di asso",
|
||||
"Gira la pagina"
|
||||
],
|
||||
"réponse": "Domani a mezzogiorno",
|
||||
"anecdote": "Questo demone sarebbe nato da un errore nella traduzione della Bibbia dall'ebraico al greco da parte dei Settanta."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Cosa dovresti fare se ti viene chiesto di « non sparare al pianista » ?",
|
||||
"propositions": [
|
||||
"Pauroso",
|
||||
"Franco",
|
||||
"Indulgente",
|
||||
"Veloce"
|
||||
],
|
||||
"réponse": "Indulgente",
|
||||
"anecdote": "Questo messaggio è stato scritto all'ingresso dei saloni perché quando è iniziata una rissa, il pianista è stato spesso il primo obiettivo."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "In quale posizione ti trovi se sei « nella sedia calda » ?",
|
||||
"propositions": [
|
||||
"Hung",
|
||||
"Seduto",
|
||||
"In piedi",
|
||||
"Sdraiati"
|
||||
],
|
||||
"réponse": "Seduto",
|
||||
"anecdote": "Nel XIII secolo, la sede principale era nei tribunali una sede bassa in modo che i giudici potessero dominare e degradare gli accusati."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "Come hai visto un cucciolo diventare un « orso leccato male » ?",
|
||||
"propositions": [
|
||||
"Rasato",
|
||||
"Difform",
|
||||
"Pazzo",
|
||||
"Malato"
|
||||
],
|
||||
"réponse": "Difform",
|
||||
"anecdote": "Nel diciassettesimo secolo, si credeva che i cuccioli fossero nati deformi e che fossero le madri a farli leccandoli a lungo."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Che tipo di gas deriva dalla frase « c'è acqua nel gas » ?",
|
||||
"propositions": [
|
||||
"Gas naturale",
|
||||
"Gas da caccia",
|
||||
"Gas di carbone",
|
||||
"Gas di scisto"
|
||||
],
|
||||
"réponse": "Gas di carbone",
|
||||
"anecdote": "In passato, la fiamma del riscaldamento poteva estinguersi con gas carbone caricato con vapore acqueo, causando ritardi e controversie."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Che tipo di lotta è l'espressione « ai piedi del muro » ?",
|
||||
"propositions": [
|
||||
"Lancia",
|
||||
"Spada",
|
||||
"Mano nuda",
|
||||
"Ax"
|
||||
],
|
||||
"réponse": "Spada",
|
||||
"anecdote": "Quando l'avversario indietreggiò, arrivò un momento in cui era ai piedi del muro, costringendolo a difendersi o a confessare la sconfitta."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Qual è la data dell'espressione « un altro paio di maniche » ?",
|
||||
"propositions": [
|
||||
"Rinascimento",
|
||||
"Medioevo",
|
||||
"Preistoria",
|
||||
"Storia antica"
|
||||
],
|
||||
"réponse": "Medioevo",
|
||||
"anecdote": "Le maniche erano una parte staccabile del resto dell'abitudine: durante il giorno, le maniche venivano cambiate con l'aiuto delle sue attività."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Nel diciottesimo secolo, quale professione ha dato origine alla fine dei fagioli ?",
|
||||
"propositions": [
|
||||
"Pompiere",
|
||||
"Ufficiale giudiziario",
|
||||
"Marin",
|
||||
"Avvocato"
|
||||
],
|
||||
"réponse": "Marin",
|
||||
"anecdote": "Si consigliava di mangiare animali vivi e prodotti freschi a bordo, quindi biscotti, prodotti affumicati e infine prosciutti."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "In origine, chi si diceva avesse « insaccato » ?",
|
||||
"propositions": [
|
||||
"Driver",
|
||||
"Banchiere",
|
||||
"Explorer",
|
||||
"Prigioniero"
|
||||
],
|
||||
"réponse": "Prigioniero",
|
||||
"anecdote": "Questa espressione sembra essere apparsa intorno al 1935 nell'ambiente carcerario per significare « fuggire » o « rendersi bella »."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "Quale di queste espressioni, sinonimo di rimprovero, potresti usare ?",
|
||||
"propositions": [
|
||||
"I fegati",
|
||||
"Dividere il bacio",
|
||||
"Passare un sapone",
|
||||
"Farcire il gioco"
|
||||
],
|
||||
"réponse": "Passare un sapone",
|
||||
"anecdote": "In passato, le donne facevano il bucato usando sapone e una tavolozza, scambiando informazioni, pettegolezzi e mediocrità."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Nel sedicesimo secolo, cosa fu davvero tagliato per « tagliare il fischio » a qualcuno ?",
|
||||
"propositions": [
|
||||
"Gola",
|
||||
"Piedi",
|
||||
"Sesso",
|
||||
"Mano"
|
||||
],
|
||||
"réponse": "Gola",
|
||||
"anecdote": "Infatti, a quel tempo, il fischio, in senso figurato, indicava la gola, il punto in cui passa l'arteria trachea attraverso la quale respiriamo."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Quale luogo ha dato vita all'espressione « mentire come un estrattore di denti » ?",
|
||||
"propositions": [
|
||||
"Ospedali",
|
||||
"Campi",
|
||||
"Via",
|
||||
"Musei"
|
||||
],
|
||||
"réponse": "Via",
|
||||
"anecdote": "Nel diciannovesimo secolo, i dentisti si esercitavano in strada e assumevano musicisti per non scoraggiare possibili nuovi pazienti."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "Qual è lo scopo della frase « vedi mezzogiorno alla porta » ?",
|
||||
"propositions": [
|
||||
"Sismografo",
|
||||
"Banderuola",
|
||||
"Calendario",
|
||||
"Meridiana"
|
||||
],
|
||||
"réponse": "Meridiana",
|
||||
"anecdote": "In campagna, era comune che un simile quadrante fosse posizionato nella parte anteriore della casa esposta a sud, vicino all'ingresso."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "Da quale mondo viene la famosa frase « guarda il grano » ?",
|
||||
"propositions": [
|
||||
"Marittimo",
|
||||
"Affari",
|
||||
"Agricolo",
|
||||
"Università"
|
||||
],
|
||||
"réponse": "Marittimo",
|
||||
"anecdote": "Il grano è in mare un improvviso tempo ventoso che i marinai temono e quindi guardano con grande attenzione."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "L'espressione « essere una testa turca » viene da quale luogo particolare ?",
|
||||
"propositions": [
|
||||
"Circo",
|
||||
"Fiera del divertimento",
|
||||
"Opéra",
|
||||
"Teatro"
|
||||
],
|
||||
"réponse": "Fiera del divertimento",
|
||||
"anecdote": "La parte su cui si colpiva per misurare la propria forza muscolare rappresentava nel XIX secolo una testa di turco, particolarmente forte."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Per chi era la frase « odore di cantato » ?",
|
||||
"propositions": [
|
||||
"Profeti",
|
||||
"Sacerdoti",
|
||||
"Eretici",
|
||||
"Fedeli"
|
||||
],
|
||||
"réponse": "Eretici",
|
||||
"anecdote": "Il termine si riferisce agli eretici, potenziali vittime dei temporali dell'Inquisizione e spesso condannati a porre fine al becher."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Quali sono le persone dietro l'invio del « capro espiatorio » ?",
|
||||
"propositions": [
|
||||
"Hebreo",
|
||||
"Celti",
|
||||
"Fenici",
|
||||
"Etruschi"
|
||||
],
|
||||
"réponse": "Hebreo",
|
||||
"anecdote": "Alla festa dell'espiazione, il Grande Predicatore mandò nel deserto una povera capra con tutto il peccato e la malizia di Israele."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "Che tipo di gioco veniva usato una volta per « rovinare la galleria » ?",
|
||||
"propositions": [
|
||||
"Polo",
|
||||
"Tiro con la corda",
|
||||
"Gioco del palmo",
|
||||
"Baseball"
|
||||
],
|
||||
"réponse": "Gioco del palmo",
|
||||
"anecdote": "Le gallerie sono gli spazi coperti che circondano il gioco della palma in cui si sono tenuti gli spettatori in cui suscitare l'ammirazione."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "In quale luogo pubblico potremmo sentire una volta un « minuto farfalla » ?",
|
||||
"propositions": [
|
||||
"Caffetteria",
|
||||
"Museo",
|
||||
"Università",
|
||||
"Teatro"
|
||||
],
|
||||
"réponse": "Caffetteria",
|
||||
"anecdote": "Papillon era il nome di un server di caffè a Cadran - Parigi: il \"Miinute Papillon\" gli disse che poteva prendersi il suo tempo."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Quale relazione lessicale è l'origine dell'espressione « essere in cavolo » ?",
|
||||
"propositions": [
|
||||
"Parafrasi",
|
||||
"Apocope",
|
||||
"Paronimia",
|
||||
"Anastrophe"
|
||||
],
|
||||
"réponse": "Paronimia",
|
||||
"anecdote": "È la paronimia tra cavoli e insuccessi che è il primo significato di questa espressione risalente alla metà del diciannovesimo secolo."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Nel linguaggio di quali razze sono arrivate le « dita nel naso » ?",
|
||||
"propositions": [
|
||||
"Contesto",
|
||||
"Equino",
|
||||
"Ciclisti",
|
||||
"Automobili"
|
||||
],
|
||||
"réponse": "Equino",
|
||||
"anecdote": "È una foto divertente che mostra quanto sia stato facile per il fantino vincere, con più dita nel naso."
|
||||
}
|
||||
]
|
||||
},
|
||||
"nl": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "Uit welke vechtsport is de uitdrukking « gooi in the towel » ontstaan ?",
|
||||
"propositions": [
|
||||
"Boksen",
|
||||
"Vangst",
|
||||
"Judo",
|
||||
"Worstelen"
|
||||
],
|
||||
"réponse": "Boksen",
|
||||
"anecdote": "Toen de coach zijn veulen niet zoveel kon herkennen dat hij een prop had genomen, gooide hij de spons op de grond."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Uit welk militair gedeelte komt de uitdrukking « af te leggen » ?",
|
||||
"propositions": [
|
||||
"Logistiek",
|
||||
"Radio",
|
||||
"Infanterie",
|
||||
"Cavalerie"
|
||||
],
|
||||
"réponse": "Cavalerie",
|
||||
"anecdote": "Toen de renners werden gesanctioneerd door hun superieuren, werden hun wapens, hun paarden en soms hun onderbroek verwijderd."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Uit welk schrift komt de uitdrukking « oud als Methuselah » ?",
|
||||
"propositions": [
|
||||
"Bijbel",
|
||||
"Petit Larousse",
|
||||
"Michelin gids",
|
||||
"Quid"
|
||||
],
|
||||
"réponse": "Bijbel",
|
||||
"anecdote": "Methuselah, die stierf op de leeftijd van 969, staat bekend als de oudste persoon die in het Oude Testament wordt genoemd."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Welke uitdrukking betekent dat u een recent tabletmodel heeft ?",
|
||||
"propositions": [
|
||||
"Eerste golf",
|
||||
"Trendy",
|
||||
"Nieuw geluid",
|
||||
"Hoge stem"
|
||||
],
|
||||
"réponse": "Trendy",
|
||||
"anecdote": "Lang voor de uitvinding van televisie en het lezen van kranten door de bevolking werd informatie op het openbare plein geschreeuwd."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Welk dier verstopt zich eigenlijk achter de uitdrukking « trots als een luis » ?",
|
||||
"propositions": [
|
||||
"Beer",
|
||||
"Leeuw",
|
||||
"Cock",
|
||||
"Paard"
|
||||
],
|
||||
"réponse": "Cock",
|
||||
"anecdote": "In feite was de luis ooit de haan, in Westerse symboliek geassocieerd met kracht, moed en trots."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Welk document verwijst naar de uitdrukking « met de auto Simone », vaak overgenomen door Guy Lux ?",
|
||||
"propositions": [
|
||||
"Rijbewijs",
|
||||
"Vliegticket",
|
||||
"Treinkaartje",
|
||||
"CV"
|
||||
],
|
||||
"réponse": "Rijbewijs",
|
||||
"anecdote": "Mademoiselle Simone Louise de Pinet van Borde des Forest was een van de eerste Franse vrouwen die haar rijbewijs behaalde in 1929."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Aan het begin van de twintigste eeuw, op welke plaats was het gebruikelijk om « een sigaret te maken » ?",
|
||||
"propositions": [
|
||||
"Ziekenhuis",
|
||||
"Circus",
|
||||
"Rechtbank",
|
||||
"Theater"
|
||||
],
|
||||
"réponse": "Theater",
|
||||
"anecdote": "Aan het begin van de 20e eeuw betekende de uitdrukking « de grote tabak hebben » voor een theateracteur in feite « zeer applaus »."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "Hoe ga je als je het doet « zonder fanfare » ?",
|
||||
"propositions": [
|
||||
"Zonder familie",
|
||||
"Zonder kleding",
|
||||
"Zonder geld",
|
||||
"Zonder lawaai"
|
||||
],
|
||||
"réponse": "Zonder lawaai",
|
||||
"anecdote": "Afkomstig uit de militaire wereld in 1650, wordt deze uitdrukking gegeneraliseerd naar alle acties die discreet of in het geheim worden uitgevoerd."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Hoe is het nodig om te manoeuvreren zonder concessies te doen ?",
|
||||
"propositions": [
|
||||
"Going tegen de huidige",
|
||||
"Tussen twee wateren",
|
||||
"Met vinnen",
|
||||
"Op de achterkant"
|
||||
],
|
||||
"réponse": "Tussen twee wateren",
|
||||
"anecdote": "Deze uitdrukking, die in de 14e eeuw verscheen, komt eigenlijk van de marine, waar « zwemmen » vervolgens « een boot besturen » betekende."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "Welke uitdrukking wordt bij mannen van in de veertig opgeroepen ?",
|
||||
"propositions": [
|
||||
"Vol met aas",
|
||||
"Om de baron te maken",
|
||||
"Demon van het middaguur",
|
||||
"Draai de pagina om"
|
||||
],
|
||||
"réponse": "Demon van het middaguur",
|
||||
"anecdote": "Deze demon zou eerst worden geboren uit een fout in de vertaling van de Bijbel van het Hebreeuws naar het Grieks door de Septuagint."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Wat moet je zijn als je wordt gevraagd « niet op de pianist te schieten » ?",
|
||||
"propositions": [
|
||||
"Indulgent",
|
||||
"Angstig",
|
||||
"Snel",
|
||||
"Franc"
|
||||
],
|
||||
"réponse": "Indulgent",
|
||||
"anecdote": "Deze boodschap werd geschreven bij de ingang van de saloons omdat toen een gevecht begon, de pianist vaak het eerste doelwit was."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "In welke positie bevind je je als je « op de hete stoel » zit ?",
|
||||
"propositions": [
|
||||
"Staand",
|
||||
"Hung",
|
||||
"Liggen",
|
||||
"Zittend"
|
||||
],
|
||||
"réponse": "Zittend",
|
||||
"anecdote": "In de dertiende eeuw was de warme stoel in de rechtbank een lage stoel zodat rechters de beschuldigde kunnen domineren en degraderen."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "Hoe zag je een welp een « slecht likte beer » worden ?",
|
||||
"propositions": [
|
||||
"Geschoren",
|
||||
"Gek",
|
||||
"Difform",
|
||||
"Ziek"
|
||||
],
|
||||
"réponse": "Difform",
|
||||
"anecdote": "In de zeventiende eeuw geloofde men dat welpen misvormd werden geboren en dat het de moeders waren die ze maakten door ze uitvoerig te likken."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Welk type gas komt van de uitdrukking « er zit water in het gas » ?",
|
||||
"propositions": [
|
||||
"Aardgas",
|
||||
"Jachtgas",
|
||||
"Steenkoolgas",
|
||||
"Schaliegas"
|
||||
],
|
||||
"réponse": "Steenkoolgas",
|
||||
"anecdote": "In het verleden kon de vlam van de herverwarming worden geblust met kolengas gevuld met waterdamp, wat vertraging en geschillen veroorzaakte."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Wat voor soort gevecht is de uitdrukking « aan de voet van de muur » ?",
|
||||
"propositions": [
|
||||
"Blote hand",
|
||||
"Bijl",
|
||||
"Zwaard",
|
||||
"Lance"
|
||||
],
|
||||
"réponse": "Zwaard",
|
||||
"anecdote": "Toen de tegenstander terugdeinsde, kwam er een moment dat hij aan de voet van de muur was en hem dwong zichzelf te verdedigen of de nederlaag te bekennen."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Wat is de datum van de uitdrukking « nog een paar mouwen » ?",
|
||||
"propositions": [
|
||||
"Oudheid",
|
||||
"Renaissance",
|
||||
"Middeleeuwen",
|
||||
"Prehistorie"
|
||||
],
|
||||
"réponse": "Middeleeuwen",
|
||||
"anecdote": "De mouwen waren een afneembaar onderdeel van de rest van de gewoonte: overdag werden iemands mouwen verwisseld met behulp van zijn activiteiten."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Welk beroep leidde in de achttiende eeuw tot het einde van bonen ?",
|
||||
"propositions": [
|
||||
"Brandweerman",
|
||||
"Advocaat",
|
||||
"Gerechtsdeurwaarder",
|
||||
"Marin"
|
||||
],
|
||||
"réponse": "Marin",
|
||||
"anecdote": "Het was raadzaam om levende dieren en verse producten aan boord te eten, vervolgens koekjes, gerookte producten en uiteindelijk ham."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Oorspronkelijk, wie werd gezegd « de kofferbak te hebben gemaakt » ?",
|
||||
"propositions": [
|
||||
"Stuurprogramma",
|
||||
"Bankier",
|
||||
"Explorer",
|
||||
"Gevangene"
|
||||
],
|
||||
"réponse": "Gevangene",
|
||||
"anecdote": "Deze uitdrukking lijkt inderdaad rond 1935 in de gevangenisomgeving te zijn verschenen en betekent « ontsnappen » of « zichzelf mooi maken »."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "Welke van deze uitdrukkingen, synoniem met berisping, zou je kunnen gebruiken ?",
|
||||
"propositions": [
|
||||
"Vul de speling",
|
||||
"De kus splitsen",
|
||||
"Zeep doorgeven",
|
||||
"Heb de levers"
|
||||
],
|
||||
"réponse": "Zeep doorgeven",
|
||||
"anecdote": "In het verleden wasten vrouwen met zeep en een palet, wisselden ze informatie, roddel en middelmatigheid uit."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Wat werd er in de zestiende eeuw echt aan gedaan om iemand te « fluiten » ?",
|
||||
"propositions": [
|
||||
"Voeten",
|
||||
"Hand",
|
||||
"Geslacht",
|
||||
"Keel"
|
||||
],
|
||||
"réponse": "Keel",
|
||||
"anecdote": "In feite duidde het fluitje toen figuurlijk de keel aan, de plaats waar de luchtpijp waardoor we ademen, passeert."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Op welke plaats is de uitdrukking « liegen als een tandentrekker » ontstaan ?",
|
||||
"propositions": [
|
||||
"Velden",
|
||||
"Ziekenhuizen",
|
||||
"Musea",
|
||||
"Straat"
|
||||
],
|
||||
"réponse": "Straat",
|
||||
"anecdote": "In de negentiende eeuw oefenden tandartsen op straat en huurden musici in om mogelijke nieuwe patiënten niet af te schrikken."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "Wat is het doel van de uitdrukking « zie middag aan de deur » ?",
|
||||
"propositions": [
|
||||
"Zonnewijzer",
|
||||
"Seismograaf",
|
||||
"Kalender",
|
||||
"Weathervane"
|
||||
],
|
||||
"réponse": "Zonnewijzer",
|
||||
"anecdote": "Op het platteland was het gebruikelijk dat een dergelijke wijzerplaat op de voorkant van het huis op het zuiden werd geplaatst, vlakbij de ingang."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "Uit welke wereld komt de beroemde zin « let op het graan » ?",
|
||||
"propositions": [
|
||||
"Maritiem",
|
||||
"Agrarisch",
|
||||
"Universiteit",
|
||||
"Zakelijk"
|
||||
],
|
||||
"réponse": "Maritiem",
|
||||
"anecdote": "Het graan is op zee een plotseling winderig weer dat zeilers vrezen en daarom met grote aandacht in de gaten houden."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "De uitdrukking « Turks hoofd zijn » komt van welke plaats ?",
|
||||
"propositions": [
|
||||
"Kermis",
|
||||
"Circus",
|
||||
"Opera",
|
||||
"Theater"
|
||||
],
|
||||
"réponse": "Kermis",
|
||||
"anecdote": "Het deel waarop iemand sloeg om zijn spierkracht te meten, vertegenwoordigde in de XIXe eeuw een Turk's hoofd, bijzonder sterk."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Voor wie was de uitdrukking « geur van gezongen » bedoeld ?",
|
||||
"propositions": [
|
||||
"Priesters",
|
||||
"Dienaren",
|
||||
"Ketters",
|
||||
"Profeten"
|
||||
],
|
||||
"réponse": "Ketters",
|
||||
"anecdote": "De term verwijst naar ketters, potentiële slachtoffers van de onweersbuien van de Inquisitie en vaak veroordeeld om de beker te beëindigen."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Welke mensen zitten achter het sturen van de « zondebok » ?",
|
||||
"propositions": [
|
||||
"Kelten",
|
||||
"Hebreeën",
|
||||
"Feniciërs",
|
||||
"Etrusken"
|
||||
],
|
||||
"réponse": "Hebreeën",
|
||||
"anecdote": "Op het verzoeningsfeest zond de Grote Prediker een arme geit met alle zonde en kwaadaardigheid van Israël naar de woestijn."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "Rond welk spel zou je ooit « de galerij kunnen bederven » ?",
|
||||
"propositions": [
|
||||
"Polo",
|
||||
"Honkbal",
|
||||
"Touw schieten",
|
||||
"Spel van palm"
|
||||
],
|
||||
"réponse": "Spel van palm",
|
||||
"anecdote": "De galerijen zijn de overdekte ruimtes rondom het palmspel waar de toeschouwers werden gehouden om bewondering op te wekken."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "Op welke openbare plaats konden we ooit een « vlinderminuut » horen ?",
|
||||
"propositions": [
|
||||
"Universiteit",
|
||||
"Koffiehuis",
|
||||
"Theater",
|
||||
"Museum"
|
||||
],
|
||||
"réponse": "Koffiehuis",
|
||||
"anecdote": "Papillon was de naam van een café-ober in Le Cadran in Parijs: de « Minute Papillon » vertelde hem dat hij zijn tijd kon nemen."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Welke lexicale relatie is de oorsprong van de uitdrukking « in kool » ?",
|
||||
"propositions": [
|
||||
"Apocope",
|
||||
"Parafrase",
|
||||
"Anastrophe",
|
||||
"Paronymie"
|
||||
],
|
||||
"réponse": "Paronymie",
|
||||
"anecdote": "Het is de paronymie tussen kool en mislukking die de eerste betekenis is van deze uitdrukking uit het midden van de negentiende eeuw."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "In de taal van welke rassen kwam men « vingers in de neus » ?",
|
||||
"propositions": [
|
||||
"Fietsers",
|
||||
"Auto's",
|
||||
"Paarden",
|
||||
"Achtergrond"
|
||||
],
|
||||
"réponse": "Paarden",
|
||||
"anecdote": "Het is een grappige foto die laat zien hoe gemakkelijk het was voor de jockey om te winnen, met meer vingers in zijn neus."
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
2250
misc/quiz/openquizzdb/faits-societe.json
Normal file
2250
misc/quiz/openquizzdb/faits-societe.json
Normal file
@ -0,0 +1,2250 @@
|
||||
{
|
||||
"fournisseur": "OpenQuizzDB - Fournisseur de contenu libre (https://www.openquizzdb.org)",
|
||||
"licence": "CC BY-SA",
|
||||
"rédacteur": "Philippe Bresoux",
|
||||
"difficulté": "4 / 5",
|
||||
"version": 1,
|
||||
"mise-à-jour": "2024-03-31",
|
||||
"catégorie-nom-slogan": {
|
||||
"fr": {
|
||||
"catégorie": "Vie quotidienne",
|
||||
"nom": "Faits de société",
|
||||
"slogan": "Les médias en ont parlé"
|
||||
},
|
||||
"en": {
|
||||
"catégorie": "Everyday life",
|
||||
"nom": "Company Facts",
|
||||
"slogan": "The media talked about it"
|
||||
},
|
||||
"es": {
|
||||
"catégorie": "Vida cotidiana",
|
||||
"nom": "Datos de la empresa",
|
||||
"slogan": "Los medios hablaron de ello"
|
||||
},
|
||||
"it": {
|
||||
"catégorie": "Vita di ogni giorno",
|
||||
"nom": "Fatti della società",
|
||||
"slogan": "Ne hanno parlato i media"
|
||||
},
|
||||
"de": {
|
||||
"catégorie": "Alltagsleben",
|
||||
"nom": "Fakten zum Unternehmen",
|
||||
"slogan": "Die Medien sprachen darüber"
|
||||
},
|
||||
"nl": {
|
||||
"catégorie": "Alledaagse leven",
|
||||
"nom": "Bedrijfsfeiten",
|
||||
"slogan": "De media spraken erover"
|
||||
}
|
||||
},
|
||||
"quizz": {
|
||||
"fr": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "Quel est le nouveau nom du groupe TotalFinaElf, rebaptisé le 6 mars 2003 ?",
|
||||
"propositions": [
|
||||
"Fina",
|
||||
"Elf",
|
||||
"Shell",
|
||||
"Total"
|
||||
],
|
||||
"réponse": "Total",
|
||||
"anecdote": "Le groupe TotalFinaElf a voulu de cette manière redorer son blason après le drame de l'usine AZF de Toulouse et le naufrage de l'Erika."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Quel jeu à cases à succès a connu son premier championnat du monde en 2006 ?",
|
||||
"propositions": [
|
||||
"Mots-croisés",
|
||||
"Sudoku",
|
||||
"Morpion",
|
||||
"Dames"
|
||||
],
|
||||
"réponse": "Sudoku",
|
||||
"anecdote": "Jana Tylova, économiste tchèque âgée de 31 ans, a remporté le 11 mars 2006 à Lucques en Italie le championnat du monde de sudoku."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Qui est le mondialement célèbre PDG du réseau social Facebook ?",
|
||||
"propositions": [
|
||||
"Mark Zuckerberg",
|
||||
"Bill Gates",
|
||||
"Paul Allen",
|
||||
"Steve Jobs"
|
||||
],
|
||||
"réponse": "Mark Zuckerberg",
|
||||
"anecdote": "Né le 14 mai 1984, Mark Zuckerberg a eu l'idée de lancer un réseau social étudiants programmé depuis sa chambre d'étudiant à Harvard."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Quelle sainte des Chiffonniers du Caire nous a quitté à presque 100 ans en 2008 ?",
|
||||
"propositions": [
|
||||
"Claire Ferchaud",
|
||||
"Thérèse de Lisieux",
|
||||
"Soeur Pauline",
|
||||
"Soeur Emmanuelle"
|
||||
],
|
||||
"réponse": "Soeur Emmanuelle",
|
||||
"anecdote": "De son vrai nom Madeleine Cinquin, Soeur Emmanuelle décida de se consacrer sa vie durant aux habitants des bidonvilles du Caire."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Quelle ville occupait en 2007 la première place mondiale pour les casinos ?",
|
||||
"propositions": [
|
||||
"Shanxi",
|
||||
"Xinjiang",
|
||||
"Macao",
|
||||
"Gansu"
|
||||
],
|
||||
"réponse": "Macao",
|
||||
"anecdote": "En 2007, la capitale chinoise Macao détrôna Las Vegas en annonçant pour 2006 des recettes de plus de sept milliards de dollars."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Quel mouvement de jeunes a fêté son centenaire en 2007 ?",
|
||||
"propositions": [
|
||||
"Judaïsme",
|
||||
"Guidisme",
|
||||
"Scientisme",
|
||||
"Scoutisme"
|
||||
],
|
||||
"réponse": "Scoutisme",
|
||||
"anecdote": "En juillet 1907, le lieutenant Robert Baden-Powell inventait le scoutisme en organisant un premier camp de jeunes garçons."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Quelle société française fut condamnée pour le naufrage de l'Erika ?",
|
||||
"propositions": [
|
||||
"Telstar",
|
||||
"Texaco",
|
||||
"Tencent",
|
||||
"Total"
|
||||
],
|
||||
"réponse": "Total",
|
||||
"anecdote": "Le tribunal de commerce de Paris a condamné l'entreprise Total à une amende de 375 000 euros pour faute d'imprudence caractérisée."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "Quel jeu de construction a fêté ses cinquante ans le 28 janvier 2008 ?",
|
||||
"propositions": [
|
||||
"Meccano",
|
||||
"Lego",
|
||||
"Smoby",
|
||||
"Capsela"
|
||||
],
|
||||
"réponse": "Lego",
|
||||
"anecdote": "C'est en effet en 1958 que la fabrique implantée à Billund, au Danemark, déposait le brevet du jeu de construction Lego."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Qui a présenté le JT de 20h de TF1 durant l'été 2006, créant ainsi la polémique ?",
|
||||
"propositions": [
|
||||
"Gilles Bouleau",
|
||||
"Harry Roselmack",
|
||||
"Jacques Legros",
|
||||
"Jean Offredo"
|
||||
],
|
||||
"réponse": "Harry Roselmack",
|
||||
"anecdote": "D'origine martiniquaise, Harry Roselmack est le premier journaliste de couleur de peau noire à présenter le JT le plus regardé de France."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "Quelle voiture a vu son soixantième anniversaire célébré par une expo à Paris ?",
|
||||
"propositions": [
|
||||
"Audi 100",
|
||||
"Buick Wildcat",
|
||||
"Fiat 500",
|
||||
"Citroën 2 CV"
|
||||
],
|
||||
"réponse": "Citroën 2 CV",
|
||||
"anecdote": "Conçue dès les années 1930 par André Lefèbvre, la 2 CV fut présentée en 1948 et sa carrière ne s'arrêtera qu'en 1990."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Quel marché français s'est ouvert à la concurrence le 1er juillet 2007 ?",
|
||||
"propositions": [
|
||||
"Gaz et électricité",
|
||||
"Eau",
|
||||
"Éolien",
|
||||
"Énergie solaire"
|
||||
],
|
||||
"réponse": "Gaz et électricité",
|
||||
"anecdote": "Conformément aux directives européennes du 26 juin 2003, les particuliers peuvent désormais choisir leur fournisseur de gaz."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "Qui fut la première femme chef à recevoir trois étoiles au Michelin le 21 février 2007 ?",
|
||||
"propositions": [
|
||||
"Virginie Basselot",
|
||||
"Anne-Sophie Pic",
|
||||
"Amandine Chaignot",
|
||||
"Babette de Rozières"
|
||||
],
|
||||
"réponse": "Anne-Sophie Pic",
|
||||
"anecdote": "Récompensée à 37 ans aux côtés de quatre autres chefs, Anne-Sophie Pic est la quatrième à connaître cette consécration."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "En l'honneur de qui furent célébrées des funérailles royales le 8 juin 2004 ?",
|
||||
"propositions": [
|
||||
"Henri IV",
|
||||
"Charles X",
|
||||
"François II",
|
||||
"Louis XVII"
|
||||
],
|
||||
"réponse": "Louis XVII",
|
||||
"anecdote": "Il fallut attendre l'analyse ADN du coeur subtilisé par le médecin légiste pour être certain qu'il s'agissait bien du fils Capet."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Quelle eau de toilette pour chien fut commercialisée en France en octobre 2000 ?",
|
||||
"propositions": [
|
||||
"Smell Good",
|
||||
"Be Perfect",
|
||||
"Oh My Dog !",
|
||||
"For Puppy"
|
||||
],
|
||||
"réponse": "Oh My Dog !",
|
||||
"anecdote": "Il s'agit du premier parfum sélectif haut de gamme et unisexe conçu pour toutes les races de chien, sous contrôle dermatologique."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Quel cerveau présumé du gang des Barbares fut impliqué dans l'assassinat d'Ilan Halimi ?",
|
||||
"propositions": [
|
||||
"Youssouf Fofana",
|
||||
"Fabrice Polygone",
|
||||
"Nabil Moustafa",
|
||||
"Jérôme Ribeiro"
|
||||
],
|
||||
"réponse": "Youssouf Fofana",
|
||||
"anecdote": "Extradé vers la France, Youssouf Fofana sera écroué pour association de malfaiteurs, actes de barbarie et antisémitisme."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Quel grand couturier italien a fait ses adieux à la mode le 4 septembre 2007 ?",
|
||||
"propositions": [
|
||||
"Raf Simons",
|
||||
"Paco Rabanne",
|
||||
"Valentino",
|
||||
"Thierry Mugler"
|
||||
],
|
||||
"réponse": "Valentino",
|
||||
"anecdote": "Âgé de 75 ans, Valentino Garavani avait organisé à Rome un défilé retraçant les 45 années d'existence de sa maison de couture."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Quel drame français a eu lieu dix jours après les attentats du World Trade Center ?",
|
||||
"propositions": [
|
||||
"Poudrerie du Ripault",
|
||||
"Usine AZF",
|
||||
"Raffinerie de Feyzin",
|
||||
"Barrage Malpasset"
|
||||
],
|
||||
"réponse": "Usine AZF",
|
||||
"anecdote": "Le drame a fait 30 morts et des milliers de blessés, la déflagration ayant causé des dégâts dans un rayon de trente kilomètres."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Quelle banque a racheté le Crédit Lyonnais le 15 décembre 2002 ?",
|
||||
"propositions": [
|
||||
"Société générale",
|
||||
"HSBC",
|
||||
"Crédit agricole",
|
||||
"BNP Paribas"
|
||||
],
|
||||
"réponse": "Crédit agricole",
|
||||
"anecdote": "L'offre de la banque verte, à 56 euros l'action, valorisa ainsi le Crédit Lyonnais à vingt milliards d'euros."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "Quel grand magasin parisien a fermé ses portes le 15 juin 2005 ?",
|
||||
"propositions": [
|
||||
"Bonne-Nouvelle",
|
||||
"Au gagne petit",
|
||||
"La Samaritaine",
|
||||
"Grand bazar"
|
||||
],
|
||||
"réponse": "La Samaritaine",
|
||||
"anecdote": "Des défaillances du système de sécurité et une nécessaire mise aux normes anti-incendie expliquent la fermeture de La Samaritaine."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Quel PDG de groupe industriel est décédé dans un accident de bateau le 26 mai 2006 ?",
|
||||
"propositions": [
|
||||
"Maurice Cusin",
|
||||
"Jean Lavigne",
|
||||
"Edouard Michelin",
|
||||
"Amand Duforest"
|
||||
],
|
||||
"réponse": "Edouard Michelin",
|
||||
"anecdote": "Mort au large de l'île de Sein, ingénieur de l'École centrale, Michelin avait rejoint en 1985 le groupe familial qu'il dirigeait depuis 1999."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Qui a tenté de tuer Jacques Chirac le 14 juillet 2002 sur les Champs-Élysées ?",
|
||||
"propositions": [
|
||||
"Frédéric Staps",
|
||||
"David Herold",
|
||||
"Pierre Barrière",
|
||||
"Maxime Brunerie"
|
||||
],
|
||||
"réponse": "Maxime Brunerie",
|
||||
"anecdote": "L'homme a brandi une arme dans la direction du président Chirac avant d'être désarmé puis neutralisé par un badaud."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "En quelle année a eu lieu le premier mariage homosexuel belge ?",
|
||||
"propositions": [
|
||||
"2007",
|
||||
"2003",
|
||||
"2009",
|
||||
"2005"
|
||||
],
|
||||
"réponse": "2003",
|
||||
"anecdote": "Marion Huibrechts, 43 ans, et Christel Verswyvelen, 37 ans, ont échangé leur consentement à Kapellen le 6 juin 2003."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "Qui a avoué le 12 octobre 2006 avoir tué ses bébés retrouvés congelés ?",
|
||||
"propositions": [
|
||||
"Typhaine Taton",
|
||||
"Dominique Cottrez",
|
||||
"Mélanie Chappot",
|
||||
"Véronique Courjault"
|
||||
],
|
||||
"réponse": "Véronique Courjault",
|
||||
"anecdote": "Elle a étranglé, en 2002 et 2003, les deux bébés que son mari a tristement découvert plus tard dans le congélateur de leur domicile."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "Qui a reçu le prix Nobel de la paix pour son invention du microcrédit ?",
|
||||
"propositions": [
|
||||
"Muhammad Yunus",
|
||||
"Edmund Phelps",
|
||||
"George Smoot",
|
||||
"Orhan Pamuk"
|
||||
],
|
||||
"réponse": "Muhammad Yunus",
|
||||
"anecdote": "Muhammad Yunus a fondé en 1976 au Bangladesh la Grameen Bank permettant aux plus démunis de mener une vie décente."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Qui a succédé à Mgr Jean-Marie Lustiger à la tête de l'archidiocèse de Paris ?",
|
||||
"propositions": [
|
||||
"Pierre Veuillot",
|
||||
"François Marty",
|
||||
"Georges Darboy",
|
||||
"André Vingt-Trois"
|
||||
],
|
||||
"réponse": "André Vingt-Trois",
|
||||
"anecdote": "Archevêque de Tours depuis 1999, André Vingt-Trois s'est beaucoup investi dans le développement de Radio Notre-Dame."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Dans quelle ville le groupe Barrière a-t-il installé des machines à sous le 15 avril 2002 ?",
|
||||
"propositions": [
|
||||
"Vittel",
|
||||
"Enghien-les-Bains",
|
||||
"Forges-les-Eaux",
|
||||
"La Bourboule"
|
||||
],
|
||||
"réponse": "Enghien-les-Bains",
|
||||
"anecdote": "Le casino, premier casino en matière de chiffre d'affaires, permet de jouer à seulement 14 kilomètres des Champs-Élysées."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "Quel juge fut lui-même auditionné en 2006 pour son instruction de l'affaire d'Outreau ?",
|
||||
"propositions": [
|
||||
"Henri Pascal",
|
||||
"Charles Loriot",
|
||||
"Fabrice Burgaud",
|
||||
"Roger Le Loire"
|
||||
],
|
||||
"réponse": "Fabrice Burgaud",
|
||||
"anecdote": "Fabrice Burgaud sera accusé d'avoir mené une instruction à charge et d'avoir brisé la vie de plusieurs personnes."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "Qui a reçu le surnom de Piano Man en dessinant un piano à queue en silence ?",
|
||||
"propositions": [
|
||||
"James Hogue",
|
||||
"Alexis Debat",
|
||||
"Richard Chanfray",
|
||||
"Andreas Grassl"
|
||||
],
|
||||
"réponse": "Andreas Grassl",
|
||||
"anecdote": "L'homme est apparu le 7 avril 2005 dans le Kent, en smoking sur la plage, mouillé et inconscient, et n'a pas sorti un seul mot."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Qui a été retrouvée le 23 août 2006 en Autriche, huit ans après sa disparition ?",
|
||||
"propositions": [
|
||||
"Natascha Kampusch",
|
||||
"Leah Betts",
|
||||
"Danièle Canarelli",
|
||||
"Alice Renaud"
|
||||
],
|
||||
"réponse": "Natascha Kampusch",
|
||||
"anecdote": "Dix ans au moment de sa disparition, Natascha Kampusch est restée enfermée huit ans dans la maison de Wolfgang Priklopil."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Quel jour fut choisi en France pour commémorer l'abolition de l'esclavage ?",
|
||||
"propositions": [
|
||||
"6 juin",
|
||||
"10 mai",
|
||||
"21 avril",
|
||||
"29 février"
|
||||
],
|
||||
"réponse": "10 mai",
|
||||
"anecdote": "En 2001, cinq ans plus tôt, le Sénat adoptait la loi Taubira qui reconnaît l'esclavage comme un crime contre l'humanité."
|
||||
}
|
||||
]
|
||||
},
|
||||
"en": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "What is the new name of TotalFinaElf, renamed March 6, 2003 ?",
|
||||
"propositions": [
|
||||
"Fina",
|
||||
"Elf",
|
||||
"Shell",
|
||||
"Total"
|
||||
],
|
||||
"réponse": "Total",
|
||||
"anecdote": "The TotalFinaElf group wanted to improve its image after the drama of the AZF factory in Toulouse and the sinking of the Erika."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Which successful box game had its first world championship in 2006 ?",
|
||||
"propositions": [
|
||||
"Sudoku",
|
||||
"Crosswords",
|
||||
"Morpion",
|
||||
"Ladies"
|
||||
],
|
||||
"réponse": "Sudoku",
|
||||
"anecdote": "Jana Tylova, a 31-year-old Czech economist, won the Sudoku World Championship on 11 March 2006 in Lucca, Italy."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Who is the world famous CEO of the social network Facebook ?",
|
||||
"propositions": [
|
||||
"Mark Zuckerberg",
|
||||
"Paul Allen",
|
||||
"Bill Gates",
|
||||
"Steve Jobs"
|
||||
],
|
||||
"réponse": "Mark Zuckerberg",
|
||||
"anecdote": "On May 14, 1984, Mark Zuckerberg had the idea to launch a student social network scheduled from his Harvard room."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Which saint of chiffoniers from Cairo left us at almost 100 years old in 2008 ?",
|
||||
"propositions": [
|
||||
"Thérèse de Lisieux",
|
||||
"Sister Pauline",
|
||||
"Claire Ferchaud",
|
||||
"Sister Emmanuelle"
|
||||
],
|
||||
"réponse": "Sister Emmanuelle",
|
||||
"anecdote": "From her real name Madeleine Cinquin, Sister Emmanuelle decided to devote herself to the slum dwellers of Cairo."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Which city occupied in 2007 the first world place for casinos ?",
|
||||
"propositions": [
|
||||
"Gansu",
|
||||
"Macao",
|
||||
"Xinjiang",
|
||||
"Shanxi"
|
||||
],
|
||||
"réponse": "Macao",
|
||||
"anecdote": "In 2007, the Chinese capital Macao dethrones Las Vegas by announcing for 2006 revenues of 7.2 billion dollars."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "What youth movement celebrated its centenary in 2007 ?",
|
||||
"propositions": [
|
||||
"Scouting",
|
||||
"Judaism",
|
||||
"Guiding",
|
||||
"Scientism"
|
||||
],
|
||||
"réponse": "Scouting",
|
||||
"anecdote": "In July 1907, British lieutenant Robert Baden-Powell invented scouting by organizing a camp for young boys."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Which French company was condemned for the sinking of the Erika on January 16th, 2008 ?",
|
||||
"propositions": [
|
||||
"Esso",
|
||||
"Shell",
|
||||
"Texaco",
|
||||
"Total"
|
||||
],
|
||||
"réponse": "Total",
|
||||
"anecdote": "The Commercial Court of Paris sentenced the company to a fine of 375 00 euros for misconduct character."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "What building game was celebrated on January 28, 2008 ?",
|
||||
"propositions": [
|
||||
"Smoby",
|
||||
"Lego",
|
||||
"Capsela",
|
||||
"Meccano"
|
||||
],
|
||||
"réponse": "Lego",
|
||||
"anecdote": "In fact, it was in 1958 that the factory located in Billung, Denmark, registered the patent for the Lego building set."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Who presented the TF1 20h JT during the summer of 2006 instead of PPDA, creating the polemic ?",
|
||||
"propositions": [
|
||||
"Jacques Legros",
|
||||
"Harry Roselmack",
|
||||
"Gilles Bouleau",
|
||||
"Jean Offredo"
|
||||
],
|
||||
"réponse": "Harry Roselmack",
|
||||
"anecdote": "Originally from Martinique, Harry Raselmack is the first black journalist to present France's most-watched JT."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "Which car has seen its sixtieth anniversary celebrated by an exhibition in Paris ?",
|
||||
"propositions": [
|
||||
"Citroën 2 CV",
|
||||
"Fiat 500",
|
||||
"Audi 100",
|
||||
"Buick Wildcat"
|
||||
],
|
||||
"réponse": "Citroën 2 CV",
|
||||
"anecdote": "Designed in the 1930s by André Lefebvre, it was presented in 1948 and its industrial career will not stop until 1990."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Which French market opened to competition on July 1st, 2007 ?",
|
||||
"propositions": [
|
||||
"Gas and electricity",
|
||||
"Water",
|
||||
"Solar energy",
|
||||
"Wind"
|
||||
],
|
||||
"réponse": "Gas and electricity",
|
||||
"anecdote": "In accordance with the European directives of June 26, 2003, individuals can now choose their supplier."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "Who was the first female chef to receive three Michelin stars on February 21, 2007 ?",
|
||||
"propositions": [
|
||||
"Amandine Chaignot",
|
||||
"Anne-Sophie Pic",
|
||||
"Babette de Rozières",
|
||||
"Virginie Basselot"
|
||||
],
|
||||
"réponse": "Anne-Sophie Pic",
|
||||
"anecdote": "Rewarded at the age of 37 alongside four other chefs, she is the fourth to know this consecration."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "In honor of those who were honored with royal funeral on June 8, 2004 ?",
|
||||
"propositions": [
|
||||
"Louis XVII",
|
||||
"French II",
|
||||
"Henri IV",
|
||||
"Charles X"
|
||||
],
|
||||
"réponse": "Louis XVII",
|
||||
"anecdote": "It was not until the DNA analysis of the heart was used by the legal doctor to be certain that it was indeed the son Capet."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Which eau de toilette for dogs was marketed in France on October 1st, 2000 ?",
|
||||
"propositions": [
|
||||
"Oh My Dog !",
|
||||
"Be Perfect",
|
||||
"Smell Good",
|
||||
"For Puppy"
|
||||
],
|
||||
"réponse": "Oh My Dog !",
|
||||
"anecdote": "This is the first high-end, unisex selective fragrance designed for all dog breeds under dermatological control."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "What brave brain of the Barbarian gang was implicated in Ilan Halimi's assassination ?",
|
||||
"propositions": [
|
||||
"Nabil Moustafa",
|
||||
"Youssouf Fofana",
|
||||
"Fabrice Polygone",
|
||||
"Jeremiah Ribeiro"
|
||||
],
|
||||
"réponse": "Youssouf Fofana",
|
||||
"anecdote": "Extradited to France, Youssouf Fofana will be crowned for criminal conspiracy, acts of barbarism and anti-Semitism."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "What great Italian designer made his farewell to fashion on September 4, 2007 ?",
|
||||
"propositions": [
|
||||
"Valentino",
|
||||
"Thierry Mugler",
|
||||
"Raf Simons",
|
||||
"Paco Rabanne"
|
||||
],
|
||||
"réponse": "Valentino",
|
||||
"anecdote": "Aged 75, Valentino Garavani had organized a retreat in Rome retracing the 45 years of existence of his fashion house."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "What French drama took place ten days after the World Trade Center attacks ?",
|
||||
"propositions": [
|
||||
"Ripault blowing snow",
|
||||
"AZF factory",
|
||||
"Feyzin Refinery",
|
||||
"Dam of Malpasset"
|
||||
],
|
||||
"réponse": "AZF factory",
|
||||
"anecdote": "The tragedy left 30 dead and thousands wounded, with the decuption causing deaths within a thirty-kilometer radius."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Which bank bought the Crédit Lyonnais on December 15, 2002 ?",
|
||||
"propositions": [
|
||||
"HSBC",
|
||||
"BNP Paribas",
|
||||
"General Company",
|
||||
"Agricultural credit"
|
||||
],
|
||||
"réponse": "Agricultural credit",
|
||||
"anecdote": "The offer of the green bank, at 56 euros per share, valuing the Credit Lyonnais to twenty billion euros."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "Which Parisian department store closed on June 15, 2005 ?",
|
||||
"propositions": [
|
||||
"Good News",
|
||||
"To the small winner",
|
||||
"Grand Bazaar",
|
||||
"The Samaritan woman"
|
||||
],
|
||||
"réponse": "The Samaritan woman",
|
||||
"anecdote": "Failures of the security system and a necessary set fire standards explain the closure of La Samaritaine."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Which industrial group CEO is killed in a boat accident on the 26th but 2006 ?",
|
||||
"propositions": [
|
||||
"Jean Lavigne",
|
||||
"Edouard Michelin",
|
||||
"Amand Duforest",
|
||||
"Maurice Cusin"
|
||||
],
|
||||
"réponse": "Edouard Michelin",
|
||||
"anecdote": "Died off the island of Sein, engineer of the central school, he joined in 1985 the family group he directed since 1999."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Who tried to kill Jacques Chirac on July 14, 2002 on the Champs-Élysées ?",
|
||||
"propositions": [
|
||||
"David Herold",
|
||||
"Pierre Barrière",
|
||||
"Frédéric Staps",
|
||||
"Maxime Brunerie"
|
||||
],
|
||||
"réponse": "Maxime Brunerie",
|
||||
"anecdote": "The man waved a weapon in the direction of the president before being disarmed by a bystander."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "In which year did the first Belgian homosexual marriage take place ?",
|
||||
"propositions": [
|
||||
"2009",
|
||||
"2003",
|
||||
"2005",
|
||||
"2007"
|
||||
],
|
||||
"réponse": "2003",
|
||||
"anecdote": "Marion Huibrechts, 43, and Christel Verwyvelen, 37, exchanged their consent in Kappelen on June 6, 2003."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "Who admitted on October 12, 2006 to have killed his babies found frozen ?",
|
||||
"propositions": [
|
||||
"Dominique Cottrez",
|
||||
"Typhaine Taton",
|
||||
"Veronique Courjault",
|
||||
"Melanie Chappot"
|
||||
],
|
||||
"réponse": "Veronique Courjault",
|
||||
"anecdote": "In 2002 and 2003, she choked the two babies her husband sadly found in the home leave."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "Who was awarded the Nobel Peace Prize for his invention of microcredit ?",
|
||||
"propositions": [
|
||||
"Orhan Pamuk",
|
||||
"George Smoot",
|
||||
"Muhammad Yunus",
|
||||
"Edmund Phelps"
|
||||
],
|
||||
"réponse": "Muhammad Yunus",
|
||||
"anecdote": "Muhammad Yunus founded the Grameen Bank in Bangladesh in 1976, allowing the poor to live decent lives."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Who succeeded Bishop Jean-Marie Lustiger at the head of the archdiocese of Paris ?",
|
||||
"propositions": [
|
||||
"Pierre Veuillot",
|
||||
"André Vingt-Trois",
|
||||
"François Marty",
|
||||
"Georges Darboy"
|
||||
],
|
||||
"réponse": "André Vingt-Trois",
|
||||
"anecdote": "Archbishop of Tours since 1999, André Vingt-Trois has invested a lot in the development of Radio Notre-Dame."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "In which city did the Barrier Group install slot machines on April 15, 2002 ?",
|
||||
"propositions": [
|
||||
"Forges-les-Eaux",
|
||||
"Bourboule",
|
||||
"Vittel",
|
||||
"Enghien-les-Bains"
|
||||
],
|
||||
"réponse": "Enghien-les-Bains",
|
||||
"anecdote": "The casino, the first casino in terms of turnover, allows you to play just 14 kilometers from the Champs-Élysées."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "Which judge was himself auditioned in 2006 for his investigation of the Outreau case ?",
|
||||
"propositions": [
|
||||
"Roger The Loire",
|
||||
"Charles Loriot",
|
||||
"Fabrice Burgaud",
|
||||
"Henri Pascal"
|
||||
],
|
||||
"réponse": "Fabrice Burgaud",
|
||||
"anecdote": "Fabrice Burgaud will be accused of leading a prosecution and having broken the lives of several people."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "Who was nicknamed Piano Man by silently drawing a grand piano ?",
|
||||
"propositions": [
|
||||
"Alexis Debat",
|
||||
"James Hogue",
|
||||
"Andreas Grassl",
|
||||
"Richard Chanfray"
|
||||
],
|
||||
"réponse": "Andreas Grassl",
|
||||
"anecdote": "The man appeared on April 7, 2005 in Kent, in a tuxedo on the beach, wet and unconscious, and did not release a single word."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Who was found on August 23, 2006 in Austria, eight years after his disappearance ?",
|
||||
"propositions": [
|
||||
"Natascha Kampusch",
|
||||
"Leah Betts",
|
||||
"Danièle Canarelli",
|
||||
"Alice Renaud"
|
||||
],
|
||||
"réponse": "Natascha Kampusch",
|
||||
"anecdote": "Ten years at the time of her disappearance, she remained locked up in the house of her abductor Wolfgang Priklopil for eight years."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "What day was chosen in France to commemorate the abolition of slavery ?",
|
||||
"propositions": [
|
||||
"June 6",
|
||||
"April 21",
|
||||
"May 10",
|
||||
"February 29"
|
||||
],
|
||||
"réponse": "May 10",
|
||||
"anecdote": "In 2001, five years earlier, the Senate adopted the Taubira law, which recognizes slavery as a crime against humanity."
|
||||
}
|
||||
]
|
||||
},
|
||||
"de": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "Wie heißt der neue Name von TotalFinaElf, der am 6. März 2003 umbenannt wurde ?",
|
||||
"propositions": [
|
||||
"Shell",
|
||||
"Elf",
|
||||
"Fina",
|
||||
"Total"
|
||||
],
|
||||
"réponse": "Total",
|
||||
"anecdote": "Die TotalFinaElf-Gruppe wollte ihr Image nach dem Drama der AZF-Fabrik in Toulouse und dem Untergang der Erika verbessern."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Welches erfolgreiche Boxspiel hatte 2006 seine erste Weltmeisterschaft ?",
|
||||
"propositions": [
|
||||
"Morpion",
|
||||
"Sudoku",
|
||||
"Damen",
|
||||
"Kreuzworträtsel"
|
||||
],
|
||||
"réponse": "Sudoku",
|
||||
"anecdote": "Jana Tylova, eine 31-jährige tschechische Ökonomin, gewann am 11. März 2006 im italienischen Lucca die Sudoku-Weltmeisterschaft."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Wer ist der weltbekannte CEO des sozialen Netzwerks Facebook ?",
|
||||
"propositions": [
|
||||
"Bill Gates",
|
||||
"Mark Zuckerberg",
|
||||
"Steve Jobs",
|
||||
"Paul Allen"
|
||||
],
|
||||
"réponse": "Mark Zuckerberg",
|
||||
"anecdote": "Der am 14. Mai 1984 geborene Mark Zuckerberg hatte die Idee, ein soziales Netzwerk für Schüler in seinem Harvard-Raum zu programmieren."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Welcher Chiffonier-Heilige aus Kairo hat uns 2008 fast 100 Jahre alt gelassen ?",
|
||||
"propositions": [
|
||||
"Claire Ferchaud",
|
||||
"Schwester Emmanuelle",
|
||||
"Schwester Pauline",
|
||||
"Thérèse de Lisieux"
|
||||
],
|
||||
"réponse": "Schwester Emmanuelle",
|
||||
"anecdote": "Mit ihrem richtigen Namen Madeleine Cinquin entschied sich Schwester Emmanuelle, sich den Slumbewohnern von Kairo zu widmen."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Welche Stadt belegte 2007 den ersten Weltplatz für Casinos ?",
|
||||
"propositions": [
|
||||
"Gansu",
|
||||
"Xinjiang",
|
||||
"Macao",
|
||||
"Shanxi"
|
||||
],
|
||||
"réponse": "Macao",
|
||||
"anecdote": "2007 besiegt die chinesische Hauptstadt Macao Las Vegas, indem sie 2006 einen Umsatz von 7,2 Milliarden Dollar ankündigt."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Welche Jugendbewegung feierte 2007 ihr 100-jähriges Bestehen ?",
|
||||
"propositions": [
|
||||
"Führung",
|
||||
"Judentum",
|
||||
"Scouting",
|
||||
"Wissenschaftlichkeit"
|
||||
],
|
||||
"réponse": "Scouting",
|
||||
"anecdote": "Im Juli 1907 erfand der britische Leutnant Robert Baden-Powell das Scouting, indem er ein Camp für kleine Jungen organisierte."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Welches französische Unternehmen wurde am 16. Januar 2008 wegen des Untergangs der Erika verurteilt ?",
|
||||
"propositions": [
|
||||
"Esso",
|
||||
"Total",
|
||||
"Texaco",
|
||||
"Shell"
|
||||
],
|
||||
"réponse": "Total",
|
||||
"anecdote": "Das Handelsgericht von Paris verurteilte das Unternehmen wegen Fehlverhaltens zu einer Geldstrafe von 375 00 Euro."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "Welches Bauspiel wurde am 28. Januar 2008 gefeiert ?",
|
||||
"propositions": [
|
||||
"Lego",
|
||||
"Meccano",
|
||||
"Smoby",
|
||||
"Capsela"
|
||||
],
|
||||
"réponse": "Lego",
|
||||
"anecdote": "Tatsächlich wurde 1958 das Werk in Billung, Dänemark, zum Patent für den Lego-Bausatz angemeldet."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Wer hat im Sommer 2006 anstelle von PPDA den TF1 20h JT präsentiert und damit die Polemik geschaffen ?",
|
||||
"propositions": [
|
||||
"Gilles Bouleau",
|
||||
"Jacques Legros",
|
||||
"Jean Offredo",
|
||||
"Harry Roselmack"
|
||||
],
|
||||
"réponse": "Harry Roselmack",
|
||||
"anecdote": "Der aus Martinique stammende Harry Raselmack ist der erste schwarze Journalist, der das meistgesehene JT Frankreichs präsentiert."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "Welches Auto wurde in Paris mit einer Ausstellung zum 60. Geburtstag gefeiert ?",
|
||||
"propositions": [
|
||||
"Buick Wildcat",
|
||||
"Fiat 500",
|
||||
"Audi 100",
|
||||
"Citroën 2 CV"
|
||||
],
|
||||
"réponse": "Citroën 2 CV",
|
||||
"anecdote": "Sie wurde in den 1930er Jahren von André Lefebvre entworfen und 1948 vorgestellt. Ihre industrielle Karriere wird erst 1990 beendet."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Welcher französische Markt hat sich am 1. Juli 2007 für den Wettbewerb geöffnet ?",
|
||||
"propositions": [
|
||||
"Wind",
|
||||
"Gas und Strom",
|
||||
"Solarenergie",
|
||||
"Wasser"
|
||||
],
|
||||
"réponse": "Gas und Strom",
|
||||
"anecdote": "Gemäß den europäischen Richtlinien vom 26. Juni 2003 können Einzelpersonen nun ihren Anbieter auswählen."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "Wer war die erste Köchin, die am 21. Februar 2007 drei Michelin-Sterne erhielt ?",
|
||||
"propositions": [
|
||||
"Babette de Rozières",
|
||||
"Anne-Sophie Pic",
|
||||
"Amandine Chaignot",
|
||||
"Virginie Basselot"
|
||||
],
|
||||
"réponse": "Anne-Sophie Pic",
|
||||
"anecdote": "Sie wurde im Alter von 37 Jahren mit vier anderen Köchen belohnt und ist die vierte, die diese Weihe kennt."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "Zu Ehren derer, die am 8. Juni 2004 mit einem königlichen Begräbnis geehrt wurden ?",
|
||||
"propositions": [
|
||||
"Französisch II",
|
||||
"Charles X",
|
||||
"Louis XVII",
|
||||
"Henri IV"
|
||||
],
|
||||
"réponse": "Louis XVII",
|
||||
"anecdote": "Es war nicht bis die DNA-Analyse des Herzens von dem Rechtsarzt verwendet wurde, um sicher zu sein, dass es tatsächlich der Sohn Capet war."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Welches Eau de Toilette für Hunde wurde am 1. Oktober 2000 in Frankreich vermarktet ?",
|
||||
"propositions": [
|
||||
"Sei perfekt",
|
||||
"Oh My Dog !",
|
||||
"Gut riechen",
|
||||
"Für Welpen"
|
||||
],
|
||||
"réponse": "Oh My Dog !",
|
||||
"anecdote": "Dies ist der erste unisex selektive High-End-Duft, der für alle Hunderassen unter dermatologischer Kontrolle entwickelt wurde."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Welches mutige Gehirn der Barbarenbande wurde mit dem Mord an Ilan Halimi in Verbindung gebracht ?",
|
||||
"propositions": [
|
||||
"Nabil Moustafa",
|
||||
"Youssouf Fofana",
|
||||
"Jeremiah Ribeiro",
|
||||
"Fabrice Polygone"
|
||||
],
|
||||
"réponse": "Youssouf Fofana",
|
||||
"anecdote": "Youssouf Fofana wird an Frankreich ausgeliefert und wird wegen krimineller Verschwörung, Barbarei und Antisemitismus gekrönt."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Welcher große italienische Designer hat sich am 4. September 2007 von der Mode verabschiedet ?",
|
||||
"propositions": [
|
||||
"Valentino",
|
||||
"Thierry Mugler",
|
||||
"Raf Simons",
|
||||
"Paco Rabanne"
|
||||
],
|
||||
"réponse": "Valentino",
|
||||
"anecdote": "Der 75-jährige Valentino Garavani hatte in Rom Exerzitien organisiert, um die 45-jährige Existenz seines Modehauses nachzuvollziehen."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Welches französische Drama fand zehn Tage nach den Angriffen des World Trade Centers statt ?",
|
||||
"propositions": [
|
||||
"Raffinerie von Feyzin",
|
||||
"AZF-Fabrik",
|
||||
"Ripault bläst Schnee",
|
||||
"Mutter von Malpasset"
|
||||
],
|
||||
"réponse": "AZF-Fabrik",
|
||||
"anecdote": "Die Tragödie hinterließ 30 Tote und Tausende Verwundete, wobei der Zerfall innerhalb eines Umkreises von 30 Kilometern zu Todesfällen führte."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Welche Bank hat den Crédit Lyonnais am 15. Dezember 2002 gekauft ?",
|
||||
"propositions": [
|
||||
"HSBC",
|
||||
"Agrarkredit",
|
||||
"Allgemeine Gesellschaft",
|
||||
"BNP Paribas"
|
||||
],
|
||||
"réponse": "Agrarkredit",
|
||||
"anecdote": "Das Angebot der grünen Bank liegt bei 56 Euro pro Aktie, der Credit Lyonnais wird auf zwanzig Milliarden Euro geschätzt."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "Welches Pariser Kaufhaus wurde am 15. Juni 2005 geschlossen ?",
|
||||
"propositions": [
|
||||
"Zum kleinen Gewinner",
|
||||
"Gute Nachrichten",
|
||||
"Großer Basar",
|
||||
"Die Samariterin"
|
||||
],
|
||||
"réponse": "Die Samariterin",
|
||||
"anecdote": "Ausfälle des Sicherheitssystems und notwendige Brandstandards erklären die Schließung von La Samaritaine."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Welcher CEO der Industriegruppe wird am 26. April 2006 bei einem Bootsunfall getötet ?",
|
||||
"propositions": [
|
||||
"Maurice Cusin",
|
||||
"Edouard Michelin",
|
||||
"Amand Duforest",
|
||||
"Jean Lavigne"
|
||||
],
|
||||
"réponse": "Edouard Michelin",
|
||||
"anecdote": "Er starb vor der Insel Sein, Ingenieur der Zentralschule, und schloss sich 1985 seiner seit 1999 geleiteten Familiengruppe an."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Wer hat am 14. Juli 2002 versucht, Jacques Chirac auf den Champs-Élysées zu töten ?",
|
||||
"propositions": [
|
||||
"Frédéric Staps",
|
||||
"Maxime Brunerie",
|
||||
"Pierre Barrière",
|
||||
"David Herold"
|
||||
],
|
||||
"réponse": "Maxime Brunerie",
|
||||
"anecdote": "Der Mann winkte mit einer Waffe in Richtung des Präsidenten, bevor er von einem Passanten entwaffnet wurde."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "In welchem Jahr fand die erste belgische homosexuelle Ehe statt ?",
|
||||
"propositions": [
|
||||
"2005",
|
||||
"2003",
|
||||
"2009",
|
||||
"2007"
|
||||
],
|
||||
"réponse": "2003",
|
||||
"anecdote": "Marion Huibrechts, 43, und Christel Verwyvelen, 37, haben am 6. Juni 2003 ihre Zustimmung mit Kappelen ausgetauscht."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "Wer hat am 12. Oktober 2006 zugegeben, seine gefrorenen Babys getötet zu haben ?",
|
||||
"propositions": [
|
||||
"Veronique Courjault",
|
||||
"Dominique Cottrez",
|
||||
"Melanie Chappot",
|
||||
"Typhaine Taton"
|
||||
],
|
||||
"réponse": "Veronique Courjault",
|
||||
"anecdote": "In den Jahren 2002 und 2003 verschluckte sie die beiden Babys, die ihr Mann traurig im Heimurlaub gefunden hatte."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "Wer erhielt den Friedensnobelpreis für seine Erfindung von Mikrokrediten ?",
|
||||
"propositions": [
|
||||
"Edmund Phelps",
|
||||
"George Smoot",
|
||||
"Muhammad Yunus",
|
||||
"Orhan Pamuk"
|
||||
],
|
||||
"réponse": "Muhammad Yunus",
|
||||
"anecdote": "Muhammad Yunus gründete 1976 die Grameen Bank in Bangladesch, um den Armen ein menschenwürdiges Leben zu ermöglichen."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Wer war Nachfolger von Bischof Jean-Marie Lustiger an der Spitze der Erzdiözese Paris ?",
|
||||
"propositions": [
|
||||
"Georges Darboy",
|
||||
"François Marty",
|
||||
"Pierre Veuillot",
|
||||
"André Vingt-Trois"
|
||||
],
|
||||
"réponse": "André Vingt-Trois",
|
||||
"anecdote": "André Vingt-Trois, seit 1999 Erzbischof von Tours, hat viel in die Entwicklung von Radio Notre-Dame investiert."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "In welcher Stadt installierte die Barrier Group am 15. April 2002 Spielautomaten ?",
|
||||
"propositions": [
|
||||
"Enghien-les-Bains",
|
||||
"Forges-les-Eaux",
|
||||
"Bourboule",
|
||||
"Vittel"
|
||||
],
|
||||
"réponse": "Enghien-les-Bains",
|
||||
"anecdote": "Das Casino, das erste Casino in Bezug auf den Umsatz, ermöglicht es Ihnen, nur 14 Kilometer von den Champs-Élysés entfernt zu spielen."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "Welcher Richter wurde 2006 wegen seiner Ermittlungen im Fall Outreau vorgesprochen ?",
|
||||
"propositions": [
|
||||
"Charles Loriot",
|
||||
"Roger die Loire",
|
||||
"Fabrice Burgaud",
|
||||
"Henri Pascal"
|
||||
],
|
||||
"réponse": "Fabrice Burgaud",
|
||||
"anecdote": "Fabrice Burgaud wird vorgeworfen, Anklage zu erheben und mehreren Menschen das Leben gekostet zu haben."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "Wer hatte den Spitznamen Piano Man, indem er stumm einen Flügel zeichnete ?",
|
||||
"propositions": [
|
||||
"Andreas Grassl",
|
||||
"Richard Chanfray",
|
||||
"James Hogue",
|
||||
"Alexis Debat"
|
||||
],
|
||||
"réponse": "Andreas Grassl",
|
||||
"anecdote": "Der Mann erschien am 7. April 2005 in Kent in einem Smoking am Strand, nass und bewusstlos, und gab kein einziges Wort frei."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Wer wurde am 23. August 2006 acht Jahre nach seinem Verschwinden in Österreich gefunden ?",
|
||||
"propositions": [
|
||||
"Alice Renaud",
|
||||
"Natascha Kampusch",
|
||||
"Danièle Canarelli",
|
||||
"Leah Betts"
|
||||
],
|
||||
"réponse": "Natascha Kampusch",
|
||||
"anecdote": "Zum Zeitpunkt ihres Verschwindens war sie zehn Jahre lang acht Jahre lang im Haus ihres Entführers Wolfgang Priklopil eingesperrt."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Welcher Tag wurde in Frankreich gewählt, um der Abschaffung der Sklaverei zu gedenken ?",
|
||||
"propositions": [
|
||||
"10. Mai",
|
||||
"6. Juni",
|
||||
"21. April",
|
||||
"29. Februar"
|
||||
],
|
||||
"réponse": "10. Mai",
|
||||
"anecdote": "Im Jahr 2001, fünf Jahre zuvor, verabschiedete der Senat das Taubira-Gesetz, das die Sklaverei als Verbrechen gegen die Menschlichkeit anerkennt."
|
||||
}
|
||||
]
|
||||
},
|
||||
"es": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "¿Cuál es el nuevo nombre de TotalFinaElf, rebautizado como 6 de marzo de 2003 ?",
|
||||
"propositions": [
|
||||
"Elf",
|
||||
"Shell",
|
||||
"Total",
|
||||
"Fina"
|
||||
],
|
||||
"réponse": "Total",
|
||||
"anecdote": "El grupo TotalFinaElf quería mejorar su imagen después del drama de la fábrica AZF en Toulouse y el hundimiento del Erika."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "¿Qué exitoso juego de caja tuvo su primer campeonato mundial en 2006 ?",
|
||||
"propositions": [
|
||||
"Crucigramas",
|
||||
"Damas",
|
||||
"Morpion",
|
||||
"Sudoku"
|
||||
],
|
||||
"réponse": "Sudoku",
|
||||
"anecdote": "Jana Tylova, economista checa de 31 años, ganó el Campeonato Mundial de Sudoku el 11 de marzo de 2006 en Lucca, Italia."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "¿Quién es el mundialmente famoso CEO de la red social Facebook ?",
|
||||
"propositions": [
|
||||
"Paul Allen",
|
||||
"Bill Gates",
|
||||
"Mark Zuckerberg",
|
||||
"Steve Jobs"
|
||||
],
|
||||
"réponse": "Mark Zuckerberg",
|
||||
"anecdote": "El 14 de mayo de 1984, Mark Zuckerberg tuvo la idea de lanzar una red social de estudiantes programada desde su sala de Harvard."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "¿Qué santo de los chiffoniers de El Cairo nos dejó con casi 100 años en 2008 ?",
|
||||
"propositions": [
|
||||
"Sor paulina",
|
||||
"Thérèse de Lisieux",
|
||||
"Hermana emmanuelle",
|
||||
"Claire Ferchaud"
|
||||
],
|
||||
"réponse": "Hermana emmanuelle",
|
||||
"anecdote": "De su verdadero nombre, Madeleine Cinquin, la hermana Emmanuelle decidió dedicarse a los habitantes de los barrios marginales de El Cairo."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "¿Qué ciudad ocupó en 2007 el primer lugar mundial para casinos ?",
|
||||
"propositions": [
|
||||
"Gansu",
|
||||
"Xinjiang",
|
||||
"Macao",
|
||||
"Shanxi"
|
||||
],
|
||||
"réponse": "Macao",
|
||||
"anecdote": "En 2007, la capital china, Macao, destronó a Las Vegas al anunciar ingresos de 7.2 mil millones de dólares en 2006."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "¿Qué movimiento juvenil celebró su centenario en 2007 ?",
|
||||
"propositions": [
|
||||
"Scouting",
|
||||
"Guiando",
|
||||
"Judaísmo",
|
||||
"Cientificismo"
|
||||
],
|
||||
"réponse": "Scouting",
|
||||
"anecdote": "En julio de 1907, el teniente británico Robert Baden-Powell inventó la exploración mediante la organización de un campamento para niños pequeños."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "¿Qué compañía francesa fue condenada por el hundimiento del Erika el 16 de enero de 2008 ?",
|
||||
"propositions": [
|
||||
"Shell",
|
||||
"Esso",
|
||||
"Total",
|
||||
"Texaco"
|
||||
],
|
||||
"réponse": "Total",
|
||||
"anecdote": "El Tribunal de Comercio de París condenó a la empresa a una multa de 375 00 euros por conducta indebida."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "¿Qué juego de construcción se celebró el 28 de enero de 2008 ?",
|
||||
"propositions": [
|
||||
"Meccano",
|
||||
"Capsela",
|
||||
"Lego",
|
||||
"Smoby"
|
||||
],
|
||||
"réponse": "Lego",
|
||||
"anecdote": "De hecho, fue en 1958 cuando la fábrica ubicada en Billung, Dinamarca, registró la patente del conjunto de construcción Lego."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "¿Quién presentó el TF1 20h JT durante el verano de 2006 en lugar de PPDA, creando la polémica ?",
|
||||
"propositions": [
|
||||
"Jean offredo",
|
||||
"Gilles Bouleau",
|
||||
"Harry Roselmack",
|
||||
"Jacques Legros"
|
||||
],
|
||||
"réponse": "Harry Roselmack",
|
||||
"anecdote": "Originalmente de Martinica, Harry Raselmack es el primer periodista negro en presentar al JT más visto de Francia."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "¿Qué coche ha celebrado su sexagésimo aniversario con una exposición en París ?",
|
||||
"propositions": [
|
||||
"Audi 100",
|
||||
"Fiat 500",
|
||||
"Buick Wildcat",
|
||||
"Citroën 2 CV"
|
||||
],
|
||||
"réponse": "Citroën 2 CV",
|
||||
"anecdote": "Diseñado en la década de 1930 por André Lefebvre, se presentó en 1948 y su carrera industrial no se detendrá hasta 1990."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "¿Qué mercado francés se abrió a la competencia el 1 de julio de 2007 ?",
|
||||
"propositions": [
|
||||
"Viento",
|
||||
"Gas y electricidad",
|
||||
"Agua",
|
||||
"Energia solar"
|
||||
],
|
||||
"réponse": "Gas y electricidad",
|
||||
"anecdote": "De acuerdo con las directivas europeas del 26 de junio de 2003, las personas ahora pueden elegir su proveedor."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "¿Quién fue la primera mujer chef en recibir tres estrellas Michelin el 21 de febrero de 2007 ?",
|
||||
"propositions": [
|
||||
"Amandine Chaignot",
|
||||
"Anne-Sophie Pic",
|
||||
"Babette de Rozières",
|
||||
"Virginie Basselot"
|
||||
],
|
||||
"réponse": "Anne-Sophie Pic",
|
||||
"anecdote": "Recompensada a la edad de 37 años junto con otros cuatro chefs, es la cuarta en conocer esta consagración."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "¿En honor a los honrados con el funeral real el 8 de junio de 2004 ?",
|
||||
"propositions": [
|
||||
"Carlos X",
|
||||
"Francés II",
|
||||
"Luis XVII",
|
||||
"Henri IV"
|
||||
],
|
||||
"réponse": "Luis XVII",
|
||||
"anecdote": "No fue hasta que el médico legal utilizó el análisis del ADN del corazón para asegurarse de que era realmente el hijo Capet."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "¿Qué eau de toilette para perros se comercializó en Francia el 1 de octubre de 2000 ?",
|
||||
"propositions": [
|
||||
"huele bien",
|
||||
"Sé perfecto",
|
||||
"Para Puppy",
|
||||
"Oh My Dog !"
|
||||
],
|
||||
"réponse": "Oh My Dog !",
|
||||
"anecdote": "Esta es la primera fragancia selectiva unisex de alta gama diseñada para todas las razas de perros bajo control dermatológico."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "¿Qué cerebro valiente de la banda bárbara estuvo implicado en el asesinato de Ilan Halimi ?",
|
||||
"propositions": [
|
||||
"Youssouf Fofana",
|
||||
"Nabil Moustafa",
|
||||
"Fabrice Polygone",
|
||||
"Jeremiah Ribeiro"
|
||||
],
|
||||
"réponse": "Youssouf Fofana",
|
||||
"anecdote": "Extraditado a Francia, Youssouf Fofana será coronado por conspiración criminal, actos de barbarie y antisemitismo."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "¿Qué gran diseñador italiano se despidió de la moda el 4 de septiembre de 2007 ?",
|
||||
"propositions": [
|
||||
"Valentino",
|
||||
"Thierry Mugler",
|
||||
"Paco Rabanne",
|
||||
"Raf Simons"
|
||||
],
|
||||
"réponse": "Valentino",
|
||||
"anecdote": "A los 75 años, Valentino Garavani había organizado un retiro en Roma sobre los 45 años de existencia de su casa de moda."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "¿Qué drama francés tuvo lugar diez días después de los ataques al World Trade Center ?",
|
||||
"propositions": [
|
||||
"Refinería de Feyzin",
|
||||
"Presa de malpasset",
|
||||
"Fábrica de AZF",
|
||||
"Ripault soplando nieve"
|
||||
],
|
||||
"réponse": "Fábrica de AZF",
|
||||
"anecdote": "La tragedia dejó 30 muertos y miles de heridos, causando muertes en un radio de treinta kilómetros."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "¿Qué banco compró la Crédit Lyonnais el 15 de diciembre de 2002 ?",
|
||||
"propositions": [
|
||||
"Empresa general",
|
||||
"BNP Paribas",
|
||||
"HSBC",
|
||||
"Crédito agrícola"
|
||||
],
|
||||
"réponse": "Crédito agrícola",
|
||||
"anecdote": "La oferta del banco verde, a 56 euros por acción, valoró el Crédito Lyonnais a veinte mil millones de euros."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "¿Qué tienda departamental parisina cerró el 15 de junio de 2005 ?",
|
||||
"propositions": [
|
||||
"Buenas noticias",
|
||||
"Gran Bazar",
|
||||
"Para el pequeño ganador",
|
||||
"La mujer samaritana"
|
||||
],
|
||||
"réponse": "La mujer samaritana",
|
||||
"anecdote": "Las fallas del sistema de seguridad y los estándares de incendio necesarios explican el cierre de La Samaritaine."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "¿Qué grupo industrial CEO muere en un accidente de barco el 26, pero en 2006 ?",
|
||||
"propositions": [
|
||||
"Amand Duforest",
|
||||
"Edouard Michelin",
|
||||
"Maurice Cusin",
|
||||
"Jean lavigne"
|
||||
],
|
||||
"réponse": "Edouard Michelin",
|
||||
"anecdote": "Fallecido en la isla de Sein, ingeniero de la escuela central, se unió en 1985 al grupo familiar que dirigió desde 1999."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "¿Quién intentó matar a Jacques Chirac el 14 de julio de 2002 en los Campos Elíseos ?",
|
||||
"propositions": [
|
||||
"David Herold",
|
||||
"Frédéric Staps",
|
||||
"Pierre Barrière",
|
||||
"Maxime Brunerie"
|
||||
],
|
||||
"réponse": "Maxime Brunerie",
|
||||
"anecdote": "El hombre agitó un arma en dirección al presidente antes de ser desarmado por un espectador."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "¿En qué año tuvo lugar el primer matrimonio homosexual belga ?",
|
||||
"propositions": [
|
||||
"2003",
|
||||
"2005",
|
||||
"2007",
|
||||
"2009"
|
||||
],
|
||||
"réponse": "2003",
|
||||
"anecdote": "Marion Huibrechts, de 43 años, y Christel Verwyvelen, de 37, intercambiaron su consentimiento en Kappelen el 6 de junio de 2003."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "¿Quién admitió el 12 de octubre de 2006 haber matado a sus bebés congelados ?",
|
||||
"propositions": [
|
||||
"Dominique Cottrez",
|
||||
"Typhaine Taton",
|
||||
"Melanie Chappot",
|
||||
"Veronique Courjault"
|
||||
],
|
||||
"réponse": "Veronique Courjault",
|
||||
"anecdote": "En 2002 y 2003, ahogó a los dos bebés que su esposo encontró tristemente en la licencia de la casa."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "¿A quién se le otorgó el Premio Nobel de la Paz por su invención del microcrédito ?",
|
||||
"propositions": [
|
||||
"Orhan Pamuk",
|
||||
"George Smoot",
|
||||
"Muhammad Yunus",
|
||||
"Edmund Phelps"
|
||||
],
|
||||
"réponse": "Muhammad Yunus",
|
||||
"anecdote": "Muhammad Yunus fundó el Grameen Bank en Bangladesh en 1976, permitiendo a los pobres vivir una vida digna."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "¿Quién sucedió al obispo Jean-Marie Lustiger al frente de la archidiócesis de París ?",
|
||||
"propositions": [
|
||||
"André Vingt-Trois",
|
||||
"François Marty",
|
||||
"Georges Darboy",
|
||||
"Pierre Veuillot"
|
||||
],
|
||||
"réponse": "André Vingt-Trois",
|
||||
"anecdote": "El arzobispo de Tours desde 1999, André Vingt-Trois ha invertido mucho en el desarrollo de Radio Notre-Dame."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "¿En qué ciudad instaló el Grupo Barrera máquinas tragamonedas el 15 de abril de 2002 ?",
|
||||
"propositions": [
|
||||
"Vittel",
|
||||
"Enghien-les-Bains",
|
||||
"Bourboule",
|
||||
"Forges-les-Eaux"
|
||||
],
|
||||
"réponse": "Enghien-les-Bains",
|
||||
"anecdote": "El casino, el primer casino en términos de facturación, le permite jugar a solo 14 kilómetros de los Campos Elíseos."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "¿Qué juez fue auditado en 2006 para su investigación del caso Outreau ?",
|
||||
"propositions": [
|
||||
"Roger el Loira",
|
||||
"Fabrice Burgaud",
|
||||
"Charles Loriot",
|
||||
"Henri Pascal"
|
||||
],
|
||||
"réponse": "Fabrice Burgaud",
|
||||
"anecdote": "Fabrice Burgaud será acusado de dirigir una acusación y de haber roto la vida de varias personas."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "¿Quién fue apodado Piano Man por el silencio de un piano de cola ?",
|
||||
"propositions": [
|
||||
"James Hogue",
|
||||
"Richard Chanfray",
|
||||
"Andreas Grassl",
|
||||
"Alexis Debat"
|
||||
],
|
||||
"réponse": "Andreas Grassl",
|
||||
"anecdote": "El hombre apareció el 7 de abril de 2005 en Kent, en un esmoquin en la playa, mojado e inconsciente, y no soltó una sola palabra."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "¿Quién fue encontrado el 23 de agosto de 2006 en Austria, ocho años después de su desaparición ?",
|
||||
"propositions": [
|
||||
"Natascha Kampusch",
|
||||
"Leah Betts",
|
||||
"Danièle Canarelli",
|
||||
"Alice Renaud"
|
||||
],
|
||||
"réponse": "Natascha Kampusch",
|
||||
"anecdote": "Diez años después de su desaparición, permaneció encerrada en la casa de su secuestrador Wolfgang Priklopil durante ocho años."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "¿Qué día fue elegido en Francia para conmemorar la abolición de la esclavitud ?",
|
||||
"propositions": [
|
||||
"10 de mayo",
|
||||
"29 de febrero",
|
||||
"6 de junio",
|
||||
"21 de abril"
|
||||
],
|
||||
"réponse": "10 de mayo",
|
||||
"anecdote": "En 2001, cinco años antes, el Senado adoptó la ley de Taubira, que reconoce la esclavitud como un crimen contra la humanidad."
|
||||
}
|
||||
]
|
||||
},
|
||||
"it": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "Qual è il nuovo nome di TotalFinaElf, ribattezzato il 6 marzo 2003 ?",
|
||||
"propositions": [
|
||||
"Elf",
|
||||
"Fina",
|
||||
"Total",
|
||||
"Shell"
|
||||
],
|
||||
"réponse": "Total",
|
||||
"anecdote": "Il gruppo TotalFinaElf ha voluto migliorare la propria immagine dopo il dramma della fabbrica AZF a Tolosa e l'affondamento dell'Erika."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Quale gioco di successo ha avuto il suo primo campionato del mondo nel 2006 ?",
|
||||
"propositions": [
|
||||
"Signore",
|
||||
"Morpion",
|
||||
"Sudoku",
|
||||
"Cruciverba"
|
||||
],
|
||||
"réponse": "Sudoku",
|
||||
"anecdote": "Jana Tylova, 31 anni, economista ceca, ha vinto il campionato del mondo di Sudoku l'11 marzo 2006 a Lucca, in Italia."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Chi è il CEO di fama mondiale del social network Facebook ?",
|
||||
"propositions": [
|
||||
"Paul Allen",
|
||||
"Mark Zuckerberg",
|
||||
"Bill Gates",
|
||||
"Steve Jobs"
|
||||
],
|
||||
"réponse": "Mark Zuckerberg",
|
||||
"anecdote": "Il 14 maggio 1984, Mark Zuckerberg ebbe l'idea di lanciare un social network studentesco in programma dalla sua stanza di Harvard."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Quale santo delle chitarre del Cairo ci ha lasciato a quasi 100 anni nel 2008 ?",
|
||||
"propositions": [
|
||||
"Suor Emmanuelle",
|
||||
"Suor Pauline",
|
||||
"Teresa di Lisieux",
|
||||
"Claire Ferchaud"
|
||||
],
|
||||
"réponse": "Suor Emmanuelle",
|
||||
"anecdote": "Dal suo vero nome Madeleine Cinquin, suor Emmanuelle ha deciso di dedicarsi agli abitanti dei quartieri poveri del Cairo."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Quale città occupò nel 2007 il primo posto al mondo per i casinò ?",
|
||||
"propositions": [
|
||||
"Gansu",
|
||||
"Xinjiang",
|
||||
"Macao",
|
||||
"Shanxi"
|
||||
],
|
||||
"réponse": "Macao",
|
||||
"anecdote": "Nel 2007, la capitale cinese Macao sconfigge Las Vegas annunciando per il 2006 ricavi per 7,2 miliardi di dollari."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Quale movimento giovanile ha celebrato il suo centenario nel 2007 ?",
|
||||
"propositions": [
|
||||
"Scientismo",
|
||||
"Guida",
|
||||
"Ebraismo",
|
||||
"Scouting"
|
||||
],
|
||||
"réponse": "Scouting",
|
||||
"anecdote": "Nel luglio del 1907, il tenente britannico Robert Baden-Powell inventò lo scouting organizzando un campo per ragazzi."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Quale compagnia francese è stata condannata per l'affondamento dell'Erika il 16 gennaio 2008 ?",
|
||||
"propositions": [
|
||||
"Texaco",
|
||||
"Shell",
|
||||
"Total",
|
||||
"Esso"
|
||||
],
|
||||
"réponse": "Total",
|
||||
"anecdote": "Il tribunale commerciale di Parigi ha condannato la società a una multa di 375 00 euro per comportamento scorretto."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "Che gioco di costruzioni è stato celebrato il 28 gennaio 2008 ?",
|
||||
"propositions": [
|
||||
"Lego",
|
||||
"Meccano",
|
||||
"Smoby",
|
||||
"Capsela"
|
||||
],
|
||||
"réponse": "Lego",
|
||||
"anecdote": "Infatti, fu nel 1958 che la fabbrica di Billung, in Danimarca, registrò il brevetto per il set di costruzioni Lego."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Chi ha presentato la TF1 20h JT durante l'estate del 2006 anziché la PPDA, creando la polemica ?",
|
||||
"propositions": [
|
||||
"Jacques Legros",
|
||||
"Gilles Bouleau",
|
||||
"Jean Offredo",
|
||||
"Harry Roselmack"
|
||||
],
|
||||
"réponse": "Harry Roselmack",
|
||||
"anecdote": "Originario della Martinica, Harry Raselmack è il primo giornalista nero a presentare il JT più guardato della Francia."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "Quale auto ha celebrato il suo sessantesimo anniversario da una mostra a Parigi ?",
|
||||
"propositions": [
|
||||
"Fiat 500",
|
||||
"Audi 100",
|
||||
"Citroën 2 CV",
|
||||
"Buick Wildcat"
|
||||
],
|
||||
"réponse": "Citroën 2 CV",
|
||||
"anecdote": "Progettato negli anni '30 da André Lefebvre, fu presentato nel 1948 e la sua carriera industriale non si fermerà fino al 1990."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Quale mercato francese ha aperto alla concorrenza il 1 ° luglio 2007 ?",
|
||||
"propositions": [
|
||||
"Gas ed elettricità",
|
||||
"Vento",
|
||||
"Energia solare",
|
||||
"Acqua"
|
||||
],
|
||||
"réponse": "Gas ed elettricità",
|
||||
"anecdote": "In conformità con le direttive europee del 26 giugno 2003, le persone possono ora scegliere il proprio fornitore."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "Chi è stato il primo chef donna a ricevere tre stelle Michelin il 21 febbraio 2007 ?",
|
||||
"propositions": [
|
||||
"Virginie Basselot",
|
||||
"Amandine Chaignot",
|
||||
"Babette de Rozières",
|
||||
"Anne-Sophie Pic"
|
||||
],
|
||||
"réponse": "Anne-Sophie Pic",
|
||||
"anecdote": "Premiato all'età di 37 anni insieme ad altri quattro chef, è la quarta a conoscere questa consacrazione."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "In onore di coloro che sono stati onorati con i funerali reali l'8 giugno 2004 ?",
|
||||
"propositions": [
|
||||
"Luigi XVII",
|
||||
"Henri IV",
|
||||
"Charles X",
|
||||
"Francese II"
|
||||
],
|
||||
"réponse": "Luigi XVII",
|
||||
"anecdote": "Non è stato fino a quando l'analisi del DNA del cuore è stata utilizzata dal medico legale per essere certi che fosse davvero il figlio Capet."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Quale eau de toilette per cani è stata commercializzata in Francia il 1 ° ottobre 2000 ?",
|
||||
"propositions": [
|
||||
"Buon odore",
|
||||
"Sii perfetto",
|
||||
"Per cucciolo",
|
||||
"Oh My Dog !"
|
||||
],
|
||||
"réponse": "Oh My Dog !",
|
||||
"anecdote": "Questa è la prima fragranza selettiva di alta gamma, unisex, progettata per tutte le razze canine sottoposte a controllo dermatologico."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Quale coraggioso cervello della banda barbarica fu implicato nell'assassinio di Ilan Halimi ?",
|
||||
"propositions": [
|
||||
"Jeremiah Ribeiro",
|
||||
"Nabil Moustafa",
|
||||
"Fabrice Polygone",
|
||||
"Youssouf Fofana"
|
||||
],
|
||||
"réponse": "Youssouf Fofana",
|
||||
"anecdote": "Estradato in Francia, Youssouf Fofana sarà incoronato per cospirazione criminale, atti di barbarie e antisemitismo."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Quale grande stilista italiano ha fatto il suo addio alla moda il 4 settembre 2007 ?",
|
||||
"propositions": [
|
||||
"Raf Simons",
|
||||
"Thierry Mugler",
|
||||
"Paco Rabanne",
|
||||
"Valentino"
|
||||
],
|
||||
"réponse": "Valentino",
|
||||
"anecdote": "All'età di 75 anni, Valentino Garavani aveva organizzato un ritiro a Roma ripercorrendo i 45 anni di esistenza della sua casa di moda."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Che dramma francese ha avuto luogo dieci giorni dopo gli attacchi del World Trade Center ?",
|
||||
"propositions": [
|
||||
"Diga di Malpasset",
|
||||
"Fabbrica AZF",
|
||||
"Neve di salto di Ripault",
|
||||
"Raffineria di Feyzin"
|
||||
],
|
||||
"réponse": "Fabbrica AZF",
|
||||
"anecdote": "La tragedia ha lasciato 30 morti e migliaia feriti, con la decadenza che ha causato morti entro un raggio di trenta chilometri."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Quale banca acquistò la Crédit Lyonnais il 15 dicembre 2002 ?",
|
||||
"propositions": [
|
||||
"HSBC",
|
||||
"Credito agricolo",
|
||||
"Compagnia generale",
|
||||
"BNP Paribas"
|
||||
],
|
||||
"réponse": "Credito agricolo",
|
||||
"anecdote": "L'offerta della banca verde, a 56 euro per azione, valorizza il Credit Lyonnais a venti miliardi di euro."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "Quale grande magazzino parigino è stato chiuso il 15 giugno 2005 ?",
|
||||
"propositions": [
|
||||
"La donna samaritana",
|
||||
"Gran Bazar",
|
||||
"Buone notizie",
|
||||
"Al piccolo vincitore"
|
||||
],
|
||||
"réponse": "La donna samaritana",
|
||||
"anecdote": "I fallimenti del sistema di sicurezza e gli standard di incendi necessari spiegano la chiusura di La Samaritaine."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Quale amministratore delegato del gruppo industriale è stato ucciso in un incidente in barca il 26 maggio 2006 ?",
|
||||
"propositions": [
|
||||
"Michelin Edouard",
|
||||
"Maurizio Cusin",
|
||||
"Amand Duforest",
|
||||
"Jean Lavigne"
|
||||
],
|
||||
"réponse": "Michelin Edouard",
|
||||
"anecdote": "Morto al largo dell'isola di Sein, ingegnere della scuola centrale, nel 1985 è entrato a far parte del gruppo di famiglia da lui diretto dal 1999."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Chi ha tentato di uccidere Jacques Chirac il 14 luglio 2002 sugli Champs-Élysées ?",
|
||||
"propositions": [
|
||||
"Pierre Barrière",
|
||||
"Maxime Brunerie",
|
||||
"David Herold",
|
||||
"Frédéric Staps"
|
||||
],
|
||||
"réponse": "Maxime Brunerie",
|
||||
"anecdote": "L'uomo agitò un'arma nella direzione del presidente prima di essere disarmato da un terzo."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "In quale anno ha avuto luogo il primo matrimonio omosessuale in Belgio ?",
|
||||
"propositions": [
|
||||
"2005",
|
||||
"2009",
|
||||
"2003",
|
||||
"2007"
|
||||
],
|
||||
"réponse": "2003",
|
||||
"anecdote": "Marion Huibrechts, 43 anni, e Christel Verwyvelen, 37 anni, hanno espresso il loro consenso a Kappelen il 6 giugno 2003."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "Chi ha ammesso il 12 ottobre 2006 di aver ucciso i suoi bambini trovati congelati ?",
|
||||
"propositions": [
|
||||
"Melanie Chappot",
|
||||
"Dominique Cottrez",
|
||||
"Veronique Courjault",
|
||||
"Typhaine Taton"
|
||||
],
|
||||
"réponse": "Veronique Courjault",
|
||||
"anecdote": "Nel 2002 e nel 2003, ha soffocato i due bambini che suo marito ha trovato tristemente in congedo."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "Chi è stato insignito del Nobel per la pace per la sua invenzione del microcredito ?",
|
||||
"propositions": [
|
||||
"George Smoot",
|
||||
"Orhan Pamuk",
|
||||
"Edmund Phelps",
|
||||
"Muhammad Yunus"
|
||||
],
|
||||
"réponse": "Muhammad Yunus",
|
||||
"anecdote": "Muhammad Yunus fondò la Grameen Bank in Bangladesh nel 1976, permettendo ai poveri di vivere una vita decente."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Chi è succeduto a mons. Jean-Marie Lustiger a capo dell'arcidiocesi di Parigi ?",
|
||||
"propositions": [
|
||||
"Georges Darboy",
|
||||
"François Marty",
|
||||
"André Vingt-Trois",
|
||||
"Pierre Veuillot"
|
||||
],
|
||||
"réponse": "André Vingt-Trois",
|
||||
"anecdote": "Arcivescovo di Tours dal 1999, André Vingt-Trois ha investito molto nello sviluppo di Radio Notre-Dame."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "In quale città il Barrier Group ha installato le slot machine il 15 aprile 2002 ?",
|
||||
"propositions": [
|
||||
"Forges-les-Eaux",
|
||||
"Vittel",
|
||||
"Enghien-les-Bains",
|
||||
"Bourboule"
|
||||
],
|
||||
"réponse": "Enghien-les-Bains",
|
||||
"anecdote": "Il casinò, il primo casinò in termini di fatturato, ti permette di giocare a soli 14 chilometri dagli Champs-Élysées."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "Quale giudice è stato audito nel 2006 per le sue indagini sul caso Outreau ?",
|
||||
"propositions": [
|
||||
"Fabrice Burgaud",
|
||||
"Charles Loriot",
|
||||
"Roger La Loire",
|
||||
"Henri Pascal"
|
||||
],
|
||||
"réponse": "Fabrice Burgaud",
|
||||
"anecdote": "Fabrice Burgaud sarà accusato di guidare un processo e aver infranto la vita di diverse persone."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "Chi è stato soprannominato Piano Man disegnando silenziosamente un pianoforte a coda ?",
|
||||
"propositions": [
|
||||
"Andreas Grassl",
|
||||
"Alexis Debat",
|
||||
"Richard Chanfray",
|
||||
"James Hogue"
|
||||
],
|
||||
"réponse": "Andreas Grassl",
|
||||
"anecdote": "L'uomo è apparso il 7 aprile 2005 nel Kent, in uno smoking sulla spiaggia, bagnato e incosciente, e non ha rilasciato una sola parola."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Chi è stato trovato il 23 agosto 2006 in Austria, otto anni dopo la sua scomparsa ?",
|
||||
"propositions": [
|
||||
"Natascha Kampusch",
|
||||
"Danièle Canarelli",
|
||||
"Alice Renaud",
|
||||
"Leah Betts"
|
||||
],
|
||||
"réponse": "Natascha Kampusch",
|
||||
"anecdote": "Dieci anni al momento della sua scomparsa, è rimasta rinchiusa nella casa del suo rapitore Wolfgang Priklopil per otto anni."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Che giorno è stato scelto in Francia per commemorare l'abolizione della schiavitù ?",
|
||||
"propositions": [
|
||||
"6 giugno",
|
||||
"10 maggio",
|
||||
"21 aprile",
|
||||
"29 febbraio"
|
||||
],
|
||||
"réponse": "10 maggio",
|
||||
"anecdote": "Nel 2001, cinque anni prima, il Senato adottò la legge di Taubira, che riconosce la schiavitù come un crimine contro l'umanità."
|
||||
}
|
||||
]
|
||||
},
|
||||
"nl": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "Wat is de nieuwe naam van TotalFinaElf, hernoemd tot 6 maart 2003 ?",
|
||||
"propositions": [
|
||||
"Total",
|
||||
"Elf",
|
||||
"Shell",
|
||||
"Fina"
|
||||
],
|
||||
"réponse": "Total",
|
||||
"anecdote": "De TotalFinaElf-groep wilde haar imago verbeteren na het drama van de AZF-fabriek in Toulouse en het zinken van de Erika."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Welke succesvolle boxgame had zijn eerste wereldkampioenschap in 2006 ?",
|
||||
"propositions": [
|
||||
"Sudoku",
|
||||
"Morpion",
|
||||
"Dames",
|
||||
"Kruiswoordraadsels"
|
||||
],
|
||||
"réponse": "Sudoku",
|
||||
"anecdote": "Jana Tylova, een 31-jarige Tsjechische econoom, won het Sudoku Wereldkampioenschap op 11 maart 2006 in Lucca, Italië."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Wie is de wereldberoemde CEO van het sociale netwerk Facebook ?",
|
||||
"propositions": [
|
||||
"Steve Jobs",
|
||||
"Mark Zuckerberg",
|
||||
"Bill Gates",
|
||||
"Paul Allen"
|
||||
],
|
||||
"réponse": "Mark Zuckerberg",
|
||||
"anecdote": "Op 14 mei 1984 kwam Mark Zuckerberg op het idee om een sociaal netwerk voor studenten te starten dat gepland was vanuit zijn Harvard-kamer."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Welke heilige der chiffoniers uit Cairo heeft ons in 2008 bijna 100 jaar oud achtergelaten ?",
|
||||
"propositions": [
|
||||
"Zuster Pauline",
|
||||
"Thérèse de Lisieux",
|
||||
"Claire Ferchaud",
|
||||
"Zuster Emmanuelle"
|
||||
],
|
||||
"réponse": "Zuster Emmanuelle",
|
||||
"anecdote": "Van haar echte naam Madeleine Cinquin besloot zuster Emmanuelle zich te wijden aan de sloppenwijkbewoners van Caïro."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Welke stad bezet in 2007 de eerste wereldlocatie voor casinos ?",
|
||||
"propositions": [
|
||||
"Shanxi",
|
||||
"Macao",
|
||||
"Gansu",
|
||||
"Xinjiang"
|
||||
],
|
||||
"réponse": "Macao",
|
||||
"anecdote": "In 2007 versloeg de Chinese hoofdstad Macao Las Vegas door in 2006 inkomsten van 7,2 miljard dollar aan te kondigen."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Welke jeugdbeweging vierde zijn honderdjarig bestaan in 2007 ?",
|
||||
"propositions": [
|
||||
"Gids",
|
||||
"Scouting",
|
||||
"Jodendom",
|
||||
"Scientisme"
|
||||
],
|
||||
"réponse": "Scouting",
|
||||
"anecdote": "In juli 1907 bedacht de Britse luitenant Robert Baden-Powell de scouting door een kamp voor jonge jongens te organiseren."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Welk Frans bedrijf werd veroordeeld voor het zinken van de Erika op 16 januari 2008 ?",
|
||||
"propositions": [
|
||||
"Texaco",
|
||||
"Shell",
|
||||
"Total",
|
||||
"Esso"
|
||||
],
|
||||
"réponse": "Total",
|
||||
"anecdote": "De rechtbank van koophandel te Parijs veroordeelde het bedrijf tot een geldboete van 375 00 euro wegens wangedrag."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "Welke bouwgame werd gevierd op 28 januari 2008 ?",
|
||||
"propositions": [
|
||||
"Capsela",
|
||||
"Smoby",
|
||||
"Meccano",
|
||||
"Lego"
|
||||
],
|
||||
"réponse": "Lego",
|
||||
"anecdote": "In feite was het in 1958 dat de fabriek in Billung, Denemarken, het patent op de Lego-bouwset registreerde."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Wie presenteerde de TF1 20h JT in de zomer van 2006 in plaats van PPDA, waardoor de polemiek werd gecreerd ?",
|
||||
"propositions": [
|
||||
"Harry Roselmack",
|
||||
"Gilles Bouleau",
|
||||
"Jean Offredo",
|
||||
"Jacques Legros"
|
||||
],
|
||||
"réponse": "Harry Roselmack",
|
||||
"anecdote": "Harry Raselmack komt oorspronkelijk uit Martinique en is de eerste zwarte journalist die de meest bekeken JT van Frankrijk presenteert."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "Welke auto heeft zijn zestigste verjaardag gevierd met een tentoonstelling in Parijs ?",
|
||||
"propositions": [
|
||||
"Audi 100",
|
||||
"Buick Wildcat",
|
||||
"Citroën 2 CV",
|
||||
"Fiat 500"
|
||||
],
|
||||
"réponse": "Citroën 2 CV",
|
||||
"anecdote": "Ontworpen in de jaren 1930 door André Lefebvre, werd het gepresenteerd in 1948 en zijn industriële carrière zal niet stoppen tot 1990."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Welke Franse markt opende op 1 juli 2007 voor concurrentie ?",
|
||||
"propositions": [
|
||||
"Wind",
|
||||
"Gas en elektriciteit",
|
||||
"Water",
|
||||
"Zonne-energie"
|
||||
],
|
||||
"réponse": "Gas en elektriciteit",
|
||||
"anecdote": "In overeenstemming met de Europese richtlijnen van 26 juni 2003, kunnen individuen nu hun leverancier kiezen."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "Wie was de eerste vrouwelijke chef-kok die op 21 februari 2007 drie Michelin-sterren ontving ?",
|
||||
"propositions": [
|
||||
"Anne-Sophie Pic",
|
||||
"Babette de Rozières",
|
||||
"Amandine Chaignot",
|
||||
"Virginie Basselot"
|
||||
],
|
||||
"réponse": "Anne-Sophie Pic",
|
||||
"anecdote": "Op haar 37ste beloond met vier andere chefs, is zij de vierde die deze toewijding kent."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "Ter ere van degenen die werden vereerd met koninklijke begrafenis op 8 juni 2004 ?",
|
||||
"propositions": [
|
||||
"Charles X",
|
||||
"Henri IV",
|
||||
"Frans II",
|
||||
"Louis XVII"
|
||||
],
|
||||
"réponse": "Louis XVII",
|
||||
"anecdote": "Het was pas toen de DNA-analyse van het hart door de juridische arts werd gebruikt om er zeker van te zijn dat het inderdaad de zoon Capet was."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Welke eau de toilette voor honden werd op 1 oktober 2000 in Frankrijk op de markt gebracht ?",
|
||||
"propositions": [
|
||||
"Oh My Dog !",
|
||||
"Voor puppy",
|
||||
"Perfect zijn",
|
||||
"Geur goed"
|
||||
],
|
||||
"réponse": "Oh My Dog !",
|
||||
"anecdote": "Dit is de eerste high-end, unisex selectieve geur ontworpen voor alle hondenrassen onder dermatologische controle."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Welk dapper brein van de barbaarse bende was betrokken bij de moord op Ilan Halimi ?",
|
||||
"propositions": [
|
||||
"Jeremiah Ribeiro",
|
||||
"Fabrice Polygone",
|
||||
"Nabil Moustafa",
|
||||
"Youssouf Fofana"
|
||||
],
|
||||
"réponse": "Youssouf Fofana",
|
||||
"anecdote": "Uitgegeven aan Frankrijk, zal Youssouf Fofana worden gekroond voor criminele samenzwering, daden van barbarij en antisemitisme."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Welke grote Italiaanse ontwerper heeft zijn afscheid van mode gemaakt op 4 september 2007 ?",
|
||||
"propositions": [
|
||||
"Thierry Mugler",
|
||||
"Raf Simons",
|
||||
"Paco Rabanne",
|
||||
"Valentino"
|
||||
],
|
||||
"réponse": "Valentino",
|
||||
"anecdote": "Op 75-jarige leeftijd organiseerde Valentino Garavani een retraite in Rome die de 45-jarige bestaan van zijn modehuis naspeelde."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Welk Frans drama vond plaats tien dagen na de aanslagen van het World Trade Center ?",
|
||||
"propositions": [
|
||||
"AZF-fabriek",
|
||||
"Ripault waait sneeuw",
|
||||
"Dam van Malpasset",
|
||||
"Feyzin-raffinaderij"
|
||||
],
|
||||
"réponse": "AZF-fabriek",
|
||||
"anecdote": "De tragedie liet 30 doden achter en duizenden gewonden, waarbij het decennium de dood binnen een straal van dertig kilometer veroorzaakte."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Welke bank kocht de Crédit Lyonnais op 15 december 2002 ?",
|
||||
"propositions": [
|
||||
"HSBC",
|
||||
"Landbouwkrediet",
|
||||
"Algemeen bedrijf",
|
||||
"BNP Paribas"
|
||||
],
|
||||
"réponse": "Landbouwkrediet",
|
||||
"anecdote": "Het aanbod van de groene bank, op 56 euro per aandeel, waardeert de Credit Lyonnais tot twintig miljard euro."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "Welk Parijse warenhuis gesloten op 15 juni 2005 ?",
|
||||
"propositions": [
|
||||
"Naar de kleine winnaar",
|
||||
"Goed nieuws",
|
||||
"De Samaritaanse vrouw",
|
||||
"Grand Bazaar"
|
||||
],
|
||||
"réponse": "De Samaritaanse vrouw",
|
||||
"anecdote": "Falen van het beveiligingssysteem en een noodzakelijke brandnormen verklaren de sluiting van La Samaritaine."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Welke industriële groep CEO stierf bij een bootongeluk op de 26e maar 2006 ?",
|
||||
"propositions": [
|
||||
"Edouard Michelin",
|
||||
"Amand Duforest",
|
||||
"Jean Lavigne",
|
||||
"Maurice Cusin"
|
||||
],
|
||||
"réponse": "Edouard Michelin",
|
||||
"anecdote": "Gestorven uit het eiland Sein, ingenieur van de centrale school, sloot hij in 1985 de familiegroep aan die hij regisseerde sinds 1999."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Wie probeerde Jacques Chirac op 14 juli 2002 te vermoorden op de Champs-Élysées ?",
|
||||
"propositions": [
|
||||
"Pierre Barrière",
|
||||
"Maxime Brunerie",
|
||||
"Frédéric Staps",
|
||||
"David Herold"
|
||||
],
|
||||
"réponse": "Maxime Brunerie",
|
||||
"anecdote": "De man zwaaide met een wapen in de richting van de president voordat hij werd ontwapend door een omstander."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "In welk jaar vond het eerste Belgische homoseksuele huwelijk plaats ?",
|
||||
"propositions": [
|
||||
"2007",
|
||||
"2009",
|
||||
"2005",
|
||||
"2003"
|
||||
],
|
||||
"réponse": "2003",
|
||||
"anecdote": "Marion Huibrechts, 43, en Christel Verwyvelen, 37, ruilden hun toestemming in Kappelen op 6 juni 2003."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "Wie heeft op 12 oktober 2006 toegegeven dat hij zijn baby's had gedood die bevroren waren gevonden ?",
|
||||
"propositions": [
|
||||
"Veronique Courjault",
|
||||
"Dominique Cottrez",
|
||||
"Typhaine Taton",
|
||||
"Melanie Chappot"
|
||||
],
|
||||
"réponse": "Veronique Courjault",
|
||||
"anecdote": "In 2002 en 2003 verstikte ze de twee baby's die haar man triest in het verlof vond."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "Wie ontving de Nobelprijs voor de Vrede voor zijn uitvinding van microkrediet ?",
|
||||
"propositions": [
|
||||
"Orhan Pamuk",
|
||||
"Edmund Phelps",
|
||||
"Muhammad Yunus",
|
||||
"George Smoot"
|
||||
],
|
||||
"réponse": "Muhammad Yunus",
|
||||
"anecdote": "Muhammad Yunus richtte in 1976 de Grameen Bank op in Bangladesh, waardoor de armen fatsoenlijk konden leven."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Wie volgde bisschop Jean-Marie Lustiger aan het hoofd van het aartsbisdom Parijs ?",
|
||||
"propositions": [
|
||||
"François Marty",
|
||||
"Georges Darboy",
|
||||
"André Vingt-Trois",
|
||||
"Pierre Veuillot"
|
||||
],
|
||||
"réponse": "André Vingt-Trois",
|
||||
"anecdote": "Aartsbisschop van Tours sinds 1999, André Vingt-Trois heeft veel geïnvesteerd in de ontwikkeling van Radio Notre-Dame."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "In welke stad heeft de Barrière Groep op 15 april 2002 gokautomaten geinstalleerd ?",
|
||||
"propositions": [
|
||||
"Bourboule",
|
||||
"Enghien-les-Bains",
|
||||
"Forges-les-Eaux",
|
||||
"Vittel"
|
||||
],
|
||||
"réponse": "Enghien-les-Bains",
|
||||
"anecdote": "Het casino, het eerste casino in termen van omzet, stelt je in staat om slechts 14 kilometer van de Champs-Élysées te spelen."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "Welke rechter werd zelf in 2006 auditie gedaan voor zijn onderzoek naar de Outreau-zaak ?",
|
||||
"propositions": [
|
||||
"Roger de Loire",
|
||||
"Henri Pascal",
|
||||
"Fabrice Burgaud",
|
||||
"Charles Loriot"
|
||||
],
|
||||
"réponse": "Fabrice Burgaud",
|
||||
"anecdote": "Fabrice Burgaud zal beschuldigd worden van het leiden van een vervolging en het hebben gebroken van de levens van verschillende mensen."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "Wie had de bijnaam Piano Man gekregen door een vleugel in stilte te tekenen ?",
|
||||
"propositions": [
|
||||
"James Hogue",
|
||||
"Richard Chanfray",
|
||||
"Andreas Grassl",
|
||||
"Alexis Debat"
|
||||
],
|
||||
"réponse": "Andreas Grassl",
|
||||
"anecdote": "De man verscheen op 7 april 2005 in Kent, in een smoking op het strand, nat en bewusteloos, en gaf geen enkel woord vrij."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Wie werd er op 23 augustus 2006 in Oostenrijk, acht jaar na zijn verdwijning, gevonden ?",
|
||||
"propositions": [
|
||||
"Leah Betts",
|
||||
"Natascha Kampusch",
|
||||
"Danièle Canarelli",
|
||||
"Alice Renaud"
|
||||
],
|
||||
"réponse": "Natascha Kampusch",
|
||||
"anecdote": "Tien jaar ten tijde van haar verdwijning bleef ze acht jaar lang opgesloten in het huis van haar ontvoerder Wolfgang Priklopil."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Welke dag werd in Frankrijk gekozen om de afschaffing van de slavernij te herdenken ?",
|
||||
"propositions": [
|
||||
"6 juni",
|
||||
"29 februari",
|
||||
"21 april",
|
||||
"10 mei"
|
||||
],
|
||||
"réponse": "10 mei",
|
||||
"anecdote": "In 2001, vijf jaar eerder, keurde de Senaat de Taubira-wet goed, die de slavernij erkent als een misdaad tegen de mensheid."
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
410
misc/quiz/openquizzdb/faune-flore.json
Normal file
410
misc/quiz/openquizzdb/faune-flore.json
Normal file
@ -0,0 +1,410 @@
|
||||
{
|
||||
"fournisseur": "OpenQuizzDB - Fournisseur de contenu libre (https://www.openquizzdb.org)",
|
||||
"licence": "CC BY-SA",
|
||||
"rédacteur": "Philippe Bresoux",
|
||||
"difficulté": "3 / 5",
|
||||
"version": 1,
|
||||
"mise-à-jour": "2024-10-23",
|
||||
"catégorie-nom-slogan": {
|
||||
"fr": {
|
||||
"catégorie": "Nature",
|
||||
"nom": "Faune et flore",
|
||||
"slogan": "Les mille couleurs de l'été"
|
||||
},
|
||||
"en": {
|
||||
"catégorie": "Nature",
|
||||
"nom": "Fauna and flora",
|
||||
"slogan": "The Thousand Colors of Summer"
|
||||
},
|
||||
"es": {
|
||||
"catégorie": "Naturaleza",
|
||||
"nom": "Fauna y flora",
|
||||
"slogan": "Los Mil Colores del Verano"
|
||||
},
|
||||
"it": {
|
||||
"catégorie": "Natura",
|
||||
"nom": "Fauna e flora",
|
||||
"slogan": "I mille colori dell'estate"
|
||||
},
|
||||
"de": {
|
||||
"catégorie": "Natur",
|
||||
"nom": "Fauna und Flora",
|
||||
"slogan": "Die tausend Farben des Sommers"
|
||||
},
|
||||
"nl": {
|
||||
"catégorie": "Natuur",
|
||||
"nom": "Fauna en flora",
|
||||
"slogan": "De duizend kleuren van de zomer"
|
||||
}
|
||||
},
|
||||
"quizz": {
|
||||
"fr": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "Quelle est la couleur du coquelicot, abondante dans les terrains fraîchement remués ?",
|
||||
"propositions": [
|
||||
"Rouge",
|
||||
"Verte",
|
||||
"Jaune",
|
||||
"Pourpre"
|
||||
],
|
||||
"réponse": "Rouge",
|
||||
"anecdote": "Le coquelicot se distingue par la couleur rouge de ses fleurs et par le fait qu'elle forme souvent des tapis colorés visibles de très loin."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Quelle sorte de passereau mange les graines des chardons ?",
|
||||
"propositions": [
|
||||
"Fauvette",
|
||||
"Pinson",
|
||||
"Rossignol",
|
||||
"Chardonneret"
|
||||
],
|
||||
"réponse": "Chardonneret",
|
||||
"anecdote": "Son bec est conique et pointu, spécialement adapté pour prélever les graines des plantes comme le chardon."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Quelle vitesse maximale peut atteindre un lièvre, petit mammifère proche du lapin ?",
|
||||
"propositions": [
|
||||
"70 km/h",
|
||||
"110 km/h",
|
||||
"90 km/h",
|
||||
"50 km/h"
|
||||
],
|
||||
"réponse": "70 km/h",
|
||||
"anecdote": "Le lièvre, du haut de ses 60 cm, est avec le lapin des neiges le plus grand lièvre d'Europe."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Quelle partie du corps de la taupe lui permet de s'orienter à reculons sous la terre ?",
|
||||
"propositions": [
|
||||
"Sa queue",
|
||||
"Sa tête",
|
||||
"Ses pattes",
|
||||
"Son museau"
|
||||
],
|
||||
"réponse": "Sa queue",
|
||||
"anecdote": "Leurs caractéristiques générales sont celles des petits mammifères fouisseurs qui creusent et vivent dans des galeries souterraines."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Comment sont appelées les larves du hanneton qui sont radicivores ?",
|
||||
"propositions": [
|
||||
"Vers blancs",
|
||||
"Chenilles",
|
||||
"Coques",
|
||||
"Nymphes"
|
||||
],
|
||||
"réponse": "Vers blancs",
|
||||
"anecdote": "Les vers blancs se transforment en nymphes. Au bout de 4 à 6 semaines, un coléoptère sortira du cocon."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "De quoi est faite la coquille de l'escargot de Bourgogne ?",
|
||||
"propositions": [
|
||||
"Calcaire",
|
||||
"Granit",
|
||||
"Schiste",
|
||||
"Corne"
|
||||
],
|
||||
"réponse": "Calcaire",
|
||||
"anecdote": "La coquille en spirale de l'escargot de Bourgogne mesure jusqu'à 10 cm et est composée de calcaire."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Comment s'appelle la femelle du renard, encore fréquemment appelé goupil ?",
|
||||
"propositions": [
|
||||
"Renardeaude",
|
||||
"Renardelle",
|
||||
"Renarde",
|
||||
"Renardine"
|
||||
],
|
||||
"réponse": "Renarde",
|
||||
"anecdote": "Les caractéristiques générales des renards sont celles des Canidés, avec des nuances pour chaque espèce."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "Combien de vertèbres possède un ver de terre, dont plus de 5 000 espèces sont connues ?",
|
||||
"propositions": [
|
||||
"432",
|
||||
"Aucune",
|
||||
"178",
|
||||
"32"
|
||||
],
|
||||
"réponse": "Aucune",
|
||||
"anecdote": "Un ver de terre est un invertébré et ne possède donc aucune vertèbre."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Parmi ces propositions, laquelle désigne une sorte de « souris des champs » ?",
|
||||
"propositions": [
|
||||
"Musaraigne",
|
||||
"Mulet",
|
||||
"Mulot",
|
||||
"Muscardin"
|
||||
],
|
||||
"réponse": "Mulot",
|
||||
"anecdote": "Les musaraignes, ressemblant à une souris vues de loin, malgré leur nez pointu, sont aussi parfois qualifiées par erreur de mulots."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "Quel partie du corps de la mouche bleue lui permet de manger ?",
|
||||
"propositions": [
|
||||
"Les mâchoires",
|
||||
"La trompe",
|
||||
"Les pattes",
|
||||
"Les ailes"
|
||||
],
|
||||
"réponse": "La trompe",
|
||||
"anecdote": "Grâce à cette trompe, la mouche bleue, pollinisatrice de fleurs à forte odeur, peut aspirer pollens et nectars."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Quelle graminée cultivée comme céréale ou comme fourrage ne possède pas de barbe ?",
|
||||
"propositions": [
|
||||
"Avoine",
|
||||
"Blé",
|
||||
"Seigle",
|
||||
"Orge"
|
||||
],
|
||||
"réponse": "Avoine",
|
||||
"anecdote": "L'avoine est la seule graminée à ne pas posséder de barbe, la barbe la plus longue se trouvant sur l'orge."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "Comment le lièvre est-il parfois appelé en raison de sa robe brune ?",
|
||||
"propositions": [
|
||||
"Jacobin",
|
||||
"Capucin",
|
||||
"Augustin",
|
||||
"Chanoine"
|
||||
],
|
||||
"réponse": "Capucin",
|
||||
"anecdote": "La robe brune du lièvre ressemble à la bure des moines capucins, d'où son nom."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "Quelles plantes possédant des fruits à noyau peut-on trouver en lisière des forêts ?",
|
||||
"propositions": [
|
||||
"Cactus",
|
||||
"Lierre grimpant",
|
||||
"Nénuphars",
|
||||
"Prunelles"
|
||||
],
|
||||
"réponse": "Prunelles",
|
||||
"anecdote": "Leurs fruits, très astringents et acides, sont mangés par les oiseaux et les insectes en automne."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Combien de points la coccinelle des légumineuses a-t-elle sur sa carapace ?",
|
||||
"propositions": [
|
||||
"24",
|
||||
"14",
|
||||
"44",
|
||||
"34"
|
||||
],
|
||||
"réponse": "24",
|
||||
"anecdote": "La coccinelle des légumineuses possède des ailes oranges marquées de 24 points."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Quelle est la particularité du vol du faucon crécerelle ?",
|
||||
"propositions": [
|
||||
"Il est en vagues",
|
||||
"Il est vertical",
|
||||
"Il est actif",
|
||||
"Il est stationnaire"
|
||||
],
|
||||
"réponse": "Il est stationnaire",
|
||||
"anecdote": "Les ornithologues l'ont appelé ainsi à cause de son cri très aigu et plutôt désagréable."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Entouré de ses poils piquants, quel âge un hérisson peut-il atteindre ?",
|
||||
"propositions": [
|
||||
"De 1 à 3 ans",
|
||||
"6 mois",
|
||||
"De 3 à 7 ans",
|
||||
"De 8 à 12 ans"
|
||||
],
|
||||
"réponse": "De 3 à 7 ans",
|
||||
"anecdote": "Les épines ont une fonction de protection, mais les manuels antiques imaginaient qu'elles servaient à récolter de la nourriture."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "De combien de degrés le faucon crécerelle peut-il tourner la tête ?",
|
||||
"propositions": [
|
||||
"120",
|
||||
"320",
|
||||
"180",
|
||||
"270"
|
||||
],
|
||||
"réponse": "180",
|
||||
"anecdote": "Le faucon crécerelle peut ainsi surveiller sa zone de chasse sans se déplacer."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Considéré comme insecte ravageur, à quelle hauteur un criquet peut-il sauter ?",
|
||||
"propositions": [
|
||||
"130 cm",
|
||||
"12 cm",
|
||||
"210 cm",
|
||||
"70 cm"
|
||||
],
|
||||
"réponse": "70 cm",
|
||||
"anecdote": "Par rapport à sa taille, aucun être vivant sur Terre n'est capable de sauter aussi haut."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "Comment appelle-t-on un bois de cerf à douze excroissances ?",
|
||||
"propositions": [
|
||||
"12 fourré",
|
||||
"12 sylve",
|
||||
"12 breuil",
|
||||
"12 cors"
|
||||
],
|
||||
"réponse": "12 cors",
|
||||
"anecdote": "Le cerf perd ses bois en février et les nouveaux bois auront deux excroissances de plus."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Quel animal prétendument disparu depuis presque 100 ans est réapparu en 2009 ?",
|
||||
"propositions": [
|
||||
"La vipère",
|
||||
"La loutre",
|
||||
"Le faisan",
|
||||
"Le chat sauvage"
|
||||
],
|
||||
"réponse": "Le chat sauvage",
|
||||
"anecdote": "Le chat sauvage a fait son apparition en Allemagne, après avoir disparu depuis 1912."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Quel est l'autre nom de la primevère, une des premières fleurs du printemps ?",
|
||||
"propositions": [
|
||||
"Merle",
|
||||
"Moineau",
|
||||
"Coucou",
|
||||
"Pivert"
|
||||
],
|
||||
"réponse": "Coucou",
|
||||
"anecdote": "Les petites fleurs jaunes de la primevère annoncent le printemps comme le fait le coucou, l'oiseau."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "Quand fleurit la camomille sauvage, parfois appelée camomille allemande ?",
|
||||
"propositions": [
|
||||
"De juillet à février",
|
||||
"De mai à septembre",
|
||||
"De janvier à avril",
|
||||
"De mai à juillet"
|
||||
],
|
||||
"réponse": "De mai à septembre",
|
||||
"anecdote": "Cette plante médicinale, utilisée depuis l'Antiquité gréco-latine, est simplement appelée « camomille » en herboristerie."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "Quel mustélidé, souvent rencontré en zone de montagne, change de fourrure en hiver ?",
|
||||
"propositions": [
|
||||
"La loutre",
|
||||
"Le blaireau",
|
||||
"L'hermine",
|
||||
"Le putois"
|
||||
],
|
||||
"réponse": "L'hermine",
|
||||
"anecdote": "Vers la mi-mars l'hermine commence sa mue pour retrouver sa couleur d'été juste avant la saison des amours."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "Avec quelle plante peut-on confondre l'ail des ours, jadis associé à la magie blanche ?",
|
||||
"propositions": [
|
||||
"Origan",
|
||||
"Primevère",
|
||||
"Muguet",
|
||||
"Basilic"
|
||||
],
|
||||
"réponse": "Muguet",
|
||||
"anecdote": "La confusion, assez fréquente, peut être très dangereuse et entraîner la mort."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "De quelle manière les musaraignes explorent-elles leur environnement ?",
|
||||
"propositions": [
|
||||
"Avec leur odorat",
|
||||
"Par écho",
|
||||
"Par infrarouge",
|
||||
"Par télépathie"
|
||||
],
|
||||
"réponse": "Par écho",
|
||||
"anecdote": "La musaraigne lance des cris stridents qui sont renvoyés par des obstacles."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Quelle espèce de corneille nichant en colonies possède un bec clair ?",
|
||||
"propositions": [
|
||||
"La corneille noire",
|
||||
"Le corbeau freux",
|
||||
"La corneille mantelée",
|
||||
"La pie bavarde"
|
||||
],
|
||||
"réponse": "Le corbeau freux",
|
||||
"anecdote": "Le freux possède une robe tout à fait caractéristique, mais on peut cependant confondre les oisillons avec les corneilles."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "Quel est l'autre nom du chevreuil mâle, petit animal agile et très rapide ?",
|
||||
"propositions": [
|
||||
"Le brocard",
|
||||
"Le daim",
|
||||
"Le renne",
|
||||
"Le cerf"
|
||||
],
|
||||
"réponse": "Le brocard",
|
||||
"anecdote": "Tous les chevreuils appartiennent à la famille des cervidés. Les mâles portent des bois."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "Comment les Américains nomment-ils le doryphore de la pomme de terre ?",
|
||||
"propositions": [
|
||||
"Colorado beetle",
|
||||
"Big dory",
|
||||
"Azirona bug",
|
||||
"Lady potatoe"
|
||||
],
|
||||
"réponse": "Colorado beetle",
|
||||
"anecdote": "Le doryphore de la pomme de terre est originaire de l'État du Colorado, aux États-Unis."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Laquelle de ces propositions ne désigne pas un coléoptère ?",
|
||||
"propositions": [
|
||||
"Scarabée zèbre",
|
||||
"Cétoine",
|
||||
"Bousier",
|
||||
"Cerf-volant"
|
||||
],
|
||||
"réponse": "Scarabée zèbre",
|
||||
"anecdote": "La première paire d'ailes, quelquefois très colorée, appelée élytres, forme la carapace de ces insectes."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Avec son masque noir bordé de blanc, d'où le raton laveur est-il originaire ?",
|
||||
"propositions": [
|
||||
"Amérique du Nord",
|
||||
"Australie",
|
||||
"Océanie",
|
||||
"Afrique"
|
||||
],
|
||||
"réponse": "Amérique du Nord",
|
||||
"anecdote": "Le raton laveur doit son nom à son habitude, plus ou moins réelle, de tremper ses aliments dans l'eau avant de les manger."
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
410
misc/quiz/openquizzdb/inventions.json
Normal file
410
misc/quiz/openquizzdb/inventions.json
Normal file
@ -0,0 +1,410 @@
|
||||
{
|
||||
"fournisseur": "OpenQuizzDB - Fournisseur de contenu libre (https://www.openquizzdb.org)",
|
||||
"licence": "CC BY-SA",
|
||||
"rédacteur": "Philippe Bresoux",
|
||||
"difficulté": "4 / 5",
|
||||
"version": 1,
|
||||
"mise-à-jour": "2024-03-30",
|
||||
"catégorie-nom-slogan": {
|
||||
"fr": {
|
||||
"catégorie": "Sciences",
|
||||
"nom": "Inventions",
|
||||
"slogan": "Le génie au service de tous"
|
||||
},
|
||||
"en": {
|
||||
"catégorie": "Sciences",
|
||||
"nom": "Inventions",
|
||||
"slogan": "Engineering at the service of all"
|
||||
},
|
||||
"es": {
|
||||
"catégorie": "Ciencias",
|
||||
"nom": "Inventos",
|
||||
"slogan": "Ingeniería al servicio de todos"
|
||||
},
|
||||
"it": {
|
||||
"catégorie": "Scienze",
|
||||
"nom": "Invenzioni",
|
||||
"slogan": "L'ingegneria al servizio di tutti"
|
||||
},
|
||||
"de": {
|
||||
"catégorie": "Wissenschaft",
|
||||
"nom": "Erfindungen",
|
||||
"slogan": "Engineering im Dienste aller"
|
||||
},
|
||||
"nl": {
|
||||
"catégorie": "Sciences",
|
||||
"nom": "Uitvindingen",
|
||||
"slogan": "Engineering ten dienste van iedereen"
|
||||
}
|
||||
},
|
||||
"quizz": {
|
||||
"fr": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "Qui a réussi à imposer la commercialisation de la poubelle ?",
|
||||
"propositions": [
|
||||
"Louis Lépine",
|
||||
"Ferdinand Duval",
|
||||
"Bertrand Landrieu",
|
||||
"Eugène Poubelle"
|
||||
],
|
||||
"réponse": "Eugène Poubelle",
|
||||
"anecdote": "Préfet de la Seine, il a donné son nom aux poubelles à travers ses décisions pour améliorer l'hygiène de la ville de Paris."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Laquelle de ces inventions ne porte pas le nom de son inventeur ?",
|
||||
"propositions": [
|
||||
"Le macadam",
|
||||
"La poubelle",
|
||||
"Le laser",
|
||||
"Le colt"
|
||||
],
|
||||
"réponse": "Le laser",
|
||||
"anecdote": "En 1950, Alfred Kastler proposa un procédé de pompage optique qu'il valida expérimentalement deux ans plus tard."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Quelle compétition prime chaque année les meilleures inventions françaises ?",
|
||||
"propositions": [
|
||||
"Concours Lépine",
|
||||
"Concours Edison",
|
||||
"Concours Thomas",
|
||||
"Concours Novastar"
|
||||
],
|
||||
"réponse": "Concours Lépine",
|
||||
"anecdote": "Ce concours-exposition de jouets était principalement destiné à sortir les petits fabricants du marasme économique ambiant."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Quel jeu de société international Chris Haney et Scott Abbott ont-ils créé ?",
|
||||
"propositions": [
|
||||
"Trivial Pursuit",
|
||||
"Puissance 4",
|
||||
"Monopoly",
|
||||
"Cluedo"
|
||||
],
|
||||
"réponse": "Trivial Pursuit",
|
||||
"anecdote": "Le jeu a été commercialisé sous le nom « Remue-méninges » avant de connaître le succès que nous lui connaissons."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Qui a inventé la dynamite au moyen de la nitroglycérine ?",
|
||||
"propositions": [
|
||||
"Albert Einstein",
|
||||
"Alfred Nobel",
|
||||
"Lavoisier",
|
||||
"Isaac Newton"
|
||||
],
|
||||
"réponse": "Alfred Nobel",
|
||||
"anecdote": "La dynamite a été très utilisée, notamment dans l'industrie minière, jusqu'à son remplacement par des explosifs plus puissants."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Quel biologiste français a inventé la pasteurisation de la bière ?",
|
||||
"propositions": [
|
||||
"Thomas Preat",
|
||||
"Maurice Fontaine",
|
||||
"Laurent Chabry",
|
||||
"Louis Pasteur"
|
||||
],
|
||||
"réponse": "Louis Pasteur",
|
||||
"anecdote": "La pasteurisation est un procédé de conservation des aliments par lequel ceux-ci sont chauffés puis rapidement refroidis."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Quel inventeur italien a conçu à la fin du XVe siècle un canon et un parachute ?",
|
||||
"propositions": [
|
||||
"Roberto Galletti",
|
||||
"Léonard de Vinci",
|
||||
"Alessandro Volta",
|
||||
"Ettore Bugatti"
|
||||
],
|
||||
"réponse": "Léonard de Vinci",
|
||||
"anecdote": "Léonard de Vinci a fait progresser la connaissance dans les domaines de l'anatomie, du génie civil, de l'optique et de l'hydrodynamique."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "Selon des textes anciens, dans quel pays a-t-on inventé le cerf-volant ?",
|
||||
"propositions": [
|
||||
"Mexique",
|
||||
"Chine",
|
||||
"Inde",
|
||||
"États-Unis"
|
||||
],
|
||||
"réponse": "Chine",
|
||||
"anecdote": "À l'origine, le cerf-volant servait de signal, mais aussi à porter des messages, à effrayer les ennemis ou à évaluer des distances."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "En quelle année la couturière Mary Quant a-t-elle inventé la minijupe ?",
|
||||
"propositions": [
|
||||
"1964",
|
||||
"1954",
|
||||
"1944",
|
||||
"1974"
|
||||
],
|
||||
"réponse": "1964",
|
||||
"anecdote": "En 1966, Mary Quant fut promue Officier de l'Ordre de l'Empire britannique pour services rendus à l'industrie de la mode."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "Quel billet le banquier Law a-t-il inventé au XVIIIe siècle ?",
|
||||
"propositions": [
|
||||
"Le billet de banque",
|
||||
"Le billet doux",
|
||||
"Le billet notarial",
|
||||
"Le billet de loterie"
|
||||
],
|
||||
"réponse": "Le billet de banque",
|
||||
"anecdote": "John Law recommanda l'utilisation de papier-monnaie plutôt que de monnaie métallique afin de faciliter le commerce et l'investissement."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Quel terme fut inventé en 1955 par le philologue français Jacques Perret ?",
|
||||
"propositions": [
|
||||
"Transistor",
|
||||
"Imprimante",
|
||||
"Ordinateur",
|
||||
"Ampoule"
|
||||
],
|
||||
"réponse": "Ordinateur",
|
||||
"anecdote": "Le terme « Ordinateur » voulait dire, selon les intentions du docteur en lettres, « Dieu mettant de l'ordre dans le monde »."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "Quel français a inventé le stéthoscope, alors une simple liasse de papiers roulés ?",
|
||||
"propositions": [
|
||||
"Louis Pasteur",
|
||||
"René Laennec",
|
||||
"Louis Braille",
|
||||
"Léon Binet"
|
||||
],
|
||||
"réponse": "René Laennec",
|
||||
"anecdote": "Ce procédé certes rudimentaire permettait d'éloigner l'oreille du médecin de son patient pour des raisons de pudeur et d'efficacité."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "Quelle grande marque inventa le sac à dos en 1936 ?",
|
||||
"propositions": [
|
||||
"Louis Vuitton",
|
||||
"Lafuma",
|
||||
"Lacoste",
|
||||
"Levi's"
|
||||
],
|
||||
"réponse": "Lafuma",
|
||||
"anecdote": "Du transport de matériel scolaire aux utilisations sportives ou professionnelles, chaque sac à dos est adapté à son utilisation."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Charles Darrow, inventeur du jeu de Monopoly, était lors de son invention en 1935...",
|
||||
"propositions": [
|
||||
"En prison",
|
||||
"Agent immobilier",
|
||||
"Banquier",
|
||||
"Au chômage"
|
||||
],
|
||||
"réponse": "Au chômage",
|
||||
"anecdote": "Malgré de nombreuses difficultés, Charles Darrow réussit finalement à faire éditer son jeu par la société Parker Brothers en 1935."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Quel savant italien a découvert le principe de la pile électrique ?",
|
||||
"propositions": [
|
||||
"Volta",
|
||||
"Turriano",
|
||||
"Marconi",
|
||||
"Bugatti"
|
||||
],
|
||||
"réponse": "Volta",
|
||||
"anecdote": "À l'origine, le terme « pile » désignait un dispositif inventé par Alessandro Volta, composé d'un empilement de rondelles."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Quelle invention Nicolas Appert a-t-il mise au point pour les armées de Napoléon ?",
|
||||
"propositions": [
|
||||
"Ceinturon",
|
||||
"Tissu imperméable",
|
||||
"Conserve",
|
||||
"Lit de camp"
|
||||
],
|
||||
"réponse": "Conserve",
|
||||
"anecdote": "Par sa méthode de conservation, Nicolas Appert a créé en France la première usine de conserves au monde."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Quelle marque a inventé la cassette audio ou minicassette ?",
|
||||
"propositions": [
|
||||
"Sony",
|
||||
"Fuji",
|
||||
"Philips",
|
||||
"BASF"
|
||||
],
|
||||
"réponse": "Philips",
|
||||
"anecdote": "Bien que le CD ait supplanté la cassette audio, on peut encore en trouver des exemplaires vierges dans quelques enseignes."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Quel médecin créa une table de correspondance entre rêves et organes ?",
|
||||
"propositions": [
|
||||
"Hippocrate",
|
||||
"Hasdrubal",
|
||||
"Harpagon",
|
||||
"Hannibal"
|
||||
],
|
||||
"réponse": "Hippocrate",
|
||||
"anecdote": "Père de la Médecine, son école de médecine hippocratique a intellectuellement révolutionné la pratique de la médecine."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "À qui doit-on le prototype de la première dynamo industrielle réalisé en 1869 ?",
|
||||
"propositions": [
|
||||
"Frédéric Neuhaus",
|
||||
"John Cockerill",
|
||||
"Zénobe Gramme",
|
||||
"Victor Simon"
|
||||
],
|
||||
"réponse": "Zénobe Gramme",
|
||||
"anecdote": "La dynamo est une machine à courant continu fonctionnant en générateur électrique par induction électromagnétique."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Quel physicien et mathématicien italien a inventé le baromètre en 1643 ?",
|
||||
"propositions": [
|
||||
"Turing",
|
||||
"Torricelli",
|
||||
"Tesla",
|
||||
"Tomlinson"
|
||||
],
|
||||
"réponse": "Torricelli",
|
||||
"anecdote": "Un baromètre, pouvant aussi servir d'altimètre, est un instrument de mesure servant à mesurer la pression atmosphérique."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Quel ingénieur écossais fut le premier à utiliser le terme « cheval-vapeur » ?",
|
||||
"propositions": [
|
||||
"Alexander Thom",
|
||||
"James Watt",
|
||||
"Henry Dyer",
|
||||
"William Rankine"
|
||||
],
|
||||
"réponse": "James Watt",
|
||||
"anecdote": "En 1879, les 38 lignes d'omnibus de Paris requéraient l'entretien pharaonique de pas moins de 16 500 chevaux."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "Selon la légende, quelle spécialité le grec Aphtonite aurait-il inventée ?",
|
||||
"propositions": [
|
||||
"Le boudin noir",
|
||||
"Le jambon cru",
|
||||
"Les rillettes",
|
||||
"Le saucisson"
|
||||
],
|
||||
"réponse": "Le boudin noir",
|
||||
"anecdote": "Le boudin noir est fabriqué à partir de sang et de graisse de porc, et, dans une moindre mesure, de sang de mouton ou de chèvre."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "Quelle société a inventé (et pas breveté) la souris de votre ordinateur ?",
|
||||
"propositions": [
|
||||
"Xerox",
|
||||
"Xoom",
|
||||
"Xiaomi",
|
||||
"Xfinity"
|
||||
],
|
||||
"réponse": "Xerox",
|
||||
"anecdote": "Douglas Carl Engelbart a déposé 21 brevets au total, dont un pour sa souris en 1967 qu'il reçut en 1970."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "Quel était le véritable métier de Samuel Morse, qui déposa en 1840 le brevet du télégraphe ?",
|
||||
"propositions": [
|
||||
"Compositeur lyrique",
|
||||
"Apprenti danseur",
|
||||
"Peintre sculpteur",
|
||||
"Écrivain éditeur"
|
||||
],
|
||||
"réponse": "Peintre sculpteur",
|
||||
"anecdote": "Le génie de Samuel Morse fut de concevoir une machine simple, efficace, bon marché et robuste à la fois."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Quel docteur et professeur en médecine est connu pour avoir inventé le basket-ball ?",
|
||||
"propositions": [
|
||||
"James Naismith",
|
||||
"Martin Roy",
|
||||
"Jacques Dextraze",
|
||||
"Gordon Herbert"
|
||||
],
|
||||
"réponse": "James Naismith",
|
||||
"anecdote": "Durant sa jeunesse, James Naismith était un gymnaste et un joueur de football canadien de haut niveau à l'université McGill."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Dans quel pays le « Lego » a-t-il été inventé par un charpentier ?",
|
||||
"propositions": [
|
||||
"Danemark",
|
||||
"Norvège",
|
||||
"Suède",
|
||||
"Finlande"
|
||||
],
|
||||
"réponse": "Danemark",
|
||||
"anecdote": "Le nom de la société fut créé par Ole Kirk Christiansen en 1932, à partir du danois « leg godt », signifiant « joue bien »."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "Quel inventeur français a mis au point la première carte à puce ?",
|
||||
"propositions": [
|
||||
"Gustave Lyon",
|
||||
"Léon Bollée",
|
||||
"Henri Fourel",
|
||||
"Roland Moreno"
|
||||
],
|
||||
"réponse": "Roland Moreno",
|
||||
"anecdote": "Roland Moreno a reçu pour son invention de la carte à puce l'Oscar du livre mondial des inventions en 1985."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "Combien de brevets furent déposés par Thomas Edison au cours de sa vie ?",
|
||||
"propositions": [
|
||||
"1 074",
|
||||
"421",
|
||||
"234",
|
||||
"57"
|
||||
],
|
||||
"réponse": "1 074",
|
||||
"anecdote": "Thomas Edison employa au cours de sa vie plus de 35 000 personnes dans son « empire industriel » fondé sur l'électricité."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Louis Réard a inventé le bikini, mais quel était son véritable métier ?",
|
||||
"propositions": [
|
||||
"Charcutier",
|
||||
"Ingénieur automobile",
|
||||
"Coiffeur",
|
||||
"Barbier"
|
||||
],
|
||||
"réponse": "Ingénieur automobile",
|
||||
"anecdote": "Il le présenta en 1946 à la piscine Molitor, porté par Micheline Bernardini, une danseuse nue bien connue du Casino de Paris."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Quelle était la nationalité des deux ingénieurs inventeurs du carburateur ?",
|
||||
"propositions": [
|
||||
"Hongroise",
|
||||
"Autrichienne",
|
||||
"Suisse",
|
||||
"Roumaine"
|
||||
],
|
||||
"réponse": "Hongroise",
|
||||
"anecdote": "Le carburateur permet de préparer un mélange d'air et de carburant pour constituer un mélange de richesse adéquate."
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
2250
misc/quiz/openquizzdb/mysteres.json
Normal file
2250
misc/quiz/openquizzdb/mysteres.json
Normal file
@ -0,0 +1,2250 @@
|
||||
{
|
||||
"fournisseur": "OpenQuizzDB - Fournisseur de contenu libre (https://www.openquizzdb.org)",
|
||||
"licence": "CC BY-SA",
|
||||
"rédacteur": "Catherine De Smeytere",
|
||||
"difficulté": "3 / 5",
|
||||
"version": 1,
|
||||
"mise-à-jour": "2020-11-29",
|
||||
"catégorie-nom-slogan": {
|
||||
"fr": {
|
||||
"catégorie": "Culture générale",
|
||||
"nom": "Mystères du monde",
|
||||
"slogan": "Pour la plupart encore non résolus"
|
||||
},
|
||||
"en": {
|
||||
"catégorie": "General knowledge",
|
||||
"nom": "Mysteries of the world",
|
||||
"slogan": "Mostly still unresolved"
|
||||
},
|
||||
"es": {
|
||||
"catégorie": "Cultura general",
|
||||
"nom": "Misterios del mundo",
|
||||
"slogan": "En su mayoría aún sin resolver"
|
||||
},
|
||||
"it": {
|
||||
"catégorie": "Cultura generale",
|
||||
"nom": "Misteri del mondo",
|
||||
"slogan": "Per lo più ancora irrisolto"
|
||||
},
|
||||
"de": {
|
||||
"catégorie": "Allgemeine Kultur",
|
||||
"nom": "Geheimnisse der Welt",
|
||||
"slogan": "Größtenteils noch ungeklärt"
|
||||
},
|
||||
"nl": {
|
||||
"catégorie": "Algemene cultuur",
|
||||
"nom": "Mysteries van de wereld",
|
||||
"slogan": "Meestal nog niet opgelost"
|
||||
}
|
||||
},
|
||||
"quizz": {
|
||||
"fr": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "Dans quelle ville du nouveau Mexique se serait écrasé un OVNI ?",
|
||||
"propositions": [
|
||||
"Las Vegas",
|
||||
"Santa Fé",
|
||||
"Albuquerque",
|
||||
"Roswell"
|
||||
],
|
||||
"réponse": "Roswell",
|
||||
"anecdote": "Le site d'impact se situe à 120 km de la ville elle-même, plus près de Corona, mais c'est la base de Roswell qui se chargea de l'enquête."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Que signifie le mot Stonehedge, du nom du site du comté du Wiltshire ?",
|
||||
"propositions": [
|
||||
"Temple du Dieu",
|
||||
"Nécropole",
|
||||
"Pierres suspendues",
|
||||
"Immense cercle"
|
||||
],
|
||||
"réponse": "Pierres suspendues",
|
||||
"anecdote": "La première mention écrite de Stonehenge est celle donnée de manière peu explicite par l'historien grec Diodore de Sicile."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "À quel endroit du sud-est de l'océan Pacifique se trouvent les Moaï ?",
|
||||
"propositions": [
|
||||
"Île de Pâques",
|
||||
"Hawaï",
|
||||
"Îles Cook",
|
||||
"Samoa"
|
||||
],
|
||||
"réponse": "Île de Pâques",
|
||||
"anecdote": "La majorité de ces statues monumentales sont sculptés dans du tuf issu principalement de la carrière de Rano Raraku."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Dans l'imaginaire des Hommes, de quelle couleur seraient les extraterrestres ?",
|
||||
"propositions": [
|
||||
"Grise",
|
||||
"Bleue",
|
||||
"Rouge",
|
||||
"Mauve"
|
||||
],
|
||||
"réponse": "Grise",
|
||||
"anecdote": "C'est avec la rencontre de Kelly-Hopkinsville que la représentation des petits gris deviendra ancrée dans la conscience populaire."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Qui sont les amazones dans la culture traditionnelle et populaire ?",
|
||||
"propositions": [
|
||||
"Prêtresses",
|
||||
"Femmes à cheval",
|
||||
"Guerrières",
|
||||
"Acheteuses du web"
|
||||
],
|
||||
"réponse": "Guerrières",
|
||||
"anecdote": "Dans la mythologie grecque, les Amazones sont un peuple de femmes guerrières situé sur les rives de la mer Noire."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Comment l'essor du tourisme a-t-il surnommé le monstre du Loch Ness ?",
|
||||
"propositions": [
|
||||
"Nessie",
|
||||
"Jessie",
|
||||
"Lucie",
|
||||
"Locky"
|
||||
],
|
||||
"réponse": "Nessie",
|
||||
"anecdote": "Cette créature lacustre légendaire supposée vivre en Écosse est décrit comme ressemblant à un serpent de mer ou à un plésiosaure."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Par définition, comment appelle-t-on une manifestation surnaturelle d'un défunt ?",
|
||||
"propositions": [
|
||||
"Dieu",
|
||||
"Fantôme",
|
||||
"Ange",
|
||||
"Démon"
|
||||
],
|
||||
"réponse": "Fantôme",
|
||||
"anecdote": "Les fantômes peuvent prendre un nom spécifique en raison de leurs origines et de leurs caractéristiques (lémures, willis, ...)."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "Dans quelle cité furent bâtis les jardins suspendus les plus célèbres ?",
|
||||
"propositions": [
|
||||
"Alexandrie",
|
||||
"Troie",
|
||||
"Babylone",
|
||||
"Carthage"
|
||||
],
|
||||
"réponse": "Babylone",
|
||||
"anecdote": "Ils apparaissent dans les écrits de plusieurs auteurs grecs et romains antiques (Diodore de Sicile, Strabon, Philon d'Alexandrie)."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Du haut de ses 1 281 mètres, quel volcan a englouti la cité de Pompei ?",
|
||||
"propositions": [
|
||||
"Stromboli",
|
||||
"Krakatoa",
|
||||
"Vésuve",
|
||||
"Mont Fudji"
|
||||
],
|
||||
"réponse": "Vésuve",
|
||||
"anecdote": "Il est à l'origine de la destruction des villes de Pompéi, Herculanum, Oplontis et Stabies, ensevelies en 79 sous une pluie de cendres."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "Dans quel triangle cinq bombardiers disparurent mystérieusement en 1945 ?",
|
||||
"propositions": [
|
||||
"Des Bermudes",
|
||||
"De Pascal",
|
||||
"Rose",
|
||||
"Équilatéral"
|
||||
],
|
||||
"réponse": "Des Bermudes",
|
||||
"anecdote": "Les avions, perdus en mission, auraient en fait été victimes d'une panne de carburant et ne pouvaient plus communiquer."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Dans quel but les larves de Magicicada émergent-elles tous les 17 ans ?",
|
||||
"propositions": [
|
||||
"Se suicider",
|
||||
"Se transformer",
|
||||
"Se nourrir",
|
||||
"Se reproduire"
|
||||
],
|
||||
"réponse": "Se reproduire",
|
||||
"anecdote": "La Cigale dix-sept ans se retrouve dans l'est des États-Unis, de la Louisiane au Massachusetts et de la Géorgie au Wisconsin."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "En quelle année la CIA a-t-elle dû confirmer l'existence de la Zone 51 ?",
|
||||
"propositions": [
|
||||
"2012",
|
||||
"2014",
|
||||
"2013",
|
||||
"2011"
|
||||
],
|
||||
"réponse": "2013",
|
||||
"anecdote": "Le 15 août 2013, un document top-secret de 400 pages fut déclassifié, officialisant l'existence de la Zone 51 dans le Nevada."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "À quel âge est mort Toutânkhamon, devenu célèbre pour sa sépulture ?",
|
||||
"propositions": [
|
||||
"48 ans",
|
||||
"28 ans",
|
||||
"38 ans",
|
||||
"18 ans"
|
||||
],
|
||||
"réponse": "18 ans",
|
||||
"anecdote": "La notoriété de la découverte augmenta grâce à une légende de malédiction du pharaon reprise par la presse de l'époque."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Quelle ville est décrite par Platon au 4e siècle avant Jésus Christ ?",
|
||||
"propositions": [
|
||||
"Atlantide",
|
||||
"Alexandrie",
|
||||
"Babylone",
|
||||
"Angkor Vat"
|
||||
],
|
||||
"réponse": "Atlantide",
|
||||
"anecdote": "L'Atlantide est une île gigantesque évoquée par le philosophe Platon dans deux de ses « Dialogues », le « Timée » puis le « Critias »."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Combien de kilomètres couvrent les alignements de Carnac ?",
|
||||
"propositions": [
|
||||
"5 kilomètres",
|
||||
"10 kilomètres",
|
||||
"2 kilomètres",
|
||||
"4 kilomètres"
|
||||
],
|
||||
"réponse": "4 kilomètres",
|
||||
"anecdote": "Ce site mégalithique, constitué d'alignements de menhirs, de dolmens et d'allées couvertes, est réparti sur plus de 4 kilomètres."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "De quel sujet traite le manuscrit de Voynich, illustré et anonyme ?",
|
||||
"propositions": [
|
||||
"Sexe",
|
||||
"Carte au trésor",
|
||||
"Légendes païennes",
|
||||
"Plantes inconnues"
|
||||
],
|
||||
"réponse": "Plantes inconnues",
|
||||
"anecdote": "Malgré des tentatives des cryptographes, la nature exacte de ce document, son but et son auteur demeurent une énigme."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Qui a réussi à décoder les sections gravées sur la sculpture « Kryptos » ?",
|
||||
"propositions": [
|
||||
"Personne",
|
||||
"Jim Sanborn",
|
||||
"Howard Carter",
|
||||
"Edward M. Scheidt"
|
||||
],
|
||||
"réponse": "Personne",
|
||||
"anecdote": "La sculpture « Kryptos » a été conçue par le sculpteur Jim Sanborn et le cryptographe Edward M. Scheidt, retraité de la CIA, en 1990."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Où se trouve le site Göbekli Tepe, aussi appelé la colline de Potbelly ?",
|
||||
"propositions": [
|
||||
"Cambodge",
|
||||
"Inde",
|
||||
"Égypte",
|
||||
"Turquie"
|
||||
],
|
||||
"réponse": "Turquie",
|
||||
"anecdote": "La civilisation mégalithique à l'origine de ces constructions est très mal connue, le site ayant été abandonné en 8000 av. J.-C."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "En quelle année les lignes de Nazca furent-elles inscrites à l'UNESCO ?",
|
||||
"propositions": [
|
||||
"1985",
|
||||
"1977",
|
||||
"1994",
|
||||
"2006"
|
||||
],
|
||||
"réponse": "1994",
|
||||
"anecdote": "Ces grandes figures tracées sur le sol sur plusieurs kilomètres sont visibles dans le désert de Nazca, dans le sud du Pérou."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "De quelle région provient la première mention non contestée du suaire de Turin ?",
|
||||
"propositions": [
|
||||
"Champagne",
|
||||
"Normandie",
|
||||
"Dordogne",
|
||||
"Bourgogne"
|
||||
],
|
||||
"réponse": "Champagne",
|
||||
"anecdote": "Ce drap de lin jauni de quatre mètres de long montre l'image floue d'un homme aux blessures compatibles avec un crucifiement."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Quels papillons d'Amérique du Nord volent sur 4 000 km pour migrer vers le sud ?",
|
||||
"propositions": [
|
||||
"Monarques",
|
||||
"Calospila",
|
||||
"Atlides",
|
||||
"Godyris"
|
||||
],
|
||||
"réponse": "Monarques",
|
||||
"anecdote": "Au stade adulte, le Monarque présente un dimorphisme sexuel. Les mâles sont plus grands mais leurs ailes sont plus minces."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "Quelle est la particularité de certaines pierres de la vallée de la Mort ?",
|
||||
"propositions": [
|
||||
"Elles bougent",
|
||||
"Elles sifflent",
|
||||
"Elles sont creuses",
|
||||
"Elles explosent"
|
||||
],
|
||||
"réponse": "Elles bougent",
|
||||
"anecdote": "La vallée de la Mort constitue un désert faisant partie du désert des Mojaves et possède un climat subtropical désertique chaud."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "En quelle année Jerry Ehman a-t-il reçu le signal Wow d'origine inexpliquée ?",
|
||||
"propositions": [
|
||||
"1969",
|
||||
"1977",
|
||||
"1987",
|
||||
"2001"
|
||||
],
|
||||
"réponse": "1977",
|
||||
"anecdote": "D'origine inexpliquée, ce signal de 72 secondes n'a plus été détecté depuis, a fait l'objet d'une attention significative des médias."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "L'ensemble des signes gravés sur bois sur l'île de Pâques est appelé système...",
|
||||
"propositions": [
|
||||
"Rongorongo",
|
||||
"Moaïen",
|
||||
"Chicha",
|
||||
"Hiéropglyphique"
|
||||
],
|
||||
"réponse": "Rongorongo",
|
||||
"anecdote": "Ces signes présentent l'aspect d'homoncules et d'animaux stylisés, parfois de plantes, souvent de formes géométriques ou fantastiques."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Combien de présidents américains seraient morts sous la malédiction de Tecumseh ?",
|
||||
"propositions": [
|
||||
"Cinq",
|
||||
"Six",
|
||||
"Quatre",
|
||||
"Sept"
|
||||
],
|
||||
"réponse": "Sept",
|
||||
"anecdote": "Selon la légende, entre 1840 et 1960, tout président des États-Unis élu lors d'une année divisible par 20 allait mourir en fonction."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Quelle était la nationalité de Pernier qui a découvert le disque de Phaistos ?",
|
||||
"propositions": [
|
||||
"Autrichienne",
|
||||
"Française",
|
||||
"Canadienne",
|
||||
"Italienne"
|
||||
],
|
||||
"réponse": "Italienne",
|
||||
"anecdote": "Son diamètre est d'environ seize centimètres et il est couvert, sur ses deux faces, de hiéroglyphes imprimés à l'aide de poinçons."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "En combien de langues sont écrits les dix commandements des Georgia Guidestones ?",
|
||||
"propositions": [
|
||||
"Six",
|
||||
"Huit",
|
||||
"Quinze",
|
||||
"Dix"
|
||||
],
|
||||
"réponse": "Huit",
|
||||
"anecdote": "La plaque sur le sol donne des références astronomiques, et promet une capsule temporelle enterrée, « à ouvrir le » sans date précisée."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "En quelle année la Mary Celeste fut-elle retrouvée intacte mais sans équipage ?",
|
||||
"propositions": [
|
||||
"1972",
|
||||
"1872",
|
||||
"1672",
|
||||
"1772"
|
||||
],
|
||||
"réponse": "1872",
|
||||
"anecdote": "Le mystère entourant la disparition des marins n'a jamais été résolu, la Mary Celeste restant ainsi un célèbre vaisseau fantôme."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Quelles grandes figures sont tracées au sol à Nazca, au Pérou ?",
|
||||
"propositions": [
|
||||
"Asyroglyphes",
|
||||
"Hiéroglyphes",
|
||||
"Géoglyphes",
|
||||
"Aéroglyphes"
|
||||
],
|
||||
"réponse": "Géoglyphes",
|
||||
"anecdote": "Le plus grand géoglyphe est l'homme de Marree en Australie-Méridionale avec 4,2 km de long et une circonférence de 15,3 km."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Quel site fut visité pour la première fois en 1911 dans la vallée de l'Indus ?",
|
||||
"propositions": [
|
||||
"Carthage",
|
||||
"Machu Picchu",
|
||||
"Teotihuacan",
|
||||
"Mohenjo-daro"
|
||||
],
|
||||
"réponse": "Mohenjo-daro",
|
||||
"anecdote": "La ville révèle une urbanisation réfléchie et planifiée dans le tracé des rues, formant une grille et un boulevard large de 10 mètres."
|
||||
}
|
||||
]
|
||||
},
|
||||
"en": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "In which city of New Mexico would a UFO crash ?",
|
||||
"propositions": [
|
||||
"Las Vegas",
|
||||
"Roswell",
|
||||
"Santa Fé",
|
||||
"Albuquerque"
|
||||
],
|
||||
"réponse": "Roswell",
|
||||
"anecdote": "The impact site is 120 km from the city itself, closer to Corona, but the Roswell base was responsible for the investigation."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "What does the word Stonehedge, from the Wiltshire County site name mean ?",
|
||||
"propositions": [
|
||||
"Temple of the God",
|
||||
"Necropolis",
|
||||
"Huge circle",
|
||||
"Hanging stones"
|
||||
],
|
||||
"réponse": "Hanging stones",
|
||||
"anecdote": "The first written mention of Stonehenge is the one given in a not very explicit way by the Greek historian Diodorus of Sicily."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Where in the southeastern Pacific Ocean are the Moai located ?",
|
||||
"propositions": [
|
||||
"Cook Islands",
|
||||
"Samoa",
|
||||
"Hawaii",
|
||||
"Easter Island"
|
||||
],
|
||||
"réponse": "Easter Island",
|
||||
"anecdote": "The majority of these monumental statues are carved in tuff mainly from the quarry of Rano Raraku."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "In the imagination of men, what color would extraterrestrials be ?",
|
||||
"propositions": [
|
||||
"Purple",
|
||||
"Gray",
|
||||
"Red",
|
||||
"Blue"
|
||||
],
|
||||
"réponse": "Gray",
|
||||
"anecdote": "It is with the meeting of Kelly-Hopkinsville that the representation of the little grays will become anchored in popular consciousness."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Who are the Amazons in traditional and popular culture ?",
|
||||
"propositions": [
|
||||
"Web buyers",
|
||||
"Warriors",
|
||||
"Amazon Women",
|
||||
"Priestesses"
|
||||
],
|
||||
"réponse": "Warriors",
|
||||
"anecdote": "In Greek mythology, the Amazons are a people of warrior women located on the shores of the Black Sea."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "What has the boom in tourism nicknamed the Loch Ness Monster ?",
|
||||
"propositions": [
|
||||
"Nessie",
|
||||
"Locky",
|
||||
"Jessie",
|
||||
"Lucie"
|
||||
],
|
||||
"réponse": "Nessie",
|
||||
"anecdote": "This legendary lake creature believed to live in Scotland is described as resembling a sea serpent or a plesiosaur."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "By definition, what is a supernatural manifestation of a deceased called ?",
|
||||
"propositions": [
|
||||
"Demon",
|
||||
"Angel",
|
||||
"God",
|
||||
"Ghost"
|
||||
],
|
||||
"réponse": "Ghost",
|
||||
"anecdote": "Ghosts can take a specific name because of their origins and their characteristics (lemures, willis, ...)."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "In which city were the most famous hanging gardens built ?",
|
||||
"propositions": [
|
||||
"Troy",
|
||||
"Carthage",
|
||||
"Alexandria",
|
||||
"Babylon"
|
||||
],
|
||||
"réponse": "Babylon",
|
||||
"anecdote": "They appear in the writings of several ancient Greek and Roman authors (Diodorus of Sicily, Strabo, Philo of Alexandria)."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "From the top of its 1,281 meters, which volcano has engulfed the city of Pompei ?",
|
||||
"propositions": [
|
||||
"Mount Fudji",
|
||||
"Stromboli",
|
||||
"Krakatoa",
|
||||
"Vesuvius"
|
||||
],
|
||||
"réponse": "Vesuvius",
|
||||
"anecdote": "It is at the origin of the destruction of the cities of Pompeii, Herculaneum, Oplontis and Stabies, buried in 79 under a rain of ashes."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "Where did five bombers mysteriously disappear in 1945 ?",
|
||||
"propositions": [
|
||||
"Teotihuacan",
|
||||
"Loch Ness",
|
||||
"Ushuaia",
|
||||
"Bermuda Triangle"
|
||||
],
|
||||
"réponse": "Bermuda Triangle",
|
||||
"anecdote": "The planes, lost on mission, would in fact have run out of fuel and could no longer communicate."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "For what purpose do Magicicada larvae emerge every 17 years ?",
|
||||
"propositions": [
|
||||
"Reproduce",
|
||||
"Commit suicide",
|
||||
"To transform",
|
||||
"To eat"
|
||||
],
|
||||
"réponse": "Reproduce",
|
||||
"anecdote": "The seventeen-year-old Cicada is found in the eastern United States, from Louisiana to Massachusetts and from Georgia to Wisconsin."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "What year was the CIA forced to confirm the existence of Area 51 ?",
|
||||
"propositions": [
|
||||
"2012",
|
||||
"2014",
|
||||
"2011",
|
||||
"2013"
|
||||
],
|
||||
"réponse": "2013",
|
||||
"anecdote": "On August 15, 2013, a top-secret 400-page document was declassified, formalizing the existence of Area 51 in Nevada."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "At what age did Tutankhamun die, who became famous for his burial ?",
|
||||
"propositions": [
|
||||
"28 years old",
|
||||
"48 years old",
|
||||
"38 years old",
|
||||
"18 years old"
|
||||
],
|
||||
"réponse": "18 years old",
|
||||
"anecdote": "The notoriety of the discovery increased thanks to a legend of the Pharaoh's curse taken up by the press of the time."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Which city is described by Plato in the 4th century BC ?",
|
||||
"propositions": [
|
||||
"Angkor Wat",
|
||||
"Babylon",
|
||||
"Alexandria",
|
||||
"Atlantis"
|
||||
],
|
||||
"réponse": "Atlantis",
|
||||
"anecdote": "Atlantis is a gigantic island mentioned by the philosopher Plato in two of his « Dialogues », the « Timaeus » then the « Critias »."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "How many kilometers cover the alignments of Carnac ?",
|
||||
"propositions": [
|
||||
"10 kilometers",
|
||||
"2 kilometers",
|
||||
"4 kilometers",
|
||||
"5 kilometers"
|
||||
],
|
||||
"réponse": "4 kilometers",
|
||||
"anecdote": "This megalithic site, made up of alignments of menhirs, dolmens and covered alleys, is spread over more than 4 kilometers."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "What is the subject of the Voynich manuscript, illustrated and anonymous ?",
|
||||
"propositions": [
|
||||
"Unknown plants",
|
||||
"Treasure Map",
|
||||
"Sex",
|
||||
"Pagan legends"
|
||||
],
|
||||
"réponse": "Unknown plants",
|
||||
"anecdote": "Despite attempts by cryptographers, the exact nature of this document, its purpose and its author remain an enigma."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Who managed to decode the sections engraved on the « Kryptos » sculpture ?",
|
||||
"propositions": [
|
||||
"Jim Sanborn",
|
||||
"Nobody",
|
||||
"Edward M. Scheidt",
|
||||
"Howard Carter"
|
||||
],
|
||||
"réponse": "Nobody",
|
||||
"anecdote": "The sculpture « Kryptos » was designed by sculptor Jim Sanborn and cryptographer Edward M. Scheidt, retired from the CIA, in 1990."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Where is the Göbekli Tepe site, also known as Potbelly Hill ?",
|
||||
"propositions": [
|
||||
"Cambodia",
|
||||
"India",
|
||||
"Egypt",
|
||||
"Turkey"
|
||||
],
|
||||
"réponse": "Turkey",
|
||||
"anecdote": "The megalithic civilization at the origin of these constructions is very poorly known, the site having been abandoned in 8000 BC."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "In what year were the Nazca lines listed with UNESCO ?",
|
||||
"propositions": [
|
||||
"2006",
|
||||
"1977",
|
||||
"1994",
|
||||
"1985"
|
||||
],
|
||||
"réponse": "1994",
|
||||
"anecdote": "These large figures drawn on the ground for several kilometers are visible in the desert of Nazca, in the south of Peru."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "What region of France did the first uncontested mention of the Turin shroud come from ?",
|
||||
"propositions": [
|
||||
"Champagne",
|
||||
"Dordogne",
|
||||
"Normandy",
|
||||
"Burgundy"
|
||||
],
|
||||
"réponse": "Champagne",
|
||||
"anecdote": "This four-meter-long yellowed linen sheet shows a blurry image of a man with injuries consistent with crucifixion."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Which butterflies from North America fly 4000 km to migrate south ?",
|
||||
"propositions": [
|
||||
"Godyris",
|
||||
"Calospila",
|
||||
"Atlides",
|
||||
"Monarchs"
|
||||
],
|
||||
"réponse": "Monarchs",
|
||||
"anecdote": "In the adult stage, the Monarch butterfly exhibits sexual dimorphism. Males are taller but their wings are thinner."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "What is the peculiarity of certain stones in the Valley of Death ?",
|
||||
"propositions": [
|
||||
"They whistle",
|
||||
"They explode",
|
||||
"They are hollow",
|
||||
"They move"
|
||||
],
|
||||
"réponse": "They move",
|
||||
"anecdote": "Death Valley is a desert that is part of the Mojave Desert and has a hot desert subtropical climate."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "In what year did Jerry Ehman receive the Wow signal of unexplained origin ?",
|
||||
"propositions": [
|
||||
"1969",
|
||||
"1977",
|
||||
"1987",
|
||||
"2001"
|
||||
],
|
||||
"réponse": "1977",
|
||||
"anecdote": "Of unexplained origin, this 72-second signal has not been detected since, and has received significant media attention."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "The set of woodcut signs discovered on Easter Island is called the system...",
|
||||
"propositions": [
|
||||
"Rongorongo",
|
||||
"Moaïen",
|
||||
"Shisha",
|
||||
"Hieropglyphic"
|
||||
],
|
||||
"réponse": "Rongorongo",
|
||||
"anecdote": "These signs have the appearance of homunculi and stylized animals, sometimes plants, often geometric or fantastic shapes."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "How many American presidents would have died under Tecumseh's curse ?",
|
||||
"propositions": [
|
||||
"Five",
|
||||
"Seven",
|
||||
"Six",
|
||||
"Four"
|
||||
],
|
||||
"réponse": "Seven",
|
||||
"anecdote": "According to legend, between 1840 and 1960, any President of the United States elected in a year divisible by 20 would die in office."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "What was the nationality of Pernier who discovered the Phaistos disc ?",
|
||||
"propositions": [
|
||||
"Austrian",
|
||||
"French",
|
||||
"Italian",
|
||||
"Canadian"
|
||||
],
|
||||
"réponse": "Italian",
|
||||
"anecdote": "Its diameter is about sixteen centimeters and it is covered, on both sides, with hieroglyphics printed with hallmarks."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "How many languages are the Ten Commandments of the Georgia Guidestones written in ?",
|
||||
"propositions": [
|
||||
"Eight",
|
||||
"Ten",
|
||||
"Six",
|
||||
"Fifteen"
|
||||
],
|
||||
"réponse": "Eight",
|
||||
"anecdote": "The plaque on the ground gives astronomical references, and promises a buried time capsule, to be opened without a specific date."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "In what year was the Mary Celeste found intact but unmanned on board ?",
|
||||
"propositions": [
|
||||
"1872",
|
||||
"1672",
|
||||
"1972",
|
||||
"1772"
|
||||
],
|
||||
"réponse": "1872",
|
||||
"anecdote": "The mystery surrounding the disappearance of the sailors has never been solved, leaving the Mary Celeste a famous ghost ship."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "What large figures are drawn on the ground in Nazca, Peru ?",
|
||||
"propositions": [
|
||||
"Hieroglyphs",
|
||||
"Geoglyphs",
|
||||
"Asyroglyphs",
|
||||
"Aeroglyphs"
|
||||
],
|
||||
"réponse": "Geoglyphs",
|
||||
"anecdote": "The largest geoglyph is the Marree Man in South Australia with 4."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Which site was first visited by archaeologists in 1911 in the Indus Valley ?",
|
||||
"propositions": [
|
||||
"Carthage",
|
||||
"Teotihuacan",
|
||||
"Mohenjo-daro",
|
||||
"Machu Picchu"
|
||||
],
|
||||
"réponse": "Mohenjo-daro",
|
||||
"anecdote": "The city reveals a thoughtful and planned urbanization in the layout of the streets, forming a grid and a boulevard 10 meters wide."
|
||||
}
|
||||
]
|
||||
},
|
||||
"de": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "In welcher Stadt von New Mexico würde ein UFO abstürzen ?",
|
||||
"propositions": [
|
||||
"Las Vegas",
|
||||
"Albuquerque",
|
||||
"Roswell",
|
||||
"Santa Fé"
|
||||
],
|
||||
"réponse": "Roswell",
|
||||
"anecdote": "Die Einschlagstelle befindet sich 120 km von der Stadt entfernt, näher an Corona, aber die Basis von Roswell war für die Untersuchung verantwortlich."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Was bedeutet das Wort Stonehedge vom Standortnamen Wiltshire County ?",
|
||||
"propositions": [
|
||||
"Hängende Steine",
|
||||
"Großer Kreis",
|
||||
"Tempel Gottes",
|
||||
"Nekropole"
|
||||
],
|
||||
"réponse": "Hängende Steine",
|
||||
"anecdote": "Die erste schriftliche Erwähnung von Stonehenge ist die, die der griechische Historiker Diodorus von Sizilien auf nicht sehr explizite Weise gegeben hat."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Wo im südöstlichen Pazifik befinden sich die Moai ?",
|
||||
"propositions": [
|
||||
"Hawaii",
|
||||
"Cookinseln",
|
||||
"Osterinsel",
|
||||
"Samoa"
|
||||
],
|
||||
"réponse": "Osterinsel",
|
||||
"anecdote": "Die meisten dieser monumentalen Statuen sind hauptsächlich aus dem Steinbruch von Rano Raraku in Tuff geschnitzt."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Welche Farbe hätten Außerirdische in der Vorstellung der Menschen ?",
|
||||
"propositions": [
|
||||
"Blau",
|
||||
"Grau",
|
||||
"Rot",
|
||||
"Lila"
|
||||
],
|
||||
"réponse": "Grau",
|
||||
"anecdote": "Mit dem Treffen von Kelly-Hopkinsville wird die Darstellung der kleinen Grautöne im Bewusstsein des Volkes verankert."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Wer sind die Amazonen in der traditionellen und populären Kultur ?",
|
||||
"propositions": [
|
||||
"Krieger",
|
||||
"Webkäufer",
|
||||
"Amazon Frauen",
|
||||
"Priesterinnen"
|
||||
],
|
||||
"réponse": "Krieger",
|
||||
"anecdote": "In der griechischen Mythologie sind die Amazonen ein Volk von Kriegerinnen am Ufer des Schwarzen Meeres."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Was hat der Tourismusboom als Loch Ness Monster bezeichnet ?",
|
||||
"propositions": [
|
||||
"Jessie",
|
||||
"Nessie",
|
||||
"Locky",
|
||||
"Lucie"
|
||||
],
|
||||
"réponse": "Nessie",
|
||||
"anecdote": "Diese legendäre Seekreatur, von der angenommen wird, dass sie in Schottland lebt, ähnelt einer Seeschlange oder einem Plesiosaurier."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Wie heißt per Definition eine übernatürliche Manifestation eines Verstorbenen ?",
|
||||
"propositions": [
|
||||
"Geist",
|
||||
"Gott",
|
||||
"Dämon",
|
||||
"Engel"
|
||||
],
|
||||
"réponse": "Geist",
|
||||
"anecdote": "Geister können aufgrund ihrer Herkunft und ihrer Eigenschaften (Lemuren, Willis, ...)."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "In welcher Stadt wurden die berühmtesten hängenden Gärten angelegt ?",
|
||||
"propositions": [
|
||||
"Alexandria",
|
||||
"Troy",
|
||||
"Karthago",
|
||||
"Babylon"
|
||||
],
|
||||
"réponse": "Babylon",
|
||||
"anecdote": "Sie erscheinen in den Schriften mehrerer antiker griechischer und römischer Autoren (Diodor von Sizilien, Strabo, Philo von Alexandria)."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Welcher Vulkan hat von der Spitze seiner 1.281 Meter die Stadt Pompeji verschlungen ?",
|
||||
"propositions": [
|
||||
"Stromboli",
|
||||
"Vesuv",
|
||||
"Krakatoa",
|
||||
"Berg Fudji"
|
||||
],
|
||||
"réponse": "Vesuv",
|
||||
"anecdote": "Es ist der Ursprung der Zerstörung der Städte Pompeji, Herculaneum, Oplontis und Stabies, die 79 unter Ascheregen begraben wurden."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "Wo sind 1945 auf mysteriöse Weise fünf Bomber verschwunden ?",
|
||||
"propositions": [
|
||||
"Ushuaia",
|
||||
"Bermuda-Dreieck",
|
||||
"Teotihuacan",
|
||||
"Loch Ness"
|
||||
],
|
||||
"réponse": "Bermuda-Dreieck",
|
||||
"anecdote": "Die auf Mission verlorenen Flugzeuge hätten tatsächlich keinen Treibstoff mehr und könnten nicht mehr kommunizieren."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Zu welchem Zweck tauchen alle 17 Jahre Magicicada-Larven auf ?",
|
||||
"propositions": [
|
||||
"Selbstmord begehen",
|
||||
"Um",
|
||||
"Zu essen",
|
||||
"Reproduzieren"
|
||||
],
|
||||
"réponse": "Reproduzieren",
|
||||
"anecdote": "Die siebzehnjährige Zikade kommt im Osten der USA vor, von Louisiana bis Massachusetts und von Georgia bis Wisconsin."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "In welchem Jahr musste die CIA die Existenz von Area 51 bestätigen ?",
|
||||
"propositions": [
|
||||
"2011",
|
||||
"2012",
|
||||
"2013",
|
||||
"2014"
|
||||
],
|
||||
"réponse": "2013",
|
||||
"anecdote": "Am 15. August 2013 wurde ein streng geheimes 400-seitiges Dokument freigegeben, das die Existenz von Area 51 in Nevada formalisiert."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "In welchem Alter starb Tutanchamun, der für seine Beerdigung berühmt wurde ?",
|
||||
"propositions": [
|
||||
"28 Jahre alt",
|
||||
"18 Jahre alt",
|
||||
"38 Jahre alt",
|
||||
"48 Jahre alt"
|
||||
],
|
||||
"réponse": "18 Jahre alt",
|
||||
"anecdote": "Die Bekanntheit der Entdeckung nahm dank einer Legende über den Fluch des Pharaos zu, der von der damaligen Presse aufgegriffen wurde."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Welche Stadt wird von Platon im 4. Jahrhundert vor Christus beschrieben ?",
|
||||
"propositions": [
|
||||
"Alexandria",
|
||||
"Atlantis",
|
||||
"Babylon",
|
||||
"Angkor Wat"
|
||||
],
|
||||
"réponse": "Atlantis",
|
||||
"anecdote": "Atlantis ist eine gigantische Insel, die der Philosoph Platon in zwei seiner « Dialoge » erwähnt hat, dem « Timäus » und dann den « Critias »."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Wie viele Kilometer decken die Ausrichtungen von Carnac ab ?",
|
||||
"propositions": [
|
||||
"5 Kilometer",
|
||||
"4 Kilometer",
|
||||
"2 Kilometer",
|
||||
"10 Kilometer"
|
||||
],
|
||||
"réponse": "4 Kilometer",
|
||||
"anecdote": "Diese megalithische Stätte, die aus einer Reihe von Menhiren, Dolmen und überdachten Gassen besteht, erstreckt sich über mehr als 4 Kilometer."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Was ist das Thema des Voynich-Manuskripts, illustriert und anonym ?",
|
||||
"propositions": [
|
||||
"Sex",
|
||||
"Unbekannte Pflanzen",
|
||||
"Heidnische Legenden",
|
||||
"Schatzkarte"
|
||||
],
|
||||
"réponse": "Unbekannte Pflanzen",
|
||||
"anecdote": "Trotz der Versuche von Kryptographen bleibt die genaue Art dieses Dokuments, sein Zweck und sein Autor ein Rätsel."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Wer hat es geschafft, die in die « Kryptos » Skulptur eingravierten Abschnitte zu entschlüsseln ?",
|
||||
"propositions": [
|
||||
"Edward M. Scheidt",
|
||||
"Howard Carter",
|
||||
"Jim Sanborn",
|
||||
"Niemand"
|
||||
],
|
||||
"réponse": "Niemand",
|
||||
"anecdote": "Die Skulptur « Kryptos » wurde 1990 vom Bildhauer Jim Sanborn und dem Kryptographen Edward M. Scheidt entworfen, der aus der CIA ausgeschieden war."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Wo befindet sich der Standort Göbekli Tepe, auch als Potbelly Hill bekannt ?",
|
||||
"propositions": [
|
||||
"Kambodscha",
|
||||
"Ägypten",
|
||||
"Indien",
|
||||
"Türkei"
|
||||
],
|
||||
"réponse": "Türkei",
|
||||
"anecdote": "Die megalithische Zivilisation am Ursprung dieser Konstruktionen ist sehr wenig bekannt, da der Ort 8000 v. Chr. Verlassen wurde. J.-C."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "In welchem Jahr wurden die Nazca-Linien bei der UNESCO gelistet ?",
|
||||
"propositions": [
|
||||
"1977",
|
||||
"2006",
|
||||
"1985",
|
||||
"1994"
|
||||
],
|
||||
"réponse": "1994",
|
||||
"anecdote": "Diese großen Figuren, die mehrere Kilometer auf dem Boden liegen, sind in der Wüste von Nazca im Süden Perus zu sehen."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Aus welcher Region Frankreichs kam die erste unbestrittene Erwähnung des Turiner Grabtuchs ?",
|
||||
"propositions": [
|
||||
"Dordogne",
|
||||
"Normandie",
|
||||
"Burgund",
|
||||
"Champagner"
|
||||
],
|
||||
"réponse": "Champagner",
|
||||
"anecdote": "Dieses vier Meter lange vergilbte Leinenblatt zeigt ein verschwommenes Bild eines Mannes mit Verletzungen im Zusammenhang mit der Kreuzigung."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Welche Schmetterlinge aus Nordamerika fliegen 4000 km nach Süden ?",
|
||||
"propositions": [
|
||||
"Atlides",
|
||||
"Godyris",
|
||||
"Calospila",
|
||||
"Monarchen"
|
||||
],
|
||||
"réponse": "Monarchen",
|
||||
"anecdote": "Im Erwachsenenstadium zeigt der Monarchfalter einen sexuellen Dimorphismus. Männer sind größer, aber ihre Flügel sind dünner."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "Was ist die Besonderheit bestimmter Steine im Tal des Todes ?",
|
||||
"propositions": [
|
||||
"Sie pfeifen",
|
||||
"Sie explodieren",
|
||||
"Sie sind hohl",
|
||||
"Sie bewegen sich"
|
||||
],
|
||||
"réponse": "Sie bewegen sich",
|
||||
"anecdote": "Death Valley ist eine Wüste, die Teil der Mojave-Wüste ist und ein heißes subtropisches Wüstenklima hat."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "In welchem Jahr erhielt Jerry Ehman das Wow-Signal ungeklärter Herkunft ?",
|
||||
"propositions": [
|
||||
"1987",
|
||||
"1977",
|
||||
"1969",
|
||||
"2001"
|
||||
],
|
||||
"réponse": "1977",
|
||||
"anecdote": "Dieses 72-Sekunden-Signal ungeklärten Ursprungs wurde seitdem nicht mehr erkannt und hat in den Medien erhebliche Aufmerksamkeit erhalten."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "Die auf der Osterinsel entdeckten Holzschnittschilder werden als System bezeichnet...",
|
||||
"propositions": [
|
||||
"Rongorongo",
|
||||
"Shisha",
|
||||
"Hieropglyphic",
|
||||
"Moaïen"
|
||||
],
|
||||
"réponse": "Rongorongo",
|
||||
"anecdote": "Diese Zeichen haben das Aussehen von Homunkuli und stilisierten Tieren, manchmal Pflanzen, oft geometrischen oder fantastischen Formen."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Wie viele amerikanische Präsidenten wären unter Tecumsehs Fluch gestorben ?",
|
||||
"propositions": [
|
||||
"Fünf",
|
||||
"Sechs",
|
||||
"Vier",
|
||||
"Sieben"
|
||||
],
|
||||
"réponse": "Sieben",
|
||||
"anecdote": "Der Legende nach würde zwischen 1840 und 1960 jeder Präsident der Vereinigten Staaten, der in einem durch 20 teilbaren Jahr gewählt wurde, im Amt sterben."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Welche Nationalität hatte Pernier, der die Phaistos-Scheibe entdeckte ?",
|
||||
"propositions": [
|
||||
"Österreicher",
|
||||
"Französisch",
|
||||
"Kanadier",
|
||||
"Italienisch"
|
||||
],
|
||||
"réponse": "Italienisch",
|
||||
"anecdote": "Sein Durchmesser beträgt etwa 16 Zentimeter und er ist beidseitig mit Hieroglyphen bedeckt, die mit Markenzeichen bedruckt sind."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "In wie vielen Sprachen sind die Zehn Gebote der Georgia Guidestones geschrieben ?",
|
||||
"propositions": [
|
||||
"Sechs",
|
||||
"Acht",
|
||||
"Fünfzehn",
|
||||
"Zehn"
|
||||
],
|
||||
"réponse": "Acht",
|
||||
"anecdote": "Die Plakette auf dem Boden gibt astronomische Hinweise und verspricht eine vergrabene Zeitkapsel, die ohne ein bestimmtes Datum geöffnet werden kann."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "In welchem Jahr wurde die Mary Celeste intakt, aber unbemannt an Bord gefunden ?",
|
||||
"propositions": [
|
||||
"1672",
|
||||
"1872",
|
||||
"1972",
|
||||
"1772"
|
||||
],
|
||||
"réponse": "1872",
|
||||
"anecdote": "Das Rätsel um das Verschwinden der Seeleute wurde nie gelöst und die Mary Celeste ist ein berühmtes Geisterschiff."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Welche großen Figuren werden in Nazca, Peru, vor Ort gezeichnet ?",
|
||||
"propositions": [
|
||||
"Geoglyphen",
|
||||
"Aeroglyphen",
|
||||
"Hieroglyphen",
|
||||
"Asyroglyphen"
|
||||
],
|
||||
"réponse": "Geoglyphen",
|
||||
"anecdote": "Die größte Geoglyphe ist der Marree Man in Südaustralien mit einer Länge von 4,2 km und einem Umfang von 15,3 km."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Welche Stätte wurde 1911 zum ersten Mal von Archäologen im Industal besucht ?",
|
||||
"propositions": [
|
||||
"Machu Picchu",
|
||||
"Karthago",
|
||||
"Teotihuacan",
|
||||
"Mohenjo-daro"
|
||||
],
|
||||
"réponse": "Mohenjo-daro",
|
||||
"anecdote": "Die Stadt zeigt eine durchdachte und geplante Urbanisierung in der Anordnung der Straßen, die ein Gitter und einen 10 Meter breiten Boulevard bildet."
|
||||
}
|
||||
]
|
||||
},
|
||||
"es": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "¿En qué ciudad de Nuevo México se estrellaría un ovni ?",
|
||||
"propositions": [
|
||||
"Albuquerque",
|
||||
"Santa Fé",
|
||||
"Las Vegas",
|
||||
"Roswell"
|
||||
],
|
||||
"réponse": "Roswell",
|
||||
"anecdote": "El lugar del impacto está a 120 km de la ciudad misma, más cerca de Corona, pero la base de Roswell fue responsable de la investigación."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "¿Qué significa la palabra Stonehedge, del nombre del sitio del condado de Wiltshire ?",
|
||||
"propositions": [
|
||||
"Piedras colgantes",
|
||||
"Necrópolis",
|
||||
"Círculo enorme",
|
||||
"Templo de Dios"
|
||||
],
|
||||
"réponse": "Piedras colgantes",
|
||||
"anecdote": "La primera mención escrita de Stonehenge es la que da de manera no muy explícita el historiador griego Diodoro de Sicilia."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "¿Dónde se encuentran los Moai en el sureste del Océano Pacífico ?",
|
||||
"propositions": [
|
||||
"Samoa",
|
||||
"Isla de Pascua",
|
||||
"Hawaii",
|
||||
"Islas Cook"
|
||||
],
|
||||
"réponse": "Isla de Pascua",
|
||||
"anecdote": "La mayoría de estas estatuas monumentales están talladas en toba principalmente de la cantera de Rano Raraku."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "En la imaginación de los hombres, ¿de qué color serían los extraterrestres ?",
|
||||
"propositions": [
|
||||
"Púrpura",
|
||||
"Azul",
|
||||
"Rojo",
|
||||
"Gris"
|
||||
],
|
||||
"réponse": "Gris",
|
||||
"anecdote": "Es con el encuentro de Kelly-Hopkinsville que la representación de los pequeños grises se anclará en la conciencia popular."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "¿Quiénes son las Amazonas en la cultura tradicional y popular ?",
|
||||
"propositions": [
|
||||
"Sacerdotisas",
|
||||
"Guerreros",
|
||||
"Mujeres Amazonas",
|
||||
"Compradores web"
|
||||
],
|
||||
"réponse": "Guerreros",
|
||||
"anecdote": "En la mitología griega, las Amazonas son un pueblo de mujeres guerreras ubicadas a orillas del Mar Negro."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "¿A qué se ha apodado el boom del turismo como el monstruo del lago Ness ?",
|
||||
"propositions": [
|
||||
"Locky",
|
||||
"Nessie",
|
||||
"Lucie",
|
||||
"Jessie"
|
||||
],
|
||||
"réponse": "Nessie",
|
||||
"anecdote": "Esta legendaria criatura del lago que se cree que vive en Escocia se describe como una serpiente marina o un plesiosaurio."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Por definición, ¿cómo se llama una manifestación sobrenatural de un difunto ?",
|
||||
"propositions": [
|
||||
"Fantasma",
|
||||
"Demonio",
|
||||
"Angel",
|
||||
"Dios"
|
||||
],
|
||||
"réponse": "Fantasma",
|
||||
"anecdote": "Los fantasmas pueden tomar un nombre específico por su origen y sus características (lémures, willis, ...)."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "¿En qué ciudad se construyeron los jardines colgantes más famosos ?",
|
||||
"propositions": [
|
||||
"Alejandría",
|
||||
"Babylon",
|
||||
"Cartago",
|
||||
"Troy"
|
||||
],
|
||||
"réponse": "Babylon",
|
||||
"anecdote": "Aparecen en los escritos de varios autores griegos y romanos antiguos (Diodoro de Sicilia, Estrabón, Filón de Alejandría)."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Desde lo alto de sus 1.281 metros, ¿qué volcán ha engullido la ciudad de Pompeya ?",
|
||||
"propositions": [
|
||||
"Krakatoa",
|
||||
"Stromboli",
|
||||
"Monte Fudji",
|
||||
"Vesubio"
|
||||
],
|
||||
"réponse": "Vesubio",
|
||||
"anecdote": "Está en el origen de la destrucción de las ciudades de Pompeya, Herculano, Oplontis y Stabies, enterradas en el 79 bajo una lluvia de cenizas."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "¿Dónde desaparecieron misteriosamente cinco bombarderos en 1945 ?",
|
||||
"propositions": [
|
||||
"Triángulo de las Bermudas",
|
||||
"Ushuaia",
|
||||
"Loch Ness",
|
||||
"Teotihuacan"
|
||||
],
|
||||
"réponse": "Triángulo de las Bermudas",
|
||||
"anecdote": "Los aviones, perdidos en la misión, de hecho se habrían quedado sin combustible y ya no podrían comunicarse."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "¿Con qué propósito emergen las larvas de Magicicada cada 17 años ?",
|
||||
"propositions": [
|
||||
"Cometer suicidio",
|
||||
"Para comer",
|
||||
"Transformar",
|
||||
"Reproducir"
|
||||
],
|
||||
"réponse": "Reproducir",
|
||||
"anecdote": "La cigarra de diecisiete años se encuentra en el este de los Estados Unidos, desde Louisiana hasta Massachusetts y desde Georgia hasta Wisconsin."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "¿En qué año se vio obligada a la CIA a confirmar la existencia del Área 51 ?",
|
||||
"propositions": [
|
||||
"2012",
|
||||
"2014",
|
||||
"2013",
|
||||
"2011"
|
||||
],
|
||||
"réponse": "2013",
|
||||
"anecdote": "El 15 de agosto de 2013, se desclasificó un documento ultrasecreto de 400 páginas que formalizaba la existencia del Área 51 en Nevada."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "¿A qué edad murió Tutankamón, que se hizo famoso por su entierro ?",
|
||||
"propositions": [
|
||||
"18 años",
|
||||
"28 años",
|
||||
"38 años",
|
||||
"48 años"
|
||||
],
|
||||
"réponse": "18 años",
|
||||
"anecdote": "La notoriedad del descubrimiento aumentó gracias a una leyenda de la maldición del faraón retomada por la prensa de la época."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "¿Qué ciudad describe Platón en el siglo IV a. C. ?",
|
||||
"propositions": [
|
||||
"Babylon",
|
||||
"Angkor Wat",
|
||||
"Alejandría",
|
||||
"Atlantis"
|
||||
],
|
||||
"réponse": "Atlantis",
|
||||
"anecdote": "La Atlántida es una isla gigantesca mencionada por el filósofo Platón en dos de sus « Diálogos », el « Timeo » y luego el « Critias »."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "¿Cuántos kilómetros recorren las alineaciones de Carnac ?",
|
||||
"propositions": [
|
||||
"5 kilómetros",
|
||||
"2 kilómetros",
|
||||
"10 kilómetros",
|
||||
"4 kilómetros"
|
||||
],
|
||||
"réponse": "4 kilómetros",
|
||||
"anecdote": "Este yacimiento megalítico, formado por alineaciones de menhires, dólmenes y callejones cubiertos, se extiende a lo largo de más de 4 kilómetros."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "¿Cuál es el tema del manuscrito Voynich, ilustrado y anónimo ?",
|
||||
"propositions": [
|
||||
"Sexo",
|
||||
"Mapa del tesoro",
|
||||
"Leyendas paganas",
|
||||
"Plantas desconocidas"
|
||||
],
|
||||
"réponse": "Plantas desconocidas",
|
||||
"anecdote": "A pesar de los intentos de los criptógrafos, la naturaleza exacta de este documento, su propósito y su autor siguen siendo un enigma."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "¿Quién logró decodificar las secciones grabadas en la escultura « Kryptos » ?",
|
||||
"propositions": [
|
||||
"Edward M. Scheidt",
|
||||
"Howard Carter",
|
||||
"Jim Sanborn",
|
||||
"Nadie"
|
||||
],
|
||||
"réponse": "Nadie",
|
||||
"anecdote": "La escultura « Kryptos » fue diseñada por el escultor Jim Sanborn y el criptógrafo Edward M. Scheidt, retirado de la CIA, en 1990."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "¿Dónde está el sitio de Göbekli Tepe, también conocido como Potbelly Hill ?",
|
||||
"propositions": [
|
||||
"Turquía",
|
||||
"Camboya",
|
||||
"India",
|
||||
"Egipto"
|
||||
],
|
||||
"réponse": "Turquía",
|
||||
"anecdote": "La civilización megalítica en el origen de estas construcciones es muy poco conocida, ya que el sitio fue abandonado en 8000 a."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "¿En qué año fueron incluidas las líneas de Nazca en la UNESCO ?",
|
||||
"propositions": [
|
||||
"1994",
|
||||
"1977",
|
||||
"1985",
|
||||
"2006"
|
||||
],
|
||||
"réponse": "1994",
|
||||
"anecdote": "Estas grandes figuras dibujadas en el suelo a lo largo de varios kilómetros son visibles en el desierto de Nazca, en el sur de Perú."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "¿De qué región de Francia provino la primera mención indiscutible del sudario de Turín ?",
|
||||
"propositions": [
|
||||
"Borgoña",
|
||||
"Champaña",
|
||||
"Dordoña",
|
||||
"Normandía"
|
||||
],
|
||||
"réponse": "Champaña",
|
||||
"anecdote": "Esta sábana de lino amarillento de cuatro metros de largo muestra una imagen borrosa de un hombre con heridas consistentes con la crucifixión."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "¿Qué mariposas de América del Norte vuelan 4000 km para migrar al sur ?",
|
||||
"propositions": [
|
||||
"Godyris",
|
||||
"Atlides",
|
||||
"Monarcas",
|
||||
"Calospila"
|
||||
],
|
||||
"réponse": "Monarcas",
|
||||
"anecdote": "En la etapa adulta, la Monarca presenta dimorfismo sexual. Los machos son más altos pero sus alas más delgadas."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "¿Cuál es la peculiaridad de ciertas piedras en el Valle de la Muerte ?",
|
||||
"propositions": [
|
||||
"Son huecos",
|
||||
"Silban",
|
||||
"Explotan",
|
||||
"Se mueven"
|
||||
],
|
||||
"réponse": "Se mueven",
|
||||
"anecdote": "El Valle de la Muerte es un desierto que forma parte del desierto de Mojave y tiene un clima desértico subtropical cálido."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "¿En qué año recibió Jerry Ehman la señal Wow de origen inexplicable ?",
|
||||
"propositions": [
|
||||
"2001",
|
||||
"1969",
|
||||
"1987",
|
||||
"1977"
|
||||
],
|
||||
"réponse": "1977",
|
||||
"anecdote": "De origen inexplicable, esta señal de 72 segundos no se ha detectado desde entonces y ha recibido una atención significativa de los medios."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "El conjunto de letreros grabados en madera descubiertos en Isla de Pascua se denomina sistema...",
|
||||
"propositions": [
|
||||
"Shisha",
|
||||
"Hieropglyphic",
|
||||
"Rongorongo",
|
||||
"Moaïen"
|
||||
],
|
||||
"réponse": "Rongorongo",
|
||||
"anecdote": "Estos signos tienen la apariencia de homúnculos y animales estilizados, a veces plantas, a menudo formas geométricas o fantásticas."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "¿Cuántos presidentes estadounidenses habrían muerto bajo la maldición de Tecumseh ?",
|
||||
"propositions": [
|
||||
"Cuatro",
|
||||
"Siete",
|
||||
"Seis",
|
||||
"Cinco"
|
||||
],
|
||||
"réponse": "Siete",
|
||||
"anecdote": "Según la leyenda, entre 1840 y 1960, cualquier presidente de los Estados Unidos elegido en un año divisible por 20 moriría en el cargo."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "¿Cuál era la nacionalidad de Pernier que descubrió el disco de Festos ?",
|
||||
"propositions": [
|
||||
"Italiano",
|
||||
"Austriaco",
|
||||
"Canadiense",
|
||||
"Francés"
|
||||
],
|
||||
"réponse": "Italiano",
|
||||
"anecdote": "Su diámetro es de unos dieciséis centímetros y está cubierto, por ambos lados, de jeroglíficos impresos con sellos."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "¿En cuántos idiomas están escritos los Diez Mandamientos de las Piedras Guía de Georgia ?",
|
||||
"propositions": [
|
||||
"Quince",
|
||||
"Seis",
|
||||
"Ocho",
|
||||
"Diez"
|
||||
],
|
||||
"réponse": "Ocho",
|
||||
"anecdote": "La placa en el suelo da referencias astronómicas y promete una cápsula del tiempo enterrada, que se abrirá sin una fecha específica."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "¿En qué año se encontró el Mary Celeste intacto pero sin tripulación a bordo ?",
|
||||
"propositions": [
|
||||
"1872",
|
||||
"1672",
|
||||
"1972",
|
||||
"1772"
|
||||
],
|
||||
"réponse": "1872",
|
||||
"anecdote": "El misterio que rodea a la desaparición de los marineros nunca se ha resuelto, dejando al Mary Celeste como un famoso barco fantasma."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "¿Qué grandes figuras se dibujan en el suelo en Nazca, Perú ?",
|
||||
"propositions": [
|
||||
"Asyroglyphs",
|
||||
"Jeroglíficos",
|
||||
"Geoglifos",
|
||||
"Aeroglifos"
|
||||
],
|
||||
"réponse": "Geoglifos",
|
||||
"anecdote": "El geoglifo más grande es el Hombre de Marree en Australia del Sur con 4,2 km de largo y una circunferencia de 15,3 km."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "¿Qué sitio fue visitado por primera vez por arqueólogos en 1911 en el valle del Indo ?",
|
||||
"propositions": [
|
||||
"Machu Picchu",
|
||||
"Cartago",
|
||||
"Teotihuacan",
|
||||
"Mohenjo-daro"
|
||||
],
|
||||
"réponse": "Mohenjo-daro",
|
||||
"anecdote": "La ciudad revela una urbanización pensada y planificada en el trazado de las calles, formando una cuadrícula y un bulevar de 10 metros de ancho."
|
||||
}
|
||||
]
|
||||
},
|
||||
"it": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "In quale città del New Mexico si sarebbe schiantato un UFO ?",
|
||||
"propositions": [
|
||||
"Roswell",
|
||||
"Las Vegas",
|
||||
"Albuquerque",
|
||||
"Santa Fé"
|
||||
],
|
||||
"réponse": "Roswell",
|
||||
"anecdote": "Il sito dell'impatto si trova a 120 km dalla città stessa, più vicino a Corona, ma la base di Roswell era responsabile delle indagini."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Cosa significa la parola Stonehedge, dal nome del sito della contea di Wiltshire ?",
|
||||
"propositions": [
|
||||
"Necropoli",
|
||||
"Enorme cerchio",
|
||||
"Tempio di Dio",
|
||||
"Pietre pendenti"
|
||||
],
|
||||
"réponse": "Pietre pendenti",
|
||||
"anecdote": "La prima menzione scritta di Stonehenge è quella data in modo non molto esplicito dallo storico greco Diodoro di Sicilia."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Dove si trovano i Moai nell'Oceano Pacifico sud-orientale ?",
|
||||
"propositions": [
|
||||
"Samoa",
|
||||
"Hawaii",
|
||||
"Isola di Pasqua",
|
||||
"Isole Cook"
|
||||
],
|
||||
"réponse": "Isola di Pasqua",
|
||||
"anecdote": "La maggior parte di queste statue monumentali sono scolpite nel tufo principalmente dalla cava di Rano Raraku."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Nell'immaginazione degli uomini, di che colore sarebbero gli extraterrestri ?",
|
||||
"propositions": [
|
||||
"Rosso",
|
||||
"Grigio",
|
||||
"Blu",
|
||||
"Viola"
|
||||
],
|
||||
"réponse": "Grigio",
|
||||
"anecdote": "È con l'incontro di Kelly-Hopkinsville che la rappresentazione dei piccoli grigi si ancorerà alla coscienza popolare."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Chi sono le Amazzoni nella cultura tradizionale e popolare ?",
|
||||
"propositions": [
|
||||
"Guerrieri",
|
||||
"Acquirenti web",
|
||||
"Sacerdotesse",
|
||||
"Amazon Women"
|
||||
],
|
||||
"réponse": "Guerrieri",
|
||||
"anecdote": "Nella mitologia greca, le Amazzoni sono un popolo di donne guerriere situato sulle rive del Mar Nero."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Qual è stato il boom del turismo soprannominato il mostro di Loch Ness ?",
|
||||
"propositions": [
|
||||
"Nessie",
|
||||
"Lucie",
|
||||
"Jessie",
|
||||
"Locky"
|
||||
],
|
||||
"réponse": "Nessie",
|
||||
"anecdote": "Questa leggendaria creatura del lago che si crede viva in Scozia è descritta come simile a un serpente marino o un plesiosauro."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Per definizione, come si chiama una manifestazione soprannaturale di un defunto ?",
|
||||
"propositions": [
|
||||
"Dio",
|
||||
"Ghost",
|
||||
"Angelo",
|
||||
"Demone"
|
||||
],
|
||||
"réponse": "Ghost",
|
||||
"anecdote": "I fantasmi possono prendere un nome specifico a causa delle loro origini e delle loro caratteristiche (lemure, willis, ...)."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "In quale città furono costruiti i giardini pensili più famosi ?",
|
||||
"propositions": [
|
||||
"Babylon",
|
||||
"Alessandria",
|
||||
"Cartagine",
|
||||
"Troy"
|
||||
],
|
||||
"réponse": "Babylon",
|
||||
"anecdote": "Compaiono negli scritti di diversi autori antichi greci e romani (Diodoro di Sicilia, Strabone, Filone d'Alessandria)."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Dall'alto dei suoi 1.281 metri, quale vulcano ha inghiottito la città di Pompei ?",
|
||||
"propositions": [
|
||||
"Stromboli",
|
||||
"Monte Fudji",
|
||||
"Vesuvio",
|
||||
"Krakatoa"
|
||||
],
|
||||
"réponse": "Vesuvio",
|
||||
"anecdote": "È all'origine della distruzione delle città di Pompei, Ercolano, Oplontis e Stabies, sepolte nel 79 sotto una pioggia di cenere."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "Dove sono scomparsi misteriosamente cinque bombardieri nel 1945 ?",
|
||||
"propositions": [
|
||||
"Loch Ness",
|
||||
"Teotihuacan",
|
||||
"Ushuaia",
|
||||
"Triangolo delle Bermuda"
|
||||
],
|
||||
"réponse": "Triangolo delle Bermuda",
|
||||
"anecdote": "Gli aerei, persi in missione, sarebbero infatti rimasti senza carburante e non avrebbero più potuto comunicare."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Per quale scopo emergono le larve di Magicicada ogni 17 anni ?",
|
||||
"propositions": [
|
||||
"Riprodurre",
|
||||
"Suicidarsi",
|
||||
"Mangiare",
|
||||
"Trasformare"
|
||||
],
|
||||
"réponse": "Riprodurre",
|
||||
"anecdote": "La diciassettenne Cicada si trova negli Stati Uniti orientali, dalla Louisiana al Massachusetts e dalla Georgia al Wisconsin."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "In che anno la CIA è stata costretta a confermare l'esistenza dell'Area 51 ?",
|
||||
"propositions": [
|
||||
"2012",
|
||||
"2011",
|
||||
"2013",
|
||||
"2014"
|
||||
],
|
||||
"réponse": "2013",
|
||||
"anecdote": "Il 15 agosto 2013, un documento top secret di 400 pagine è stato declassificato, formalizzando l'esistenza dell'Area 51 in Nevada."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "A che età morì Tutankhamon, che divenne famoso per la sua sepoltura ?",
|
||||
"propositions": [
|
||||
"18 anni",
|
||||
"28 anni",
|
||||
"38 anni",
|
||||
"48 anni"
|
||||
],
|
||||
"réponse": "18 anni",
|
||||
"anecdote": "La notorietà della scoperta aumentò grazie a una leggenda della maledizione del Faraone ripresa dalla stampa dell'epoca."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Quale città è descritta da Platone nel IV secolo a.C. ?",
|
||||
"propositions": [
|
||||
"Angkor Wat",
|
||||
"Atlantis",
|
||||
"Alessandria",
|
||||
"Babylon"
|
||||
],
|
||||
"réponse": "Atlantis",
|
||||
"anecdote": "Atlantide è un'isola gigantesca menzionata dal filosofo Platone in due dei suoi « Dialoghi », il « Timeo » poi « Crizia »."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Quanti chilometri coprono gli allineamenti di Carnac ?",
|
||||
"propositions": [
|
||||
"4 chilometri",
|
||||
"5 chilometri",
|
||||
"2 chilometri",
|
||||
"10 chilometri"
|
||||
],
|
||||
"réponse": "4 chilometri",
|
||||
"anecdote": "Questo sito megalitico, costituito da allineamenti di menhir, dolmen e vicoli coperti, si sviluppa su più di 4 chilometri."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Qual è il soggetto del manoscritto Voynich, illustrato e anonimo ?",
|
||||
"propositions": [
|
||||
"Mappa del tesoro",
|
||||
"Piante sconosciute",
|
||||
"Sesso",
|
||||
"Leggende pagane"
|
||||
],
|
||||
"réponse": "Piante sconosciute",
|
||||
"anecdote": "Nonostante i tentativi dei crittografi, la natura esatta di questo documento, il suo scopo e il suo autore rimangono un enigma."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Chi è riuscito a decodificare le sezioni incise sulla scultura « Kryptos » ?",
|
||||
"propositions": [
|
||||
"Howard Carter",
|
||||
"Edward M. Scheidt",
|
||||
"Jim Sanborn",
|
||||
"Nessuno"
|
||||
],
|
||||
"réponse": "Nessuno",
|
||||
"anecdote": "La scultura « Kryptos » è stata progettata dallo scultore Jim Sanborn e dal crittografo Edward M. Scheidt, ritiratosi dalla CIA nel 1990."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Dov'è il sito di Göbekli Tepe, noto anche come Potbelly Hill ?",
|
||||
"propositions": [
|
||||
"Egitto",
|
||||
"India",
|
||||
"Turchia",
|
||||
"Cambogia"
|
||||
],
|
||||
"réponse": "Turchia",
|
||||
"anecdote": "La civiltà megalitica all'origine di queste costruzioni è molto poco conosciuta, essendo il sito abbandonato nell'8000 a."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "In che anno le linee di Nazca sono state inserite nell'elenco dell'UNESCO ?",
|
||||
"propositions": [
|
||||
"1977",
|
||||
"1985",
|
||||
"2006",
|
||||
"1994"
|
||||
],
|
||||
"réponse": "1994",
|
||||
"anecdote": "Queste grandi figure disegnate a terra per diversi chilometri sono visibili nel deserto di Nazca, nel sud del Perù."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Da quale regione della Francia è venuta la prima menzione incontrastata della Sindone di Torino ?",
|
||||
"propositions": [
|
||||
"Normandia",
|
||||
"Champagne",
|
||||
"Borgogna",
|
||||
"Dordogne"
|
||||
],
|
||||
"réponse": "Champagne",
|
||||
"anecdote": "Questo lenzuolo di lino ingiallito lungo quattro metri mostra un'immagine sfocata di un uomo con ferite compatibili con la crocifissione."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Quali farfalle del Nord America volano per 4000 km per migrare verso sud ?",
|
||||
"propositions": [
|
||||
"Godyris",
|
||||
"Atlides",
|
||||
"Calospila",
|
||||
"Monarchi"
|
||||
],
|
||||
"réponse": "Monarchi",
|
||||
"anecdote": "Nella fase adulta, la farfalla monarca mostra dimorfismo sessuale. I maschi sono più alti ma le loro ali sono più sottili."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "Qual è la particolarità di alcune pietre nella Valle della Morte ?",
|
||||
"propositions": [
|
||||
"Esplodono",
|
||||
"Si muovono",
|
||||
"Sono vuoti",
|
||||
"Fischiettano"
|
||||
],
|
||||
"réponse": "Si muovono",
|
||||
"anecdote": "La Death Valley è un deserto che fa parte del deserto del Mojave e ha un clima subtropicale desertico caldo."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "In che anno Jerry Ehman ha ricevuto il segnale Wow di origine inspiegabile ?",
|
||||
"propositions": [
|
||||
"1977",
|
||||
"2001",
|
||||
"1969",
|
||||
"1987"
|
||||
],
|
||||
"réponse": "1977",
|
||||
"anecdote": "Di origine inspiegabile, questo segnale di 72 secondi non è stato rilevato da allora e ha ricevuto una significativa attenzione da parte dei media."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "L'insieme di segni xilografici scoperti sull'Isola di Pasqua si chiama...",
|
||||
"propositions": [
|
||||
"Rongorongo",
|
||||
"Shisha",
|
||||
"Moaïen",
|
||||
"Hieropglyphic"
|
||||
],
|
||||
"réponse": "Rongorongo",
|
||||
"anecdote": "Questi segni hanno l'aspetto di omuncoli e animali stilizzati, a volte piante, spesso forme geometriche o fantastiche."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Quanti presidenti americani sarebbero morti sotto la maledizione di Tecumseh ?",
|
||||
"propositions": [
|
||||
"Sei",
|
||||
"Quattro",
|
||||
"Cinque",
|
||||
"Seven"
|
||||
],
|
||||
"réponse": "Seven",
|
||||
"anecdote": "Secondo la leggenda, tra il 1840 e il 1960, qualsiasi presidente degli Stati Uniti eletto in un anno divisibile per 20 morirebbe in carica."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Qual era la nazionalità di Pernier che scoprì il disco di Festo ?",
|
||||
"propositions": [
|
||||
"Canadese",
|
||||
"Italiano",
|
||||
"Austriaco",
|
||||
"Francese"
|
||||
],
|
||||
"réponse": "Italiano",
|
||||
"anecdote": "Il suo diametro è di circa sedici centimetri ed è ricoperto, su entrambi i lati, da geroglifici stampati con punzoni."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "In quante lingue sono scritti i Dieci Comandamenti delle Georgia Guidestones ?",
|
||||
"propositions": [
|
||||
"Dieci",
|
||||
"Sei",
|
||||
"Otto",
|
||||
"Quindici"
|
||||
],
|
||||
"réponse": "Otto",
|
||||
"anecdote": "La targa a terra fornisce riferimenti astronomici e promette una capsula del tempo sepolta, da aprire senza una data precisa."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "In che anno è stata ritrovata la Mary Celeste a bordo intatta ma senza equipaggio ?",
|
||||
"propositions": [
|
||||
"1672",
|
||||
"1972",
|
||||
"1872",
|
||||
"1772"
|
||||
],
|
||||
"réponse": "1872",
|
||||
"anecdote": "Il mistero che circonda la scomparsa dei marinai non è mai stato risolto, lasciando la Mary Celeste una famosa nave fantasma."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Quali grandi figure sono disegnate a terra a Nazca, in Perù ?",
|
||||
"propositions": [
|
||||
"Geroglifici",
|
||||
"Aeroglifi",
|
||||
"Asyroglyphs",
|
||||
"Geoglifi"
|
||||
],
|
||||
"réponse": "Geoglifi",
|
||||
"anecdote": "Il geoglifo più grande è il Marree Man in South Australia con 4,2 km di lunghezza e una circonferenza di 15,3 km."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Quale sito fu visitato per la prima volta dagli archeologi nel 1911 nella valle dell'Indo ?",
|
||||
"propositions": [
|
||||
"Mohenjo-daro",
|
||||
"Machu Picchu",
|
||||
"Cartagine",
|
||||
"Teotihuacan"
|
||||
],
|
||||
"réponse": "Mohenjo-daro",
|
||||
"anecdote": "La città rivela un'urbanizzazione premurosa e pianificata nella disposizione delle strade, formando una griglia e un viale largo 10 metri."
|
||||
}
|
||||
]
|
||||
},
|
||||
"nl": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "In welke stad van New Mexico zou een UFO crashen ?",
|
||||
"propositions": [
|
||||
"Las Vegas",
|
||||
"Santa Fé",
|
||||
"Roswell",
|
||||
"Albuquerque"
|
||||
],
|
||||
"réponse": "Roswell",
|
||||
"anecdote": "De inslaglocatie ligt 120 km van de stad zelf, dichter bij Corona, maar de Roswell-basis was verantwoordelijk voor het onderzoek."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Wat betekent het woord Stonehedge, van de naam van de site in Wiltshire County ?",
|
||||
"propositions": [
|
||||
"Enorme cirkel",
|
||||
"Necropolis",
|
||||
"Hangende stenen",
|
||||
"Tempel van God"
|
||||
],
|
||||
"réponse": "Hangende stenen",
|
||||
"anecdote": "De eerste schriftelijke vermelding van Stonehenge is die op een niet erg expliciete manier gegeven door de Griekse historicus Diodorus van Sicilië."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Waar in de zuidoostelijke Stille Oceaan bevinden zich de Moai ?",
|
||||
"propositions": [
|
||||
"Cook Eilanden",
|
||||
"Paaseiland",
|
||||
"Samoa",
|
||||
"Hawaï"
|
||||
],
|
||||
"réponse": "Paaseiland",
|
||||
"anecdote": "De meeste van deze monumentale beelden zijn uit tufsteen gesneden, voornamelijk uit de steengroeve van Rano Raraku."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Welke kleur zouden buitenaardsen hebben in de verbeelding van mannen ?",
|
||||
"propositions": [
|
||||
"Blauw",
|
||||
"Paars",
|
||||
"Grijs",
|
||||
"Rood"
|
||||
],
|
||||
"réponse": "Grijs",
|
||||
"anecdote": "Het is met de ontmoeting van Kelly-Hopkinsville dat de vertegenwoordiging van de kleine grijzen verankerd zal worden in het populaire bewustzijn."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Wie zijn de Amazones in de traditionele en populaire cultuur ?",
|
||||
"propositions": [
|
||||
"Krijgers",
|
||||
"Amazon Vrouwen",
|
||||
"Priesteressen",
|
||||
"Kopers op internet"
|
||||
],
|
||||
"réponse": "Krijgers",
|
||||
"anecdote": "In de Griekse mythologie zijn de Amazones een volk van krijgersvrouwen aan de oevers van de Zwarte Zee."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Wat heeft de hausse in het toerisme de bijnaam het monster van Loch Ness gegeven ?",
|
||||
"propositions": [
|
||||
"Locky",
|
||||
"Lucie",
|
||||
"Nessie",
|
||||
"Jessie"
|
||||
],
|
||||
"réponse": "Nessie",
|
||||
"anecdote": "Dit legendarische schepsel uit het meer waarvan wordt aangenomen dat het in Schotland leeft, wordt beschreven als lijkend op een zeeslang of een plesiosaurus."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Hoe heet een bovennatuurlijke manifestatie van een overledene per definitie ?",
|
||||
"propositions": [
|
||||
"Geest",
|
||||
"Engel",
|
||||
"God",
|
||||
"Demon"
|
||||
],
|
||||
"réponse": "Geest",
|
||||
"anecdote": "Geesten kunnen een specifieke naam aannemen vanwege hun oorsprong en hun kenmerken (lemures, willis, ...)."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "In welke stad zijn de beroemdste hangende tuinen aangelegd ?",
|
||||
"propositions": [
|
||||
"Carthago",
|
||||
"Troy",
|
||||
"Babylon",
|
||||
"Alexandrië"
|
||||
],
|
||||
"réponse": "Babylon",
|
||||
"anecdote": "Ze komen voor in de geschriften van verschillende oude Griekse en Romeinse auteurs (Diodorus van Sicilië, Strabo, Philo van Alexandrië)."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Welke vulkaan heeft vanaf de top van zijn 1.281 meter de stad Pompei overspoeld ?",
|
||||
"propositions": [
|
||||
"Krakatoa",
|
||||
"Zet Fudji op",
|
||||
"Stromboli",
|
||||
"Vesuvius"
|
||||
],
|
||||
"réponse": "Vesuvius",
|
||||
"anecdote": "Het is de oorsprong van de vernietiging van de steden Pompeii, Herculaneum, Oplontis en Stabies, begraven in 79 onder een regen van as."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "Waar zijn in 1945 op mysterieuze wijze vijf bommenwerpers verdwenen ?",
|
||||
"propositions": [
|
||||
"Bermudadriehoek",
|
||||
"Teotihuacan",
|
||||
"Ushuaia",
|
||||
"Loch Ness"
|
||||
],
|
||||
"réponse": "Bermudadriehoek",
|
||||
"anecdote": "De vliegtuigen die tijdens hun missie verloren waren gegaan, waren in feite het slachtoffer van brandstofgebrek en konden niet langer communiceren."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "Met welk doel komen de Magicicada-larven elke 17 jaar tevoorschijn ?",
|
||||
"propositions": [
|
||||
"Eten",
|
||||
"Zelfmoord plegen",
|
||||
"Reproduceer",
|
||||
"Om te transformeren"
|
||||
],
|
||||
"réponse": "Reproduceer",
|
||||
"anecdote": "De zeventienjarige Cicada komt voor in het oosten van de Verenigde Staten, van Louisiana tot Massachusetts en van Georgia tot Wisconsin."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "In welk jaar moest de CIA het bestaan van Area 51 bevestigen ?",
|
||||
"propositions": [
|
||||
"2011",
|
||||
"2014",
|
||||
"2012",
|
||||
"2013"
|
||||
],
|
||||
"réponse": "2013",
|
||||
"anecdote": "Op 15 augustus 2013 werd een uiterst geheim document van 400 pagina's vrijgegeven, waarmee het bestaan van Area 51 in Nevada werd geformaliseerd."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "Op welke leeftijd stierf Toetanchamon, die beroemd werd vanwege zijn begrafenis ?",
|
||||
"propositions": [
|
||||
"28 jaar",
|
||||
"38 jaar oud",
|
||||
"18 jaar",
|
||||
"48 jaar"
|
||||
],
|
||||
"réponse": "18 jaar",
|
||||
"anecdote": "De bekendheid van de ontdekking nam toe dankzij een legende over de vloek van de farao die door de toenmalige pers werd overgenomen."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Welke stad beschrijft Plato in de 4e eeuw voor Christus ?",
|
||||
"propositions": [
|
||||
"Babylon",
|
||||
"Alexandrië",
|
||||
"Angkor Wat",
|
||||
"Atlantis"
|
||||
],
|
||||
"réponse": "Atlantis",
|
||||
"anecdote": "Atlantis is een gigantisch eiland dat door de filosoof Plato wordt genoemd in twee van zijn « Dialogues », de « Timaeus » en vervolgens de « Critias »."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "Hoeveel kilometer beslaat de uitlijning van Carnac ?",
|
||||
"propositions": [
|
||||
"5 kilometer",
|
||||
"4 kilometer",
|
||||
"10 kilometer",
|
||||
"2 kilometer"
|
||||
],
|
||||
"réponse": "4 kilometer",
|
||||
"anecdote": "Deze megalithische site, bestaande uit menhirs, hunebedden en overdekte steegjes, is verspreid over meer dan 4 kilometer."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "Wat is het onderwerp van het Voynich-manuscript, geïllustreerd en anoniem ?",
|
||||
"propositions": [
|
||||
"Schatkaart",
|
||||
"Heidense legendes",
|
||||
"Geslacht",
|
||||
"Onbekende planten"
|
||||
],
|
||||
"réponse": "Onbekende planten",
|
||||
"anecdote": "Ondanks pogingen van cryptografen blijven de exacte aard van dit document, het doel en de auteur een raadsel."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Wie slaagde erin om de secties te ontcijferen die op het « Kryptos » beeld zijn gegraveerd ?",
|
||||
"propositions": [
|
||||
"Jim Sanborn",
|
||||
"Edward M. Scheidt",
|
||||
"Howard Carter",
|
||||
"Niemand"
|
||||
],
|
||||
"réponse": "Niemand",
|
||||
"anecdote": "Het beeld « Kryptos » is ontworpen door beeldhouwer Jim Sanborn en cryptograaf Edward M.Scheidt, die in 1990 met pensioen ging bij de CIA."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Waar is de Göbekli Tepe-site, ook wel bekend als Potbelly Hill ?",
|
||||
"propositions": [
|
||||
"Egypte",
|
||||
"India",
|
||||
"Turkije",
|
||||
"Cambodja"
|
||||
],
|
||||
"réponse": "Turkije",
|
||||
"anecdote": "De megalithische beschaving die aan de oorsprong van deze constructies lag, is zeer slecht bekend, aangezien de site in 8000 voor Christus werd verlaten. J.-C."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "In welk jaar stonden de Nazca-lijnen op de Werelderfgoedlijst van UNESCO ?",
|
||||
"propositions": [
|
||||
"2006",
|
||||
"1977",
|
||||
"1985",
|
||||
"1994"
|
||||
],
|
||||
"réponse": "1994",
|
||||
"anecdote": "Deze grote figuren die kilometers lang op de grond zijn getekend, zijn zichtbaar in de woestijn van Nazca, in het zuiden van Peru."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Uit welke regio van Frankrijk kwam de eerste onbetwiste vermelding van de lijkwade in Turijn ?",
|
||||
"propositions": [
|
||||
"Champagne",
|
||||
"Normandië",
|
||||
"Bourgondië",
|
||||
"Dordogne"
|
||||
],
|
||||
"réponse": "Champagne",
|
||||
"anecdote": "Dit vier meter lange vergeelde linnen laken toont een wazig beeld van een man met verwondingen die overeenkomen met kruisiging."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "Welke vlinders uit Noord-Amerika vliegen 4000 km om naar het zuiden te migreren ?",
|
||||
"propositions": [
|
||||
"Vorsten",
|
||||
"Atlides",
|
||||
"Calospila",
|
||||
"Godyris"
|
||||
],
|
||||
"réponse": "Vorsten",
|
||||
"anecdote": "In het volwassen stadium vertoont de monarchvlinder seksueel dimorfisme. Mannetjes zijn langer, maar hun vleugels zijn dunner."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "Wat is de eigenaardigheid van bepaalde stenen in de Valley of Death ?",
|
||||
"propositions": [
|
||||
"Ze exploderen",
|
||||
"Ze zijn hol",
|
||||
"Ze fluiten",
|
||||
"Ze verhuizen"
|
||||
],
|
||||
"réponse": "Ze verhuizen",
|
||||
"anecdote": "Death Valley is een woestijn die deel uitmaakt van de Mojave-woestijn en een heet subtropisch woestijnklimaat heeft."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "In welk jaar ontving Jerry Ehman het Wow-signaal van onverklaarbare oorsprong ?",
|
||||
"propositions": [
|
||||
"1987",
|
||||
"2001",
|
||||
"1977",
|
||||
"1969"
|
||||
],
|
||||
"réponse": "1977",
|
||||
"anecdote": "Van onverklaarbare oorsprong is dit signaal van 72 seconden sindsdien niet meer gedetecteerd en heeft het aanzienlijke media-aandacht gekregen."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "De reeks houtsnedetekens die op Paaseiland zijn ontdekt, wordt het systeem genoemd...",
|
||||
"propositions": [
|
||||
"Rongorongo",
|
||||
"Moaïen",
|
||||
"Shisha",
|
||||
"Hieropglyphic"
|
||||
],
|
||||
"réponse": "Rongorongo",
|
||||
"anecdote": "Deze tekens hebben het uiterlijk van homunculi en gestileerde dieren, soms planten, vaak geometrische of fantastische vormen."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Hoeveel Amerikaanse presidenten zouden onder de vloek van Tecumseh zijn omgekomen ?",
|
||||
"propositions": [
|
||||
"Vijf",
|
||||
"Vier",
|
||||
"Zeven",
|
||||
"Zes"
|
||||
],
|
||||
"réponse": "Zeven",
|
||||
"anecdote": "Volgens de legende zou tussen 1840 en 1960 elke president van de Verenigde Staten die in een jaar deelbaar door 20 zou worden gekozen, in functie sterven."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Wat was de nationaliteit van Pernier die de schijf van Phaistos ontdekte ?",
|
||||
"propositions": [
|
||||
"Frans",
|
||||
"Oostenrijks",
|
||||
"Italiaans",
|
||||
"Canadees"
|
||||
],
|
||||
"réponse": "Italiaans",
|
||||
"anecdote": "De diameter is ongeveer zestien centimeter en het is aan beide zijden bedekt met hiërogliefen bedrukt met stempels."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "In hoeveel talen zijn de tien geboden van de Georgia Guidestones geschreven ?",
|
||||
"propositions": [
|
||||
"Acht",
|
||||
"Vijftien",
|
||||
"Tien",
|
||||
"Zes"
|
||||
],
|
||||
"réponse": "Acht",
|
||||
"anecdote": "De plaquette op de grond geeft astronomische verwijzingen en belooft een begraven tijdcapsule, die zonder een specifieke datum zal worden geopend."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "In welk jaar werd de Mary Celeste intact maar onbemand aan boord aangetroffen ?",
|
||||
"propositions": [
|
||||
"1972",
|
||||
"1672",
|
||||
"1772",
|
||||
"1872"
|
||||
],
|
||||
"réponse": "1872",
|
||||
"anecdote": "Het mysterie rond de verdwijning van de zeelieden is nooit opgelost, waardoor de Mary Celeste een beroemd spookschip is geworden."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Welke grote figuren worden op de grond getekend in Nazca, Peru ?",
|
||||
"propositions": [
|
||||
"Geogliefen",
|
||||
"Asyrogliefen",
|
||||
"Hiërogliefen",
|
||||
"Aeroglyphs"
|
||||
],
|
||||
"réponse": "Geogliefen",
|
||||
"anecdote": "De grootste geoglief is de Marree Man in Zuid-Australië met een lengte van 4,2 km en een omtrek van 15,3 km."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Welke site werd voor het eerst bezocht door archeologen in 1911 in de Indusvallei ?",
|
||||
"propositions": [
|
||||
"Teotihuacan",
|
||||
"Mohenjo-daro",
|
||||
"Machu Picchu",
|
||||
"Carthago"
|
||||
],
|
||||
"réponse": "Mohenjo-daro",
|
||||
"anecdote": "De stad onthult een doordachte en geplande verstedelijking in de lay-out van de straten, die een raster vormt en een boulevard van 10 meter breed."
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
410
misc/quiz/openquizzdb/sport.json
Normal file
410
misc/quiz/openquizzdb/sport.json
Normal file
@ -0,0 +1,410 @@
|
||||
{
|
||||
"fournisseur": "OpenQuizzDB - Fournisseur de contenu libre (https://www.openquizzdb.org)",
|
||||
"licence": "CC BY-SA",
|
||||
"rédacteur": "Philippe Bresoux",
|
||||
"difficulté": "3 / 5",
|
||||
"version": 1,
|
||||
"mise-à-jour": "2024-03-30",
|
||||
"catégorie-nom-slogan": {
|
||||
"fr": {
|
||||
"catégorie": "Sports",
|
||||
"nom": "Sports pour tous",
|
||||
"slogan": "Du plus connu au plus exotique"
|
||||
},
|
||||
"en": {
|
||||
"catégorie": "Sports",
|
||||
"nom": "Sports for all",
|
||||
"slogan": "From the best known to the most exotic"
|
||||
},
|
||||
"es": {
|
||||
"catégorie": "Deportes",
|
||||
"nom": "Deportes para todos",
|
||||
"slogan": "De lo más conocido a lo más exótico"
|
||||
},
|
||||
"it": {
|
||||
"catégorie": "Gli sport",
|
||||
"nom": "Sport per tutti",
|
||||
"slogan": "Dal più noto al più esotico"
|
||||
},
|
||||
"de": {
|
||||
"catégorie": "Sport",
|
||||
"nom": "Sport für alle",
|
||||
"slogan": "Von den bekanntesten bis zu den exotischsten"
|
||||
},
|
||||
"nl": {
|
||||
"catégorie": "Sport",
|
||||
"nom": "Sport voor iedereen",
|
||||
"slogan": "Van de bekendste tot de meest exotische"
|
||||
}
|
||||
},
|
||||
"quizz": {
|
||||
"fr": {
|
||||
"débutant": [
|
||||
{
|
||||
"id": 1,
|
||||
"question": "De quel petit objet se munit le golfeur pour surélever sa balle avant de la frapper ?",
|
||||
"propositions": [
|
||||
"Caddie",
|
||||
"Putter",
|
||||
"Tee",
|
||||
"Pitch"
|
||||
],
|
||||
"réponse": "Tee",
|
||||
"anecdote": "Le joueur peut poser sa balle sur une cheville de bois ou de plastique qui ne peut pas être utilisée en dehors des départs."
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"question": "Quel sport de raquette porte le nom de la ville anglaise où il fut inventé ?",
|
||||
"propositions": [
|
||||
"Padel",
|
||||
"Tennis",
|
||||
"Badminton",
|
||||
"Squash"
|
||||
],
|
||||
"réponse": "Badminton",
|
||||
"anecdote": "Le badminton est toujours pratiqué en intérieur car avec le vent, en extérieur, le volant peut brusquement changer de direction."
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"question": "Combien y a-t-il de joueurs sur le terrain dans une équipe de football ?",
|
||||
"propositions": [
|
||||
"Quatorze",
|
||||
"Dix",
|
||||
"Neuf",
|
||||
"Onze"
|
||||
],
|
||||
"réponse": "Onze",
|
||||
"anecdote": "Codifié par les Britanniques à la fin du XIXe siècle, le football s'est doté en 1904 d'une fédération internationale, la FIFA."
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"question": "Quel tapis à ressorts sert au gymnaste à faire toutes sortes de figures ?",
|
||||
"propositions": [
|
||||
"Cheval d'arçons",
|
||||
"Trampoline",
|
||||
"Ruban",
|
||||
"Espalier"
|
||||
],
|
||||
"réponse": "Trampoline",
|
||||
"anecdote": "Le terme générique de trampoline englobe trois disciplines : le trampoline, le tumbling et le double mini trampoline."
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"question": "Que réussit une équipe de rugby qui remporte les quatre matches des Six Nations ?",
|
||||
"propositions": [
|
||||
"Trois plumes",
|
||||
"Rose rouge",
|
||||
"Chardon",
|
||||
"Grand chelem"
|
||||
],
|
||||
"réponse": "Grand chelem",
|
||||
"anecdote": "Pour des raisons de sponsoring, ce tournoi est officiellement appelé RBS Six Nations (RBS pour Royal Bank of Scotland)."
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"question": "Que signale le drapeau à damier noir et jaune dans une station de sports d'hiver ?",
|
||||
"propositions": [
|
||||
"Fin de journée",
|
||||
"Risque d'avalanche",
|
||||
"Pistes fermées",
|
||||
"Télésiège en panne"
|
||||
],
|
||||
"réponse": "Risque d'avalanche",
|
||||
"anecdote": "La puissance des avalanches est telle qu'elles emportent facilement tout élément mobile rencontré (hommes, animaux, rochers)."
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"question": "Au golf, au milieu de quoi le trou est-il généralement placé ?",
|
||||
"propositions": [
|
||||
"Green",
|
||||
"Spin",
|
||||
"Gin",
|
||||
"Spleen"
|
||||
],
|
||||
"réponse": "Green",
|
||||
"anecdote": "Le golf, qui souffre d'un traitement médiatique et financier inégal, est un sport moins pratiqué par les femmes que par les hommes."
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"question": "Laquelle de ces propositions ne retrouve-t-on pas sur un vélo de sprinter sur piste ?",
|
||||
"propositions": [
|
||||
"Selle",
|
||||
"Cadre",
|
||||
"Guidon",
|
||||
"Freins"
|
||||
],
|
||||
"réponse": "Freins",
|
||||
"anecdote": "Le pratiquant de ce sport est donc obligé de pédaler en permanence jusqu'à l'arrêt complet de son vélo (pignons fixes)."
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"question": "Comment appelle-t-on une descente rapide en ski alpin ?",
|
||||
"propositions": [
|
||||
"Combiné",
|
||||
"Slalom",
|
||||
"Freestyle",
|
||||
"Schuss"
|
||||
],
|
||||
"réponse": "Schuss",
|
||||
"anecdote": "En compétition, durant les épreuves de vitesse, le bâton est profilé pour épouser la forme du corps du skieur lors du schuss."
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"question": "Quel nombre de jeux chaque set de tennis peut-il comporter ?",
|
||||
"propositions": [
|
||||
"Cinq",
|
||||
"Sept",
|
||||
"Au moins six",
|
||||
"Onze"
|
||||
],
|
||||
"réponse": "Au moins six",
|
||||
"anecdote": "Le mot tennis provient du français tenez, mot que l'on adressait à l'adversaire au moment de servir."
|
||||
}
|
||||
],
|
||||
"confirmé": [
|
||||
{
|
||||
"id": 11,
|
||||
"question": "En épreuve de saut en longueur, à combien d'essais chaque concurrent a-t-il droit ?",
|
||||
"propositions": [
|
||||
"Quatre",
|
||||
"Trois",
|
||||
"Cinq",
|
||||
"Deux"
|
||||
],
|
||||
"réponse": "Trois",
|
||||
"anecdote": "Le record du monde masculin de saut en longueur est détenu depuis 1991 par Mike Powell avec un saut à 8,95 mètres."
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"question": "En kayak, de quel type de pagaie se sert-on pour avancer ou reculer ?",
|
||||
"propositions": [
|
||||
"Simple",
|
||||
"Double",
|
||||
"Quadruple",
|
||||
"Triple"
|
||||
],
|
||||
"réponse": "Double",
|
||||
"anecdote": "Le kayak est parfois confondu avec le canoë, la pratique sportive étant désignée par le terme général canoë-kayak."
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"question": "Quel était le nom de la navigatrice en solitaire française, skipper du Biotherm ?",
|
||||
"propositions": [
|
||||
"Mathilde Géron",
|
||||
"Maud Fontenoy",
|
||||
"Florence Artaud",
|
||||
"Isabelle Autissier"
|
||||
],
|
||||
"réponse": "Florence Artaud",
|
||||
"anecdote": "Florence Artaud a perdu la vie dans un accident d'hélicoptère alors qu'elle participait au tournage de l'émission « Dropped » de TF1."
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"question": "Dans le jargon de l'alpinisme, que fait un alpiniste qui dévisse ?",
|
||||
"propositions": [
|
||||
"Il mange",
|
||||
"Il tombe",
|
||||
"Il dort",
|
||||
"Il ôte un piton"
|
||||
],
|
||||
"réponse": "Il tombe",
|
||||
"anecdote": "L'alpinisme est une pratique sportive d'ascension en haute montagne qui repose sur différentes techniques de progression."
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"question": "En escrime, quelle est la troisième arme blanche avec l'épée et le fleuret ?",
|
||||
"propositions": [
|
||||
"Couteau",
|
||||
"Hache",
|
||||
"Sabre",
|
||||
"Poignard"
|
||||
],
|
||||
"réponse": "Sabre",
|
||||
"anecdote": "Ces trois armes sont sexuées : épée féminine et masculine, fleuret féminin et masculin et sabre féminin et masculin."
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"question": "À quelle grande gymnaste roumaine Ecaterina Szabo a-t-elle succédé ?",
|
||||
"propositions": [
|
||||
"Larissa Latynina",
|
||||
"Yelena Davydova",
|
||||
"Nadia Comaneci",
|
||||
"Vera Caslavska"
|
||||
],
|
||||
"réponse": "Nadia Comaneci",
|
||||
"anecdote": "Nadia Comaneci est souvent présentée, à tort, comme la première gymnaste de tous les temps à avoir obtenu la note parfaite de 10."
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"question": "Avec quel entraîneur la France a-t-elle remporté la Coupe d'Europe de foot de 1984 ?",
|
||||
"propositions": [
|
||||
"Aimé Jacquet",
|
||||
"Michel Hidalgo",
|
||||
"Luis Fernandez",
|
||||
"Guy Roux"
|
||||
],
|
||||
"réponse": "Michel Hidalgo",
|
||||
"anecdote": "En 1986, Michel Hidalgo a rejoint Bernard Tapie à l'Olympique de Marseille pour en devenir le manager général jusqu'en 1991."
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"question": "Dans quel sport est-il préférable d'avoir un bon coup de pelle ?",
|
||||
"propositions": [
|
||||
"L'aviron",
|
||||
"Le golf",
|
||||
"Le cricket",
|
||||
"L'escrime"
|
||||
],
|
||||
"réponse": "L'aviron",
|
||||
"anecdote": "L'aviron est un sport olympique depuis la création des Jeux modernes en 1896, sous l'impulsion du Baron Pierre de Coubertin."
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"question": "Quel sport reste à ce jour le sport préféré des collégiens anglais ?",
|
||||
"propositions": [
|
||||
"Handball",
|
||||
"Tennis",
|
||||
"Cricket",
|
||||
"Football"
|
||||
],
|
||||
"réponse": "Cricket",
|
||||
"anecdote": "Plus de cent pays sont affiliés à l'International Cricket Council, qui organise notamment la Coupe du monde de cricket."
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"question": "Comment le barreur dirige-t-il ses coéquipiers en aviron ?",
|
||||
"propositions": [
|
||||
"En musique",
|
||||
"Au tambour",
|
||||
"Au sifflet",
|
||||
"Au porte-voix"
|
||||
],
|
||||
"réponse": "Au porte-voix",
|
||||
"anecdote": "Dans un équipage d'aviron, le barreur est le membre qui s'assoit sur la poupe, se mettant ainsi face à la proue."
|
||||
}
|
||||
],
|
||||
"expert": [
|
||||
{
|
||||
"id": 21,
|
||||
"question": "En baseball, combien de joueurs se trouvent sur le terrain en défense ?",
|
||||
"propositions": [
|
||||
"Sept",
|
||||
"Onze",
|
||||
"Treize",
|
||||
"Neuf"
|
||||
],
|
||||
"réponse": "Neuf",
|
||||
"anecdote": "La première référence au rounders est faite dans un livre anglais de John Newbery en 1744 : « A Little Pretty Pocket-Book »."
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"question": "En ski, le christiana est une technique permettant d'effectuer quelle manoeuvre ?",
|
||||
"propositions": [
|
||||
"Arrêt",
|
||||
"Freinage",
|
||||
"Saut",
|
||||
"Virage"
|
||||
],
|
||||
"réponse": "Virage",
|
||||
"anecdote": "La technique du virage est née à la Belle Époque sur les longues pistes de ski très fréquentées de la ville de Christiania."
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"question": "Combien les Américains ont-ils gagné de médailles aux Jeux olympiques d'été de 1984 ?",
|
||||
"propositions": [
|
||||
"174",
|
||||
"61",
|
||||
"30",
|
||||
"83"
|
||||
],
|
||||
"réponse": "174",
|
||||
"anecdote": "En l'absence de grandes nations sportives comme l'URSS et la RDA, les États-Unis ont dominé ces jeux de Los Angeles."
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"question": "Quelle équipe de rugby a comme emblème une antilope sur maillot vert et sombre ?",
|
||||
"propositions": [
|
||||
"Irlande",
|
||||
"Écosse",
|
||||
"Afrique du Sud",
|
||||
"Nouvelle-Zélande"
|
||||
],
|
||||
"réponse": "Afrique du Sud",
|
||||
"anecdote": "En raison de son palmarès, l'équipe d'Afrique du Sud est considérée comme l'une des meilleures sélections nationales au monde."
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"question": "Quelle moto possède la cylindrée la plus adaptée au trial ?",
|
||||
"propositions": [
|
||||
"250 cm³",
|
||||
"150 cm³",
|
||||
"200 cm³",
|
||||
"100 cm³"
|
||||
],
|
||||
"réponse": "250 cm³",
|
||||
"anecdote": "Le trial, qui consiste à franchir des obstacles naturels ou artificiels, est un sport où la notion de vitesse n'intervient pas."
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"question": "Combien d'heures la course cycliste des Six Jours de Paris durait-elle ?",
|
||||
"propositions": [
|
||||
"84 heures",
|
||||
"124 heures",
|
||||
"144 heures",
|
||||
"104 heures"
|
||||
],
|
||||
"réponse": "144 heures",
|
||||
"anecdote": "Richement dotée, elle était très populaire avant la Seconde Guerre mondiale et était la principale compétition de ce type en France."
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"question": "En croquet, que devient une boule qui franchit tous les arceaux sans toucher le piquet ?",
|
||||
"propositions": [
|
||||
"Matelot",
|
||||
"Capitaine",
|
||||
"Pirate",
|
||||
"Corsaire"
|
||||
],
|
||||
"réponse": "Corsaire",
|
||||
"anecdote": "Une fois le dernier anneau passé, un joueur peut empêcher ses adversaires de gagner en prenant soin de ne pas toucher le piquet."
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"question": "Quelle course de fond suédoise emprunte la piste des Dalécarliens ?",
|
||||
"propositions": [
|
||||
"Dolomitenlauf",
|
||||
"Vasaloppet",
|
||||
"Marcialonga",
|
||||
"Tartu Maraton"
|
||||
],
|
||||
"réponse": "Vasaloppet",
|
||||
"anecdote": "La course se tient le premier dimanche de mars et près de 15 000 skieurs prennent le départ en 10 vagues successives."
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"question": "Quelle planche de surf pour grosses vagues permet de démarrer très tôt sur la vague ?",
|
||||
"propositions": [
|
||||
"Malibu",
|
||||
"Fishes",
|
||||
"Gun",
|
||||
"Eggs"
|
||||
],
|
||||
"réponse": "Gun",
|
||||
"anecdote": "En fonction du temps, des préférences et de la manière de surfer, il existe différentes type de planches (appelées shape)."
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"question": "Dans quelle ville les premiers jeux Olympiques d'hiver ont-ils eu lieu en 1924 ?",
|
||||
"propositions": [
|
||||
"Innsbruck",
|
||||
"Chamonix",
|
||||
"Oslo",
|
||||
"Grenoble"
|
||||
],
|
||||
"réponse": "Chamonix",
|
||||
"anecdote": "La compétition rassembla 258 athlètes de 16 pays qui disputèrent un total de 16 épreuves dans 6 sports différents."
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user