From 85f0bc1024a7ac1b7a4945eb46a45482289d3aaf Mon Sep 17 00:00:00 2001 From: William Petit Date: Fri, 13 Jun 2025 16:55:46 +0200 Subject: [PATCH] feat: initial commit --- go.mod | 23 +- go.sum | 64 +- internal/config/config.go | 2 +- internal/config/llm.go | 12 - internal/config/quiz.go | 8 + internal/http/handler/webui/auth/provider.go | 8 + internal/http/handler/webui/auth/user.go | 1 + .../webui/quiz/component/quiz_page.templ | 2 + .../webui/quiz/component/quiz_page_templ.go | 2 + internal/http/handler/webui/quiz/handler.go | 13 +- internal/http/handler/webui/quiz/quiz_page.go | 35 + internal/setup/quiz_handler.go | 73 +- internal/store/models.go | 46 + internal/store/player.go | 28 + internal/store/quiz.go | 114 + internal/store/store.go | 16 + internal/store/types.go | 27 + misc/quiz/openquizzdb/biere.json | 2251 +++++++++++++++++ misc/quiz/openquizzdb/culture-generale-1.json | 2250 ++++++++++++++++ misc/quiz/openquizzdb/culture-vrac-1.json | 2250 ++++++++++++++++ misc/quiz/openquizzdb/embed.go | 77 + misc/quiz/openquizzdb/linux-1.json | 2251 +++++++++++++++++ misc/quiz/openquizzdb/web.json | 2250 ++++++++++++++++ 23 files changed, 11758 insertions(+), 45 deletions(-) delete mode 100644 internal/config/llm.go create mode 100644 internal/config/quiz.go create mode 100644 internal/store/player.go create mode 100644 internal/store/quiz.go create mode 100644 internal/store/types.go create mode 100644 misc/quiz/openquizzdb/biere.json create mode 100644 misc/quiz/openquizzdb/culture-generale-1.json create mode 100644 misc/quiz/openquizzdb/culture-vrac-1.json create mode 100644 misc/quiz/openquizzdb/embed.go create mode 100644 misc/quiz/openquizzdb/linux-1.json create mode 100644 misc/quiz/openquizzdb/web.json diff --git a/go.mod b/go.mod index 9c05c75..54f23bb 100644 --- a/go.mod +++ b/go.mod @@ -1,12 +1,13 @@ module forge.cadoles.com/wpetit/kouiz -go 1.23.4 +go 1.24.1 -toolchain go1.23.6 +toolchain go1.24.3 require ( github.com/a-h/templ v0.3.833 - github.com/caarlos0/env/v11 v11.2.2 + 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 @@ -14,15 +15,19 @@ require ( github.com/pkg/errors v0.9.1 github.com/samber/slog-http v1.4.4 github.com/yuin/goldmark v1.7.8 + gorm.io/datatypes v1.2.5 gorm.io/gorm v1.30.0 ) require ( cloud.google.com/go/compute v1.20.1 // indirect cloud.google.com/go/compute/metadata v0.2.3 // indirect + filippo.io/edwards25519 v1.1.0 // indirect github.com/dustin/go-humanize v1.0.1 // indirect github.com/glebarez/go-sqlite v1.21.2 // indirect + github.com/go-sql-driver/mysql v1.8.1 // indirect github.com/golang/protobuf v1.5.4 // indirect + github.com/google/go-cmp v0.7.0 // indirect github.com/google/uuid v1.6.0 // indirect github.com/gorilla/context v1.1.1 // indirect github.com/gorilla/mux v1.6.2 // indirect @@ -31,18 +36,18 @@ require ( github.com/jinzhu/now v1.1.5 // indirect github.com/mattn/go-isatty v0.0.20 // indirect github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect + github.com/stretchr/testify v1.10.0 // indirect go.opentelemetry.io/otel v1.29.0 // indirect go.opentelemetry.io/otel/trace v1.29.0 // indirect - golang.org/x/net v0.35.0 // indirect + golang.org/x/net v0.39.0 // indirect golang.org/x/oauth2 v0.17.0 // indirect - golang.org/x/sys v0.30.0 // indirect - golang.org/x/text v0.22.0 // indirect + golang.org/x/sys v0.32.0 // indirect + golang.org/x/text v0.24.0 // indirect google.golang.org/appengine v1.6.8 // indirect - google.golang.org/protobuf v1.34.1 // indirect + google.golang.org/protobuf v1.36.6 // indirect + gorm.io/driver/mysql v1.5.6 // indirect modernc.org/libc v1.22.5 // indirect modernc.org/mathutil v1.5.0 // indirect modernc.org/memory v1.5.0 // indirect modernc.org/sqlite v1.23.1 // indirect ) - -replace github.com/revrost/go-openrouter => github.com/bornholm/go-openrouter v0.0.0-20250306205247-645443da53e2 diff --git a/go.sum b/go.sum index 1e619fa..d27e130 100644 --- a/go.sum +++ b/go.sum @@ -2,10 +2,12 @@ cloud.google.com/go/compute v1.20.1 h1:6aKEtlUiwEpJzM001l0yFkpXmUVXaN8W+fbkb2AZN cloud.google.com/go/compute v1.20.1/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= cloud.google.com/go/compute/metadata v0.2.3 h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY= cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= +filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA= +filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4= github.com/a-h/templ v0.3.833 h1:L/KOk/0VvVTBegtE0fp2RJQiBm7/52Zxv5fqlEHiQUU= github.com/a-h/templ v0.3.833/go.mod h1:cAu4AiZhtJfBjMY0HASlyzvkrtjnHWPeEsyGK2YYmfk= -github.com/caarlos0/env/v11 v11.2.2 h1:95fApNrUyueipoZN/EhA8mMxiNxrBwDa+oAZrMWl3Kg= -github.com/caarlos0/env/v11 v11.2.2/go.mod h1:JBfcdeQiBoI3Zh1QRAWfe+tpiNTmDtcCj/hHHHMx0vc= +github.com/caarlos0/env/v11 v11.3.1 h1:cArPWC15hWmEt+gWk7YBi7lEXTXCvpaSdCiZE2X5mCA= +github.com/caarlos0/env/v11 v11.3.1/go.mod h1:qupehSf/Y0TUTsxKywqRt/vJjN5nz6vauiYEUUr8P4U= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY= @@ -16,13 +18,20 @@ github.com/glebarez/go-sqlite v1.21.2 h1:3a6LFC4sKahUunAmynQKLZceZCOzUthkRkEAl9g github.com/glebarez/go-sqlite v1.21.2/go.mod h1:sfxdZyhQjTM2Wry3gVYWaW072Ri1WMdWJi0k6+3382k= github.com/glebarez/sqlite v1.11.0 h1:wSG0irqzP6VurnMEpFGer5Li19RpIRi2qvQz++w0GMw= github.com/glebarez/sqlite v1.11.0/go.mod h1:h8/o8j5wiAsqSPoWELDUdJXhjAhsVliSn7bWZjOhrgQ= +github.com/go-sql-driver/mysql v1.7.0/go.mod h1:OXbVy3sEdcQ2Doequ6Z5BW6fXNQTmx+9S1MCJN5yJMI= +github.com/go-sql-driver/mysql v1.8.1 h1:LedoTUt/eveggdHS9qUFC1EFSa8bU2+1pZjSRpvNJ1Y= +github.com/go-sql-driver/mysql v1.8.1/go.mod h1:wEBSXgmK//2ZFJyE+qWnIsVGmvmEKlqwuVSjsCm7DZg= +github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 h1:au07oEsX2xN0ktxqI+Sida1w446QrXBRJ0nee3SNZlA= +github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9/go.mod h1:8vg3r2VgvsThLBIFL93Qb5yWzgyZWhEmBwUJWevAkK0= +github.com/golang-sql/sqlexp v0.1.0 h1:ZCD6MBpcuOVfGVqsEmY5/4FtYiKz6tSyUv9LPEDei6A= +github.com/golang-sql/sqlexp v0.1.0/go.mod h1:J4ad9Vo8ZCWQ2GMrC4UCQy1JpCbwU9m3EOqtpKwwwHI= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= -github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= +github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= github.com/google/pprof v0.0.0-20221118152302-e6195bd50e26 h1:Xim43kblpZXfIBQsbuBVKCudVG457BR2GZFIz3uw3hQ= github.com/google/pprof v0.0.0-20221118152302-e6195bd50e26/go.mod h1:dDKJzRmX4S37WGHujM7tX//fmj1uioxKzKxz3lo4HJo= github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= @@ -35,6 +44,14 @@ github.com/gorilla/securecookie v1.1.1 h1:miw7JPhV+b/lAHSXz4qd/nN9jRiAFV5FwjeKyC github.com/gorilla/securecookie v1.1.1/go.mod h1:ra0sb63/xPlUeL+yeDciTfxMRAA+MP+HVt/4epWDjd4= github.com/gorilla/sessions v1.1.1 h1:YMDmfaK68mUixINzY/XjscuJ47uXFWSSHzFbBQM0PrE= github.com/gorilla/sessions v1.1.1/go.mod h1:8KCfur6+4Mqcc6S0FEfKuN15Vl5MgXW92AE8ovaJD0w= +github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM= +github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg= +github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 h1:L0QtFUgDarD7Fpv9jeVMgy/+Ec0mtnmYuImjTz6dtDA= +github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9/go.mod h1:5TJZWKEWniPve33vlWYSoGYefn3gLQRzjfDlhSJ9ZKM= +github.com/jackc/pgx/v5 v5.5.5 h1:amBjrZVmksIdNjxGW/IiIMzxMKZFelXbUoPNb+8sjQw= +github.com/jackc/pgx/v5 v5.5.5/go.mod h1:ez9gk+OAat140fv9ErkZDYFWmXLfV+++K0uAOiwgm1A= +github.com/jackc/puddle/v2 v2.2.1 h1:RhxXJtFG022u4ibrCSMSiu5aOq1i77R3OHKNJj77OAk= +github.com/jackc/puddle/v2 v2.2.1/go.mod h1:vriiEXHvEE654aYKXXjOvZM39qJ0q+azkZFrfEOc3H4= github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E= github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc= github.com/jinzhu/now v1.1.5 h1:/o9tlHleP7gOFmsnYNz3RGnqzefHA47wQpKrrdTIwXQ= @@ -43,6 +60,10 @@ github.com/markbates/goth v1.80.0 h1:NnvatczZDzOs1hn9Ug+dVYf2Viwwkp/ZDX5K+GLjan8 github.com/markbates/goth v1.80.0/go.mod h1:4/GYHo+W6NWisrMPZnq0Yr2Q70UntNLn7KXEFhrIdAY= github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/mattn/go-sqlite3 v1.14.16 h1:yOQRA0RpS5PFz/oikGwBEqvAWhWg5ufRz4ETLjwpU1Y= +github.com/mattn/go-sqlite3 v1.14.16/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg= +github.com/microsoft/go-mssqldb v1.7.2 h1:CHkFJiObW7ItKTJfHo1QX7QBBD1iV+mn1eOyRP3b/PA= +github.com/microsoft/go-mssqldb v1.7.2/go.mod h1:kOvZKUdrhhFQmxLZqbwUV0rHkNkZpthMITIb2Ko1IoA= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= @@ -52,8 +73,8 @@ github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec h1:W09IVJc94 github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= github.com/samber/slog-http v1.4.4 h1:NuENLy39Lk6b7wfj9cG9R5C/JLZR4t6pb9cwlyroybI= github.com/samber/slog-http v1.4.4/go.mod h1:PAcQQrYFo5KM7Qbk50gNNwKEAMGCyfsw6GN5dI0iv9g= -github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= -github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= +github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= github.com/yuin/goldmark v1.7.8 h1:iERMLn0/QJeHFhxSt3p6PeN9mGnvIKSpG9YYorDMnic= github.com/yuin/goldmark v1.7.8/go.mod h1:uzxRWxtg69N339t3louHJ7+O03ezfj6PlliRlaOzY1E= @@ -63,32 +84,36 @@ go.opentelemetry.io/otel/trace v1.29.0 h1:J/8ZNK4XgR7a21DZUAsbF8pZ5Jcw1VhACmnYt3 go.opentelemetry.io/otel/trace v1.29.0/go.mod h1:eHl3w0sp3paPkYstJOmAimxhiFXPg+MMTlEh3nsQgWQ= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.37.0 h1:kJNSjF/Xp7kU0iB2Z+9viTPMW4EqqsrywMXLJOOsXSE= +golang.org/x/crypto v0.37.0/go.mod h1:vg+k43peMZ0pUMhYmVAWysMK35e6ioLh3wB8ZCAfbVc= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.35.0 h1:T5GQRQb2y08kTAByq9L4/bz8cipCdA8FbRTXewonqY8= -golang.org/x/net v0.35.0/go.mod h1:EglIi67kWsHKlRzzVMUD93VMSWGFOMSZgxFjparz1Qk= +golang.org/x/net v0.39.0 h1:ZCu7HMWDxpXpaiKdhzIfaltL9Lp31x/3fCP11bc6/fY= +golang.org/x/net v0.39.0/go.mod h1:X7NRbYVEA+ewNkCNyJ513WmMdQ3BineSwVtN2zD/d+E= golang.org/x/oauth2 v0.17.0 h1:6m3ZPmLEFdVxKKWnKq4VqZ60gutO35zm+zrAHVmHyDQ= golang.org/x/oauth2 v0.17.0/go.mod h1:OzPDGQiuQMguemayvdylqddI7qcD9lnSDb+1FiwQ5HA= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.13.0 h1:AauUjRAJ9OSnvULf/ARrrVywoJDy0YS2AwQ98I37610= +golang.org/x/sync v0.13.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.30.0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc= -golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.32.0 h1:s77OFDvIQeibCmezSnk/q6iAfkdiQaJi4VzroCFrN20= +golang.org/x/sys v0.32.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= -golang.org/x/text v0.22.0 h1:bofq7m3/HAFvbF51jz3Q9wLg3jkvSPuiZu/pD1XwgtM= -golang.org/x/text v0.22.0/go.mod h1:YRoo4H8PVmsu+E3Ou7cqLVH8oXWIHVoX0jqUWALQhfY= +golang.org/x/text v0.24.0 h1:dd5Bzh4yt5KYA8f9CJHCP4FB4D51c2c6JvN37xJJkJ0= +golang.org/x/text v0.24.0/go.mod h1:L8rBsPeo2pSS+xqN0d5u2ikmjtmoJbDBT1b7nHvFCdU= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= @@ -98,10 +123,21 @@ google.golang.org/appengine v1.6.8 h1:IhEN5q69dyKagZPYMSdIjS2HqprW324FRQZJcGqPAs google.golang.org/appengine v1.6.8/go.mod h1:1jJ3jBArFh5pcgW8gCtRJnepW8FzD1V44FJffLiz/Ds= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.34.1 h1:9ddQBjfCyZPOHPUiPxpYESBLc+T8P3E+Vo4IbKZgFWg= -google.golang.org/protobuf v1.34.1/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= +google.golang.org/protobuf v1.36.6 h1:z1NpPI8ku2WgiWnf+t9wTPsn6eP1L7ksHUlkfLvd9xY= +google.golang.org/protobuf v1.36.6/go.mod h1:jduwjTPXsFjZGTmRluh+L6NjiWu7pchiJ2/5YcXBHnY= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gorm.io/datatypes v1.2.5 h1:9UogU3jkydFVW1bIVVeoYsTpLRgwDVW3rHfJG6/Ek9I= +gorm.io/datatypes v1.2.5/go.mod h1:I5FUdlKpLb5PMqeMQhm30CQ6jXP8Rj89xkTeCSAaAD4= +gorm.io/driver/mysql v1.5.6 h1:Ld4mkIickM+EliaQZQx3uOJDJHtrd70MxAUqWqlx3Y8= +gorm.io/driver/mysql v1.5.6/go.mod h1:sEtPWMiqiN1N1cMXoXmBbd8C6/l+TESwriotuRRpkDM= +gorm.io/driver/postgres v1.5.0 h1:u2FXTy14l45qc3UeCJ7QaAXZmZfDDv0YrthvmRq1l0U= +gorm.io/driver/postgres v1.5.0/go.mod h1:FUZXzO+5Uqg5zzwzv4KK49R8lvGIyscBOqYrtI1Ce9A= +gorm.io/driver/sqlite v1.4.3 h1:HBBcZSDnWi5BW3B3rwvVTc510KGkBkexlOg0QrmLUuU= +gorm.io/driver/sqlite v1.4.3/go.mod h1:0Aq3iPO+v9ZKbcdiz8gLWRw5VOPcBOPUQJFLq5e2ecI= +gorm.io/driver/sqlserver v1.5.4 h1:xA+Y1KDNspv79q43bPyjDMUgHoYHLhXYmdFcYPobg8g= +gorm.io/driver/sqlserver v1.5.4/go.mod h1:+frZ/qYmuna11zHPlh5oc2O6ZA/lS88Keb0XSH1Zh/g= +gorm.io/gorm v1.25.7/go.mod h1:hbnx/Oo0ChWMn1BIhpy1oYozzpM15i4YPuHDmfYtwg8= gorm.io/gorm v1.30.0 h1:qbT5aPv1UH8gI99OsRlvDToLxW5zR7FzS9acZDOZcgs= gorm.io/gorm v1.30.0/go.mod h1:8Z33v652h4//uMA76KjeDH8mJXPm1QNCYrMeatR0DOE= modernc.org/libc v1.22.5 h1:91BNch/e5B0uPbJFgqbxXuOnxBQjlS//icfQEGmvyjE= diff --git a/internal/config/config.go b/internal/config/config.go index 13cbead..d3d99bc 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -9,8 +9,8 @@ type Config struct { Logger Logger `envPrefix:"LOGGER_"` Auth Auth `envPrefix:"AUTH_"` HTTP HTTP `envPrefix:"HTTP_"` - LLM LLM `envPrefix:"LLM_"` Store Store `envPrefix:"STORE_"` + Quiz Quiz `envPrefix:"QUIZ_"` } func Parse() (*Config, error) { diff --git a/internal/config/llm.go b/internal/config/llm.go deleted file mode 100644 index 7ded659..0000000 --- a/internal/config/llm.go +++ /dev/null @@ -1,12 +0,0 @@ -package config - -type LLM struct { - Provider LLMProvider `envPrefix:"PROVIDER_"` -} - -type LLMProvider struct { - Name string `env:"NAME" envDefault:"openai"` - BaseURL string `env:"BASE_URL" envDefault:"https://api.openai.com/v1/"` - Key string `env:"KEY"` - Model string `env:"MODEL" envDefault:"gpt-4o-mini"` -} diff --git a/internal/config/quiz.go b/internal/config/quiz.go new file mode 100644 index 0000000..71e0738 --- /dev/null +++ b/internal/config/quiz.go @@ -0,0 +1,8 @@ +package config + +import "time" + +type Quiz struct { + Language string `env:"LANGUAGE" envDefault:"fr"` + PlayInterval time.Duration `env:"PLAY_INTERVAL" envDefault:"2h"` +} diff --git a/internal/http/handler/webui/auth/provider.go b/internal/http/handler/webui/auth/provider.go index a395b3d..137787b 100644 --- a/internal/http/handler/webui/auth/provider.go +++ b/internal/http/handler/webui/auth/provider.go @@ -35,6 +35,14 @@ func (h *Handler) handleProviderCallback(w http.ResponseWriter, r *http.Request) Provider: gothUser.Provider, AccessToken: gothUser.AccessToken, IDToken: gothUser.IDToken, + Name: gothUser.Name, + } + + rawPreferredUsername, exists := gothUser.RawData["preferred_username"] + if exists { + if preferredUsername, ok := rawPreferredUsername.(string); ok { + user.Name = preferredUsername + } } if err := h.storeSessionUser(w, r, user); err != nil { diff --git a/internal/http/handler/webui/auth/user.go b/internal/http/handler/webui/auth/user.go index 41d9be6..7e3ad13 100644 --- a/internal/http/handler/webui/auth/user.go +++ b/internal/http/handler/webui/auth/user.go @@ -5,4 +5,5 @@ type User struct { Provider string AccessToken string IDToken string + Name string } diff --git a/internal/http/handler/webui/quiz/component/quiz_page.templ b/internal/http/handler/webui/quiz/component/quiz_page.templ index 854d999..bba5b12 100644 --- a/internal/http/handler/webui/quiz/component/quiz_page.templ +++ b/internal/http/handler/webui/quiz/component/quiz_page.templ @@ -5,12 +5,14 @@ import ( "context" "forge.cadoles.com/wpetit/kouiz/internal/http/form" common "forge.cadoles.com/wpetit/kouiz/internal/http/handler/webui/common/component" + "forge.cadoles.com/wpetit/kouiz/internal/store" "github.com/pkg/errors" "github.com/yuin/goldmark" "log/slog" ) type QuizPageVModel struct { + Player *store.Player } func NewQuizForm() *form.Form { diff --git a/internal/http/handler/webui/quiz/component/quiz_page_templ.go b/internal/http/handler/webui/quiz/component/quiz_page_templ.go index 76611cc..d83581b 100644 --- a/internal/http/handler/webui/quiz/component/quiz_page_templ.go +++ b/internal/http/handler/webui/quiz/component/quiz_page_templ.go @@ -13,12 +13,14 @@ import ( "context" "forge.cadoles.com/wpetit/kouiz/internal/http/form" common "forge.cadoles.com/wpetit/kouiz/internal/http/handler/webui/common/component" + "forge.cadoles.com/wpetit/kouiz/internal/store" "github.com/pkg/errors" "github.com/yuin/goldmark" "log/slog" ) type QuizPageVModel struct { + Player *store.Player } func NewQuizForm() *form.Form { diff --git a/internal/http/handler/webui/quiz/handler.go b/internal/http/handler/webui/quiz/handler.go index a06ff61..95d8d5d 100644 --- a/internal/http/handler/webui/quiz/handler.go +++ b/internal/http/handler/webui/quiz/handler.go @@ -2,13 +2,15 @@ package quiz import ( "net/http" + "time" "forge.cadoles.com/wpetit/kouiz/internal/store" ) type Handler struct { - mux *http.ServeMux - store *store.Store + mux *http.ServeMux + store *store.Store + playInterval time.Duration } // ServeHTTP implements http.Handler. @@ -16,10 +18,11 @@ func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) { h.mux.ServeHTTP(w, r) } -func NewHandler(store *store.Store) *Handler { +func NewHandler(store *store.Store, playInterval time.Duration) *Handler { h := &Handler{ - mux: http.NewServeMux(), - store: store, + mux: http.NewServeMux(), + store: store, + playInterval: playInterval, } h.mux.HandleFunc("GET /", h.getQuizPage) diff --git a/internal/http/handler/webui/quiz/quiz_page.go b/internal/http/handler/webui/quiz/quiz_page.go index 349ea4e..f3c9211 100644 --- a/internal/http/handler/webui/quiz/quiz_page.go +++ b/internal/http/handler/webui/quiz/quiz_page.go @@ -1,11 +1,15 @@ package quiz import ( + "context" "net/http" + "forge.cadoles.com/wpetit/kouiz/internal/http/handler/webui/auth" "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/davecgh/go-spew/spew" "github.com/pkg/errors" ) @@ -25,6 +29,8 @@ func (h *Handler) fillQuizPageVModel(r *http.Request) (*component.QuizPageVModel err := common.FillViewModel( r.Context(), vmodel, r, + h.fillQuizPagePlayer, + h.fillQuizPageTurn, ) if err != nil { return nil, errors.WithStack(err) @@ -33,6 +39,35 @@ func (h *Handler) fillQuizPageVModel(r *http.Request) (*component.QuizPageVModel return vmodel, nil } +func (h *Handler) fillQuizPagePlayer(ctx context.Context, vmodel *component.QuizPageVModel, r *http.Request) error { + user := auth.ContextUser(ctx) + + player := &store.Player{ + Name: user.Name, + UserID: user.ID, + UserProvider: user.Provider, + } + + if err := h.store.UpsertPlayer(ctx, player); err != nil { + return errors.WithStack(err) + } + + vmodel.Player = player + + return nil +} + +func (h *Handler) fillQuizPageTurn(ctx context.Context, vmodel *component.QuizPageVModel, r *http.Request) error { + turn, err := h.store.GetQuizTurn(ctx, h.playInterval) + if err != nil { + return errors.WithStack(err) + } + + spew.Dump(turn) + + return nil +} + func (h *Handler) handleQuizForm(w http.ResponseWriter, r *http.Request) { quizForm := component.NewQuizForm() diff --git a/internal/setup/quiz_handler.go b/internal/setup/quiz_handler.go index c2ad010..fad5fe0 100644 --- a/internal/setup/quiz_handler.go +++ b/internal/setup/quiz_handler.go @@ -2,25 +2,90 @@ package setup import ( "context" - "log" + "fmt" + "time" "forge.cadoles.com/wpetit/kouiz/internal/config" "forge.cadoles.com/wpetit/kouiz/internal/http/handler/webui/quiz" "forge.cadoles.com/wpetit/kouiz/internal/store" + "forge.cadoles.com/wpetit/kouiz/misc/quiz/openquizzdb" "github.com/glebarez/sqlite" "github.com/pkg/errors" + "gorm.io/datatypes" "gorm.io/gorm" ) func NewQuizHandlerFromConfig(ctx context.Context, conf *config.Config) (*quiz.Handler, error) { - db, err := gorm.Open(sqlite.Open(string(conf.Store.DSN)), &gorm.Config{}) + db, err := gorm.Open(sqlite.Open(string(conf.Store.DSN)), &gorm.Config{ + NowFunc: func() time.Time { + return time.Now().UTC() + }, + }) if err != nil { - log.Fatalf("[FATAL] %+v", errors.Wrap(err, "could not open store")) + return nil, errors.WithStack(err) } if conf.Store.Debug { db = db.Debug() } - return quiz.NewHandler(store.New(db)), nil + store := store.New(db) + + if err := loadEmbeddedQuizz(ctx, store); err != nil { + return nil, errors.WithStack(err) + } + + return quiz.NewHandler(store, conf.Quiz.PlayInterval), nil +} + +func loadEmbeddedQuizz(ctx context.Context, st *store.Store) error { + quizz, err := openquizzdb.LoadAll() + if err != nil { + return errors.WithStack(err) + } + + for _, q := range quizz { + c := q.Categories["fr"] + + category := &store.QuizCategory{ + Name: c.Name, + Theme: c.Label, + Description: c.Slogan, + } + + err := st.UpsertQuizCategory(ctx, category) + if err != nil { + return errors.WithStack(err) + } + + quiz := q.Quizz["fr"] + levels := [][]openquizzdb.Entry{ + quiz.Beginner, + quiz.Intermediate, + quiz.Expert, + } + + for i, l := range levels { + for _, e := range l { + entry := &store.QuizEntry{ + CategoryID: category.ID, + Question: e.Question, + Level: uint(i), + Provider: "openquizzdb", + ProviderID: fmt.Sprintf("%d-%d-%d", category.ID, i, e.ID), + Propositions: datatypes.NewJSONSlice(e.Propositions), + Answer: e.Answer, + Anecdote: e.Anecdote, + } + + err := st.UpsertQuizEntry(ctx, entry) + if err != nil { + return errors.WithStack(err) + } + } + } + + } + + return nil } diff --git a/internal/store/models.go b/internal/store/models.go index fe8bee1..85c23af 100644 --- a/internal/store/models.go +++ b/internal/store/models.go @@ -1,15 +1,61 @@ package store import ( + "time" + + "gorm.io/datatypes" "gorm.io/gorm" ) var models = []any{ &Player{}, + &QuizCategory{}, + &QuizEntry{}, + &QuizTurn{}, } type Player struct { gorm.Model + Name string + + UserID string `gorm:"index"` + UserProvider string `gorm:"index"` + Score int + + PlayedAt time.Time +} + +type QuizTurn struct { + gorm.Model + + StartedAt time.Time `gorm:"index"` + EndedAt time.Time `gorm:"index"` + + Entries []*QuizEntry `gorm:"many2many:quiz_turn_entries;"` +} + +type QuizCategory struct { + gorm.Model + + Name string `gorm:"index"` + Theme string `gorm:"index"` + Description string +} + +type QuizEntry struct { + gorm.Model + + Category *QuizCategory + CategoryID uint + + Provider string `gorm:"index"` + ProviderID string `gorm:"index"` + + Question string + Propositions datatypes.JSONSlice[string] + Answer string + Level uint `gorm:"index"` + Anecdote string } diff --git a/internal/store/player.go b/internal/store/player.go new file mode 100644 index 0000000..28c4274 --- /dev/null +++ b/internal/store/player.go @@ -0,0 +1,28 @@ +package store + +import ( + "context" + + "github.com/pkg/errors" + "gorm.io/gorm" +) + +func (s *Store) UpsertPlayer(ctx context.Context, player *Player) error { + return errors.WithStack(s.Do(ctx, func(db *gorm.DB) error { + var existing *Player + err := db.Find(&existing, "user_id = ? and user_provider = ?", player.UserID, player.UserProvider).Error + if err != nil && !errors.Is(err, gorm.ErrRecordNotFound) { + return errors.WithStack(err) + } + + if existing != nil { + player.Model = existing.Model + } + + if err := db.Save(player).Error; err != nil { + return errors.WithStack(err) + } + + return nil + })) +} diff --git a/internal/store/quiz.go b/internal/store/quiz.go new file mode 100644 index 0000000..bd2ab73 --- /dev/null +++ b/internal/store/quiz.go @@ -0,0 +1,114 @@ +package store + +import ( + "context" + "math/rand/v2" + "time" + + "github.com/pkg/errors" + "gorm.io/gorm" +) + +func (s *Store) UpsertQuizCategory(ctx context.Context, category *QuizCategory) error { + return errors.WithStack(s.Do(ctx, func(db *gorm.DB) error { + var existing *QuizCategory + err := db.Find(&existing, "name = ? and theme = ?", category.Name, category.Theme).Error + if err != nil && !errors.Is(err, gorm.ErrRecordNotFound) { + return errors.WithStack(err) + } + + if existing != nil { + category.Model = existing.Model + } + + if err := db.Save(category).Error; err != nil { + return errors.WithStack(err) + } + + return nil + })) +} + +func (s *Store) UpsertQuizEntry(ctx context.Context, entry *QuizEntry) error { + return errors.WithStack(s.Do(ctx, func(db *gorm.DB) error { + var existing *QuizEntry + err := db.Find(&existing, "provider = ? and provider_id = ?", entry.Provider, entry.ProviderID).Error + if err != nil && !errors.Is(err, gorm.ErrRecordNotFound) { + return errors.WithStack(err) + } + + if existing != nil { + entry.Model = existing.Model + } + + if err := db.Save(entry).Error; err != nil { + return errors.WithStack(err) + } + + return nil + })) +} + +func (s *Store) GetQuizTurn(ctx context.Context, playInterval time.Duration) (*QuizTurn, error) { + var quizTurn *QuizTurn + err := s.Tx(ctx, func(tx *gorm.DB) error { + now := time.Now().UTC() + + err := tx.Model(&quizTurn).Preload("Entries").Preload("Entries.Category").Order("ended_at DESC").First(&quizTurn, "ended_at >= ?", now).Error + if err != nil && !errors.Is(err, gorm.ErrRecordNotFound) { + return errors.WithStack(err) + } + + if quizTurn != nil && quizTurn.ID != 0 { + return nil + } + + quizTurn = &QuizTurn{ + StartedAt: now.Round(time.Hour), + EndedAt: now.Add(playInterval).Round(time.Hour), + } + + alreadyUsed := make([]uint, 0) + err = tx.Table("quiz_turn_entries").Pluck("quiz_entry_id", &alreadyUsed).Error + if err != nil { + return errors.WithStack(err) + } + + query := tx.Model(&QuizEntry{}) + + if len(alreadyUsed) > 0 { + query = query.Where("id NOT IN ?", alreadyUsed) + } + + var entryIDs []uint + err = query.Pluck("id", &entryIDs).Error + if err != nil { + return errors.WithStack(err) + } + + for range 3 { + index := rand.IntN(len(entryIDs)) + quizTurn.Entries = append(quizTurn.Entries, &QuizEntry{ + Model: gorm.Model{ + ID: entryIDs[index], + }, + }) + } + + if err := tx.Save(quizTurn).Error; err != nil { + return errors.WithStack(err) + } + + err = tx.Model(&QuizTurn{}).Preload("Entries").Preload("Entries.Category").First(&quizTurn).Error + if err != nil { + return errors.WithStack(err) + } + + return nil + }) + if err != nil { + return nil, errors.WithStack(err) + } + + return quizTurn, nil +} diff --git a/internal/store/store.go b/internal/store/store.go index f8c9bda..ad23dfa 100644 --- a/internal/store/store.go +++ b/internal/store/store.go @@ -2,6 +2,7 @@ package store import ( "context" + "database/sql" "sync" "github.com/pkg/errors" @@ -31,6 +32,21 @@ func (s *Store) Do(ctx context.Context, fn func(db *gorm.DB) error) error { return nil } +func (s *Store) Tx(ctx context.Context, fn func(db *gorm.DB) error, opts ...*sql.TxOptions) error { + return errors.WithStack(s.Do(ctx, func(db *gorm.DB) error { + err := db.Transaction(func(tx *gorm.DB) error { + if err := fn(tx); err != nil { + return errors.WithStack(err) + } + return nil + }, opts...) + if err != nil { + return errors.WithStack(err) + } + return nil + })) +} + func createGetDatabase(db *gorm.DB) func(ctx context.Context) (*gorm.DB, error) { var ( migrateOnce sync.Once diff --git a/internal/store/types.go b/internal/store/types.go new file mode 100644 index 0000000..a635ede --- /dev/null +++ b/internal/store/types.go @@ -0,0 +1,27 @@ +package store + +import ( + "database/sql/driver" + "errors" + "strings" +) + +type StringSlice []string + +func (s StringSlice) Scan(src any) error { + bytes, ok := src.([]byte) + if !ok { + return errors.New("src value cannot cast to []byte") + } + + s = strings.Split(string(bytes), "|") + return nil +} + +func (s StringSlice) Value() (driver.Value, error) { + if len(s) == 0 { + return nil, nil + } + + return strings.Join(s, "|"), nil +} diff --git a/misc/quiz/openquizzdb/biere.json b/misc/quiz/openquizzdb/biere.json new file mode 100644 index 0000000..5be84b9 --- /dev/null +++ b/misc/quiz/openquizzdb/biere.json @@ -0,0 +1,2251 @@ +{ + "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": "2021-02-11", + "catégorie-nom-slogan": { + "fr": { + "catégorie": "Vie quotidienne", + "nom": "Bières belges", + "slogan": "Patrimoine exporté dans le monde entier" + }, + "en": { + "catégorie": "Everyday life", + "nom": "Belgian beers", + "slogan": "Heritage exported around the world" + }, + "es": { + "catégorie": "Vida cotidiana", + "nom": "Cervezas belgas", + "slogan": "Patrimonio exportado en todo el mundo" + }, + "it": { + "catégorie": "Vita di ogni giorno", + "nom": "Birre belghe", + "slogan": "Patrimonio esportato nel mondo" + }, + "de": { + "catégorie": "Alltagsleben", + "nom": "Belgische Biere", + "slogan": "Erbe in die ganze Welt exportiert" + }, + "nl": { + "catégorie": "Alledaagse leven", + "nom": "Belgische bieren", + "slogan": "Erfgoed geëxporteerd over de hele wereld" + } + }, + "quizz": { + "fr": { + "débutant": [ + { + "id": 1, + "question": "Quelle bière belge est fabriquée en ajoutant des cerises acides au lambic ?", + "propositions": [ + "Keystone", + "Kronenbourg", + "Kriek", + "Kwak" + ], + "réponse": "Kriek", + "anecdote": "Le nom Kriek provient du mot néerlandais kersen, qui signifie cerise, car cette bière est en effet brassée avec des cerises griottes." + }, + { + "id": 2, + "question": "Laquelle de ces propositions ne désigne pas une couleur de bière belge ?", + "propositions": [ + "Noire", + "Rouge", + "Blonde", + "Ambrée" + ], + "réponse": "Rouge", + "anecdote": "Avec plus de 1 500 types de bières, la Belgique possède une incroyable richesse brassicole, remontant même à plusieurs siècles." + }, + { + "id": 3, + "question": "Quelle bière belge, produit phare de la brasserie Dubuisson, titre 12 % ?", + "propositions": [ + "Bush", + "Stella", + "Tongerlo", + "Mort Subite" + ], + "réponse": "Bush", + "anecdote": "Bière ambrée forte (12 % ABV), la Bush 12 est particulièrement appréciée pour sa richesse, sa complexité et son caractère puissant." + }, + { + "id": 4, + "question": "Quel label figure sur une bouteille de Leffe, développée en de nombreuses variétés ?", + "propositions": [ + "Trappiste", + "Bière d'Abbaye", + "Bière Bio", + "Swiss Made" + ], + "réponse": "Bière d'Abbaye", + "anecdote": "Du nom d'un quartier de Dinant dans la vallée de la Meuse, la bière de Leffe fait partie de la variété spécifique des bières d'abbaye." + }, + { + "id": 5, + "question": "Laquelle de ces bières belges se boit dans un verre soutenu par un socle en bois ?", + "propositions": [ + "Lupulus", + "Duvel", + "Bacchus", + "Kwak" + ], + "réponse": "Kwak", + "anecdote": "La légende veut que le nom de la Kwak provienne du bruit que l'on entend quand on boit son verre spécifiquement conçu cul-sec." + }, + { + "id": 6, + "question": "Quel système de bouchon est utilisé sur les bouteilles de Quintine ?", + "propositions": [ + "De liège", + "Mécanique", + "À visser", + "À capsule" + ], + "réponse": "Mécanique", + "anecdote": "La Quintine est une bière artisanale de style Belgian Strong Ale, caractérisée par son goût assez puissant et ses arômes diversifiés." + }, + { + "id": 7, + "question": "Quelle bière belge conserve son statut de référence au pays des blanches ?", + "propositions": [ + "Corsendonk", + "Floreffe", + "Hoegaarden", + "Bacchus" + ], + "réponse": "Hoegaarden", + "anecdote": "Selon une certaine croyance populaire forte, la bière Hoegaarden est souvent citée comme étant la première des bières blanches." + }, + { + "id": 8, + "question": "Quel intrus se cache parmi ces bières de Chimay, ni filtrées ni pasteurisées ?", + "propositions": [ + "Rosée", + "Blanche", + "Rouge", + "Bleue" + ], + "réponse": "Rosée", + "anecdote": "La Chimay incarne la tradition des bières trappistes, c'est-à-dire des bières brassées dans ou près d'une abbaye par des moines." + }, + { + "id": 9, + "question": "Laquelle de ces bières belges se présente dans une bouteille de forme ovale ?", + "propositions": [ + "Kriek", + "Orval", + "Leffe", + "Bush" + ], + "réponse": "Orval", + "anecdote": "Brassée près de Florenville, l'Orval se caractérise par une amertume assez forte et gagne à mûrir en cave pendant quelques mois." + }, + { + "id": 10, + "question": "Laquelle de ces bières belges, moins connue du grand public, est aromatisée au miel ?", + "propositions": [ + "Barbar", + "Ename", + "Caracole", + "Affligem" + ], + "réponse": "Barbar", + "anecdote": "La Barbar est considérée par de nombreux amateurs de bières comme étant le repos du guerrier, avec une légère touche de miel." + } + ], + "confirmé": [ + { + "id": 11, + "question": "La Gauloise est une bière belge dont la bouteille propose quelle contenance ?", + "propositions": [ + "33 cl", + "75 cl", + "25 cl", + "50 cl" + ], + "réponse": "33 cl", + "anecdote": "Cette bière belge, à l'équilibre entre saveurs douces et amères, tire son nom et son image de l'héritage historique des Gaulois." + }, + { + "id": 12, + "question": "Quel intrus se cache parmi ces bières de Rochefort, brassées en abbaye depuis 1595 ?", + "propositions": [ + "Rochefort 8", + "Rochefort 10", + "Rochefort 6", + "Rochefort 12" + ], + "réponse": "Rochefort 12", + "anecdote": "À Rochefort, la production annuelle est volontairement contrôlée pour respecter l'équilibre des activités religieuses des moines." + }, + { + "id": 13, + "question": "Quel roi de Sardaigne possède, en Belgique, une bière blonde dorée ?", + "propositions": [ + "Ferdinand Ier", + "Philippe II", + "Charles Quint", + "Charles VI" + ], + "réponse": "Charles Quint", + "anecdote": "Qu'il s'agisse de la version Golden, légère et fruitée, ou de la Cuvee, plus riche, elle représente l'excellence des bières belges." + }, + { + "id": 14, + "question": "Laquelle de ces villes de Belgique possède une cuvée de bière blonde ?", + "propositions": [ + "Verviers", + "Couvin", + "Waremme", + "Ciney" + ], + "réponse": "Ciney", + "anecdote": "La brasserie de Ciney, dans la région de la province de Namur, a été fondée en 1956 sous le nom initial de Brasserie des Fagnes." + }, + { + "id": 15, + "question": "La Delirium Tremens présente sur sa bouteille une étiquette de quelle couleur ?", + "propositions": [ + "Rouge", + "Verte", + "Jaune", + "Bleue" + ], + "réponse": "Bleue", + "anecdote": "En 1992, la Confrérie de l'Éléphant Rose a été créée pour promouvoir la Delirium Tremens et célébrer les autres bières de Melle." + }, + { + "id": 16, + "question": "Laquelle de ces bières belges existe en version classique ainsi qu'en version biologique ?", + "propositions": [ + "Chimay", + "Duvel", + "Barbar", + "Moinette" + ], + "réponse": "Moinette", + "anecdote": "La Moinette est une bière de fermentation haute, à la mousse abondante, à l'arôme malté et houblonné, et au goût amer." + }, + { + "id": 17, + "question": "Quelle bière belge, produite dans la province du Hainaut, contient de la vitamine C ?", + "propositions": [ + "Orval", + "Chimay", + "Rochefort 10", + "St Feuillien" + ], + "réponse": "St Feuillien", + "anecdote": "Les bières St-Feuillien sont souvent refermentées en bouteille pour développer davantage de saveurs et améliorer leur pérennité." + }, + { + "id": 18, + "question": "Quelle bière annoncée comme blanche a pourtant une couleur presque ambrée ?", + "propositions": [ + "Westmalle", + "St. Bernardus", + "Grimbergen", + "Vedett" + ], + "réponse": "Grimbergen", + "anecdote": "L'abbaye de Grimbergen, fondée au XIIe siècle, a été le lieu d'origine de la bière, bien qu'elle ne soit plus réalisée par des moines." + }, + { + "id": 19, + "question": "Quelle bière belge désigne aussi une chanson interprétée par Lady Gaga ?", + "propositions": [ + "Jupiler", + "Jever", + "Jopen", + "Judas" + ], + "réponse": "Judas", + "anecdote": "Bien que relativement récente, la Judas a su se faire un nom dans les bars, en raison de sa qualité constante et de son goût distinctif." + }, + { + "id": 20, + "question": "Quelle bière belge est reconnaissable grâce à son lutin au bonnet rouge ?", + "propositions": [ + "La Maes", + "La Chouffe", + "La Barbar", + "La Durboyse" + ], + "réponse": "La Chouffe", + "anecdote": "L'arôme très particulier de la Chouffe mélange à la fois des épices comme la coriandre, l'écorce d'orange, et aussi la pomme acide." + } + ], + "expert": [ + { + "id": 21, + "question": "Quel type de bière de fermentation spontanée est produite au sud de Bruxelles ?", + "propositions": [ + "Triple", + "Lambic", + "Stout", + "Pils" + ], + "réponse": "Lambic", + "anecdote": "La lambic est une bière plus ou moins acide selon son âge, sans pétillant ni mousse, titrant souvent entre cinq et six degrés d'alcool." + }, + { + "id": 22, + "question": "Quelle brasserie belge produit la Brigand, bière ambrée à fermentation haute ?", + "propositions": [ + "Van Steenberge", + "Liefmans", + "Bosteels", + "Van Honsebrouck" + ], + "réponse": "Van Honsebrouck", + "anecdote": "Située à Ingelmunster, on brasse chez Van Honsebrouck les marques de bières Kasteel, St-Louis, Brigand et Bacchus." + }, + { + "id": 23, + "question": "Quelle bière belge présente un escargot étrange sur son étiquette ?", + "propositions": [ + "Gordon", + "Caracole", + "Moinette", + "Rochefort" + ], + "réponse": "Caracole", + "anecdote": "Le nom Caracole vient de l'escargot, un symbole local qui reflète l'importance de la lenteur et de la patience dans le brassage." + }, + { + "id": 24, + "question": "Quel animal blanc est utilisé comme logo de la bière Palm ?", + "propositions": [ + "Cheval", + "Lion", + "Éléphant", + "Ours" + ], + "réponse": "Cheval", + "anecdote": "L'histoire de Palm commence en 1597 par la signature d'un acte de vente d'une ferme, ce qui explique le choix significatif du logo." + }, + { + "id": 25, + "question": "Laquelle de ces propositions désigne une bière belge ambrée ?", + "propositions": [ + "Saison 1800", + "Saison 1900", + "Saison 1700", + "Saison 1600" + ], + "réponse": "Saison 1900", + "anecdote": "La Saison 1900 rend hommage à une époque marquée par l'essor industriel et la popularisation des bières saison en Belgique." + }, + { + "id": 26, + "question": "Laquelle de ces bières belges possède un label biologique ?", + "propositions": [ + "Blanche du Hainaut", + "Affligem", + "Ciney", + "Zulte" + ], + "réponse": "Blanche du Hainaut", + "anecdote": "La Brasserie Dupont est une entreprise belge établie à Tourpes dans la commune de Leuze-en-Hainaut, au centre du Hainaut." + }, + { + "id": 27, + "question": "La Troublette, brassée près de la ville de Dinant, est une bière de quelle couleur ?", + "propositions": [ + "Ambrée", + "Blanche", + "Noire", + "Brune" + ], + "réponse": "Blanche", + "anecdote": "La Troublette fait partie des bières de blé de type wheat beer, au goût frais et léger, idéale à déguster lors des journées chaudes." + }, + { + "id": 28, + "question": "Quelle bière belge est réputée comme étant une « bière vivante », selon le slogan ?", + "propositions": [ + "Bon Secours", + "Grimbergen", + "Charles Quint", + "St Feuillien" + ], + "réponse": "Bon Secours", + "anecdote": "La gamme de bières Bon Secours est une gamme de bières artisanales belges de type bière d'abbaye, à fermentation haute." + }, + { + "id": 29, + "question": "Laquelle de ces bières belges sort tout droit de la brasserie Roman ?", + "propositions": [ + "Rochefort", + "Moinette", + "Ename", + "Caracole" + ], + "réponse": "Ename", + "anecdote": "La brasserie Roman paie une redevance annuelle au musée de la ville d'Ename pour l'utilisation de l'appellation Abbaye d'Ename." + }, + { + "id": 30, + "question": "Quelle bière belge affiche un géant sur ses étiquettes ?", + "propositions": [ + "Gouyasse", + "Rochefort", + "Judas", + "Palm" + ], + "réponse": "Gouyasse", + "anecdote": "La brasserie se visite en cinquante minutes et se termine par la dégustation d'une bonne bière au choix, parmi les bières brassées." + } + ] + }, + "en": { + "débutant": [ + { + "id": 1, + "question": "Which Belgian beer is made by adding sour cherries to lambic ?", + "propositions": [ + "Kriek", + "Duvel", + "Leffe", + "Chimay" + ], + "réponse": "Kriek", + "anecdote": "In the past, some breweries produced krieks made from a mixture of lagers (or pils) and cherries." + }, + { + "id": 2, + "question": "Which of the following does not designate a color of Belgian beer ?", + "propositions": [ + "Blonde", + "Amber", + "Black", + "Red" + ], + "réponse": "Red", + "anecdote": "Beer is a drink obtained by fermentation of cereals, generally barley grains." + }, + { + "id": 3, + "question": "Which Belgian beer, flagship product of the Dubuisson brewery, 12 % content ?", + "propositions": [ + "Bush", + "Sudden Death", + "Tongerlo", + "Stella" + ], + "réponse": "Bush", + "anecdote": "Also called Bush 12, we can read on its label that it is the strongest beer in Belgium." + }, + { + "id": 4, + "question": "What label appears on a bottle of Leffe, developed in many varieties ?", + "propositions": [ + "Organic beer", + "Abbey beer", + "Swiss Made", + "Trappist" + ], + "réponse": "Abbey beer", + "anecdote": "Named after a district of Dinant in the Meuse valley, Leffe beer is part of the variety of abbey beers." + }, + { + "id": 5, + "question": "Which Belgian beer should be drunk in a glass supported by a wooden base ?", + "propositions": [ + "Bacchus", + "Duvel", + "Lupulus", + "Kwak" + ], + "réponse": "Kwak", + "anecdote": "Legend has it that the name of the Kwak comes from the noise you hear when you drink your glass dry." + }, + { + "id": 6, + "question": "What capping system is used on Quintine bottles ?", + "propositions": [ + "Capsule", + "To screw", + "Of cork", + "Mechanics" + ], + "réponse": "Mechanics", + "anecdote": "The Brasserie Ellezelloise produces several craft beers, including Quintine." + }, + { + "id": 7, + "question": "Which Belgian beer retains its reference status in the land of white people ?", + "propositions": [ + "Corsendonk", + "Bacchus", + "Hoegaarden", + "Floreffe" + ], + "réponse": "Hoegaarden", + "anecdote": "According to some popular belief, Hoegaarden beer is often cited as the first white beer." + }, + { + "id": 8, + "question": "What intruder is hiding among these Chimay beers, neither filtered nor pasteurized ?", + "propositions": [ + "Dew", + "White", + "Red", + "Blue" + ], + "réponse": "Dew", + "anecdote": "Chimay is a Belgian Trappist beer, produced at Notre-Dame de Scourmont Abbey." + }, + { + "id": 9, + "question": "Which of these Belgian beers comes in an oval-shaped bottle ?", + "propositions": [ + "Bush", + "Leffe", + "Orval", + "Kriek" + ], + "réponse": "Orval", + "anecdote": "Orval is characterized by a fairly strong bitterness and benefits from aging in the cellar for a few months." + }, + { + "id": 10, + "question": "Which of these Belgian beers, less known to the general public, is flavored with honey ?", + "propositions": [ + "Affligem", + "Ename", + "Caracole", + "Barbar" + ], + "réponse": "Barbar", + "anecdote": "La Barbar is considered by many beer lovers to be the warrior's rest." + } + ], + "confirmé": [ + { + "id": 11, + "question": "La Gauloise is a Belgian beer whose bottle offers what capacity ?", + "propositions": [ + "50 cl", + "75 cl", + "25 cl", + "33 cl" + ], + "réponse": "33 cl", + "anecdote": "The Bocq brewery is a Belgian brewery located in Purnode, in the commune of Yvoir in Belgium." + }, + { + "id": 12, + "question": "Who is the intruder hiding among these Rochefort beers, brewed in the abbey since 1595 ?", + "propositions": [ + "Rochefort 12", + "Rochefort 10", + "Rochefort 6", + "Rochefort 8" + ], + "réponse": "Rochefort 12", + "anecdote": "In Rochefort, the quantity of beer produced is voluntarily limited to 300 hectoliters per week." + }, + { + "id": 13, + "question": "Which king of Sardinia has a golden blond beer in Belgium ?", + "propositions": [ + "Philip II", + "Ferdinand I", + "Charles VI", + "Charles V" + ], + "réponse": "Charles V", + "anecdote": "The Haacht brewery, which produces Charles V, is a Belgian brewery located in the province of Flemish Brabant." + }, + { + "id": 14, + "question": "Which of these cities in Belgium has a cuvée of blond beer ?", + "propositions": [ + "Couvin", + "Ciney", + "Waremme", + "Verviers" + ], + "réponse": "Ciney", + "anecdote": "There are three types of Ciney beers: Ciney Blonde, Ciney Brune and Ciney Spéciale." + }, + { + "id": 15, + "question": "What color does Delirium Tremens have on its bottle ?", + "propositions": [ + "Yellow", + "Blue", + "Green", + "Red" + ], + "réponse": "Blue", + "anecdote": "In 1992, the Brotherhood of the Pink Elephant was created to promote Delirium Tremens and other Melle beers." + }, + { + "id": 16, + "question": "Which of these Belgian beers is available in a classic version as well as an organic version ?", + "propositions": [ + "Chimay", + "Barbar", + "Duvel", + "Moinette" + ], + "réponse": "Moinette", + "anecdote": "La Moinette is a beer with abundant foam, a malty and hoppy aroma as well as a slightly bitter taste." + }, + { + "id": 17, + "question": "Which Belgian beer, produced in the province of Hainaut, contains vitamin C ?", + "propositions": [ + "Rochefort 10", + "Orval", + "St Feuillien", + "Chimay" + ], + "réponse": "St Feuillien", + "anecdote": "The St Feuillien range is available in four versions, included among the recognized Belgian abbey beers." + }, + { + "id": 18, + "question": "Which beer advertised as white has an almost amber color ?", + "propositions": [ + "Featured", + "St. Bernardus", + "Grimbergen", + "Westmalle" + ], + "réponse": "Grimbergen", + "anecdote": "Grimbergen is a brand of beer of Belgian origin belonging today to the Carlsberg and Heineken groups." + }, + { + "id": 19, + "question": "Which Belgian beer also designates a song performed by Lady Gaga ?", + "propositions": [ + "Hair", + "Bloody Mary", + "Judas", + "Born This Way" + ], + "réponse": "Judas", + "anecdote": "Alken-Maes is a Belgian brewing company created in 1988 when the Maes and Alken breweries merged." + }, + { + "id": 20, + "question": "Which Belgian beer is recognizable thanks to its elf with the red cap ?", + "propositions": [ + "La Maes", + "La Chouffe", + "The Durboyse", + "The Barbar" + ], + "réponse": "La Chouffe", + "anecdote": "The very particular aroma of Chouffe mixes both orange blossom and sour apple." + } + ], + "expert": [ + { + "id": 21, + "question": "Which spontaneous fermentation beer is produced in the south of Brussels ?", + "propositions": [ + "Stout", + "Pils", + "Triple", + "Lambic" + ], + "réponse": "Lambic", + "anecdote": "Lambic is a beer that is more or less acidic depending on its age, without sparkling or foam, containing around five degrees of alcohol." + }, + { + "id": 22, + "question": "Which Belgian brewery produces Brigand, a high fermentation amber beer ?", + "propositions": [ + "Liefmans", + "Van Honsebrouck", + "Bosteels", + "Van Steenberge" + ], + "réponse": "Van Honsebrouck", + "anecdote": "The Kasteel, St-Louis, Brigand and Bacchus beer brands are mainly brewed at Van Honsebrouck." + }, + { + "id": 23, + "question": "Which Belgian beer has a strange snail on its label ?", + "propositions": [ + "Caracole", + "Rochefort", + "Moinette", + "Gordon" + ], + "réponse": "Caracole", + "anecdote": "The annual production of the Caracole brewery is 1600 hl, at the rate of about one brew per week." + }, + { + "id": 24, + "question": "What white animal is used as the logo for Palm beer ?", + "propositions": [ + "A horse", + "A bear", + "An elephant", + "A lion" + ], + "réponse": "A horse", + "anecdote": "The history of Palm begins in 1597 with the signing of a deed of sale for a farm, which explains the choice of the logo." + }, + { + "id": 25, + "question": "Which of the following designates an amber Belgian beer ?", + "propositions": [ + "Season 1800", + "Season 1900", + "Season 1700", + "Season 1600" + ], + "réponse": "Season 1900", + "anecdote": "The Saison 1900, produced by the Lefebvre brewery, is a traditional Walloon beer." + }, + { + "id": 26, + "question": "Which of these Belgian beers has an organic label ?", + "propositions": [ + "Affligem", + "Zulte", + "Blanche du Hainaut", + "Ciney" + ], + "réponse": "Blanche du Hainaut", + "anecdote": "Brasserie Dupont is a Belgian company established in Tourpes in the town of Leuze-en-Hainaut, in the center of western Hainaut." + }, + { + "id": 27, + "question": "La Troublette, brewed near the town of Dinant, is what color beer ?", + "propositions": [ + "White", + "Amber", + "Brunette", + "Black" + ], + "réponse": "White", + "anecdote": "La Troublette is a white beer from the Caracole brewery, light and refreshing, which also exists organically." + }, + { + "id": 28, + "question": "Which Belgian beer is known to be a living beer ?", + "propositions": [ + "Bon Secours", + "St Feuillien", + "Charles V", + "Grimbergen" + ], + "réponse": "Bon Secours", + "anecdote": "The Bon Secours range of beers is a range of Belgian craft beers of the abbey beer type, with high fermentation." + }, + { + "id": 29, + "question": "Which of these Belgian beers comes straight from the Roman brewery ?", + "propositions": [ + "Rochefort", + "Caracole", + "Moinette", + "Ename" + ], + "réponse": "Ename", + "anecdote": "The Roman brewery pays a royalty to the museum of the town of Ename for the use of the appellation Abbaye d'Ename." + }, + { + "id": 30, + "question": "Which Belgian beer has a giant on its labels ?", + "propositions": [ + "Judas", + "Gouyasse", + "Palm", + "Rochefort" + ], + "réponse": "Gouyasse", + "anecdote": "The brewery can be visited in 50 minutes and ends with the tasting of a beer of your choice among the beers brewed." + } + ] + }, + "de": { + "débutant": [ + { + "id": 1, + "question": "Welches belgische Bier wird durch Zugabe von Sauerkirschen zu Lambic hergestellt ?", + "propositions": [ + "Duvel", + "Chimay", + "Leffe", + "Kriek" + ], + "réponse": "Kriek", + "anecdote": "In der Vergangenheit produzierten einige Brauereien Krieks aus einer Mischung von Lagern (oder Pils) und Kirschen." + }, + { + "id": 2, + "question": "Welche der folgenden Angaben kennzeichnet keine belgische Bierfarbe ?", + "propositions": [ + "Bernstein", + "Schwarz", + "Blond", + "Rot" + ], + "réponse": "Rot", + "anecdote": "Bier ist ein Getränk, das durch Fermentation von Getreide, im Allgemeinen Gerstenkörnern, gewonnen wird." + }, + { + "id": 3, + "question": "Welches belgische Bier, Flaggschiff der Dubuisson-Brauerei, enthält 12 % ?", + "propositions": [ + "Bush", + "Tongerlo", + "Plötzlicher Tod", + "Stella" + ], + "réponse": "Bush", + "anecdote": "Auch Bush 12 genannt, können wir auf seinem Etikett lesen, dass es das stärkste Bier in Belgien ist." + }, + { + "id": 4, + "question": "Welches Etikett befindet sich auf einer Flasche Leffe, die in vielen Sorten entwickelt wurde ?", + "propositions": [ + "Trappist", + "Abteibier", + "Bio-Bier", + "Swiss Made" + ], + "réponse": "Abteibier", + "anecdote": "Das nach einem Stadtteil Dinant im Maastal benannte Leffe-Bier gehört zur Vielfalt der Abteibiere." + }, + { + "id": 5, + "question": "Welches belgische Bier sollte in einem Glas getrunken werden, das von einem Holzsockel getragen wird ?", + "propositions": [ + "Lupulus", + "Kwak", + "Bacchus", + "Duvel" + ], + "réponse": "Kwak", + "anecdote": "Die Legende besagt, dass der Name des Kwak von dem Geräusch herrührt, das Sie hören, wenn Sie Ihr Glas trocken trinken." + }, + { + "id": 6, + "question": "Welches Verschlusssystem wird bei Quintine-Flaschen verwendet ?", + "propositions": [ + "Aus Kork", + "Kapsel", + "Zu schrauben", + "Mechanik" + ], + "réponse": "Mechanik", + "anecdote": "In der Brasserie Ellezelloise werden verschiedene Craft-Biere hergestellt, darunter Quintine." + }, + { + "id": 7, + "question": "Welches belgische Bier behält seinen Referenzstatus im Land der Weißen ?", + "propositions": [ + "Corsendonk", + "Bacchus", + "Hoegaarden", + "Floreffe" + ], + "réponse": "Hoegaarden", + "anecdote": "Nach allgemeiner Meinung wird Hoegaarden-Bier oft als erstes Weißbier bezeichnet." + }, + { + "id": 8, + "question": "Welcher Eindringling versteckt sich unter diesen Chimay-Bieren, weder gefiltert noch pasteurisiert ?", + "propositions": [ + "Blau", + "Tau", + "Rot", + "Weiß" + ], + "réponse": "Tau", + "anecdote": "Chimay ist ein belgisches Trappistenbier, das in der Abtei Notre-Dame de Scourmont hergestellt wird." + }, + { + "id": 9, + "question": "Welches dieser belgischen Biere kommt in einer ovalen Flasche ?", + "propositions": [ + "Leffe", + "Bush", + "Orval", + "Kriek" + ], + "réponse": "Orval", + "anecdote": "Orval zeichnet sich durch eine ziemlich starke Bitterkeit aus und profitiert von einigen Monaten Alterung im Keller." + }, + { + "id": 10, + "question": "Welches dieser weniger bekannten belgischen Biere ist mit Honig aromatisiert ?", + "propositions": [ + "Barbar", + "Ename", + "Affligem", + "Caracole" + ], + "réponse": "Barbar", + "anecdote": "La Barbar wird von vielen Bierliebhabern als die Ruhe des Kriegers angesehen." + } + ], + "confirmé": [ + { + "id": 11, + "question": "La Gauloise ist ein belgisches Bier, dessen Flasche welche Kapazität bietet ?", + "propositions": [ + "50 cl", + "25 cl", + "75 cl", + "33 cl" + ], + "réponse": "33 cl", + "anecdote": "Die Bocq-Brauerei ist eine belgische Brauerei in Purnode in der Gemeinde Yvoir in Belgien." + }, + { + "id": 12, + "question": "Welcher Eindringling versteckt sich unter diesen Rochefort-Bieren, die seit 1595 in der Abtei gebraut werden ?", + "propositions": [ + "Rochefort 8", + "Rochefort 10", + "Rochefort 12", + "Rochefort 6" + ], + "réponse": "Rochefort 12", + "anecdote": "In Rochefort ist die produzierte Biermenge freiwillig auf 300 Hektoliter pro Woche begrenzt." + }, + { + "id": 13, + "question": "Welcher König von Sardinien hat in Belgien ein goldblondes Bier ?", + "propositions": [ + "Charles VI", + "Ferdinand I", + "Philipp II.", + "Charles V" + ], + "réponse": "Charles V", + "anecdote": "Die Haacht-Brauerei, die Charles V produziert, ist eine belgische Brauerei in der Provinz Flämisch-Brabant." + }, + { + "id": 14, + "question": "In welcher dieser belgischen Städte gibt es eine Cuvée mit blondem Bier ?", + "propositions": [ + "Couvin", + "Verviers", + "Ciney", + "Waremme" + ], + "réponse": "Ciney", + "anecdote": "Es gibt drei Arten von Ciney-Bieren: Ciney Blonde, Ciney Brune und Ciney Spéciale." + }, + { + "id": 15, + "question": "Welche Farbe hat Delirium Tremens auf seiner Flasche ?", + "propositions": [ + "Rot", + "Blau", + "Grün", + "Gelb" + ], + "réponse": "Blau", + "anecdote": "1992 wurde die Bruderschaft des rosa Elefanten gegründet, um Delirium Tremens und andere Melle-Biere zu fördern." + }, + { + "id": 16, + "question": "Welches dieser belgischen Biere ist sowohl in klassischer als auch in Bio-Version erhältlich ?", + "propositions": [ + "Moinette", + "Barbar", + "Duvel", + "Chimay" + ], + "réponse": "Moinette", + "anecdote": "La Moinette ist ein Bier mit reichlich Schaum, einem malzigen und hopfenreichen Aroma sowie einem leicht bitteren Geschmack." + }, + { + "id": 17, + "question": "Welches belgische Bier, das in der Provinz Hennegau hergestellt wird, enthält Vitamin C ?", + "propositions": [ + "St. Feuillien", + "Rochefort 10", + "Orval", + "Chimay" + ], + "réponse": "St. Feuillien", + "anecdote": "Das St Feuillien-Sortiment ist in vier Versionen erhältlich, die zu den anerkannten belgischen Abteibieren gehören." + }, + { + "id": 18, + "question": "Welches als Weiß beworbene Bier hat eine fast bernsteinfarbene Farbe ?", + "propositions": [ + "St. Bernardus", + "Westmalle", + "Grimbergen", + "Vorgestellt" + ], + "réponse": "Grimbergen", + "anecdote": "Grimbergen ist eine Biermarke belgischen Ursprungs, die heute zu den Gruppen Carlsberg und Heineken gehört." + }, + { + "id": 19, + "question": "Welches belgische Bier bezeichnet auch ein Lied von Lady Gaga ?", + "propositions": [ + "Haare", + "Bloody Mary", + "Judas", + "Auf diese Weise geboren" + ], + "réponse": "Judas", + "anecdote": "Alken-Maes ist eine belgische Brauerei, die 1988 gegründet wurde, als die Brauereien Maes und Alken fusionierten." + }, + { + "id": 20, + "question": "Welches belgische Bier ist an seinem Elfen mit der roten Kappe zu erkennen ?", + "propositions": [ + "La Chouffe", + "Die Durboyse", + "Der Barbar", + "La Maes" + ], + "réponse": "La Chouffe", + "anecdote": "Das besondere Aroma von Chouffe mischt sowohl Orangenblüte als auch sauren Apfel." + } + ], + "expert": [ + { + "id": 21, + "question": "Welches spontane Fermentationsbier wird im Süden von Brüssel hergestellt ?", + "propositions": [ + "Pils", + "Lambic", + "Dreifach", + "Stout" + ], + "réponse": "Lambic", + "anecdote": "Lambic ist ein Bier, das je nach Alter mehr oder weniger sauer ist, ohne Schaumbildung oder Schaum, das etwa fünf Grad Alkohol enthält." + }, + { + "id": 22, + "question": "Welche belgische Brauerei produziert Brigand, ein hochgäriges Bernsteinbier ?", + "propositions": [ + "Liefmans", + "Bosteels", + "Van Honsebrouck", + "Van Steenberge" + ], + "réponse": "Van Honsebrouck", + "anecdote": "Die Biermarken Kasteel, St-Louis, Brigand und Bacchus werden hauptsächlich in Van Honsebrouck gebraut." + }, + { + "id": 23, + "question": "Welches belgische Bier hat eine seltsame Schnecke auf dem Etikett ?", + "propositions": [ + "Rochefort", + "Moinette", + "Caracole", + "Gordon" + ], + "réponse": "Caracole", + "anecdote": "Die jährliche Produktion der Caracole-Brauerei beträgt 1600 hl, was einer Rate von etwa einem Gebräu pro Woche entspricht." + }, + { + "id": 24, + "question": "Welches weiße Tier wird als Logo für Palmbier verwendet ?", + "propositions": [ + "Ein Löwe", + "Ein Pferd", + "Ein Bär", + "Ein Elefant" + ], + "réponse": "Ein Pferd", + "anecdote": "Die Geschichte von Palm beginnt 1597 mit der Unterzeichnung einer Kaufurkunde für eine Farm, die die Wahl des Logos erklärt." + }, + { + "id": 25, + "question": "Welches der folgenden Merkmale kennzeichnet ein bernsteinfarbenes belgisches Bier ?", + "propositions": [ + "Saison 1900", + "Staffel 1800", + "Staffel 1700", + "Staffel 1600" + ], + "réponse": "Saison 1900", + "anecdote": "Die Saison 1900 der Brauerei Lefebvre ist ein traditionelles wallonisches Bier." + }, + { + "id": 26, + "question": "Welches dieser belgischen Biere hat ein Bio-Label ?", + "propositions": [ + "Blanche du Hainaut", + "Affligem", + "Ciney", + "Zulte" + ], + "réponse": "Blanche du Hainaut", + "anecdote": "Die Brasserie Dupont ist ein belgisches Unternehmen mit Sitz in Tourpes in der Stadt Leuze-en-Hainaut im Zentrum des westlichen Hennegau." + }, + { + "id": 27, + "question": "La Troublette, in der Nähe der Stadt Dinant gebraut, hat welche Farbe Bier ?", + "propositions": [ + "Bernstein", + "Weiß", + "Schwarz", + "Brünette" + ], + "réponse": "Weiß", + "anecdote": "La Troublette ist ein leichtes und erfrischendes Weißbier aus der Caracole-Brauerei, das auch biologisch erhältlich ist." + }, + { + "id": 28, + "question": "Welches belgische Bier ist als lebendes Bier bekannt ?", + "propositions": [ + "St. Feuillien", + "Grimbergen", + "Bon Secours", + "Charles V" + ], + "réponse": "Bon Secours", + "anecdote": "Die Bierserie Bon Secours ist eine Reihe belgischer Craft-Biere vom Typ Abbey Beer mit hoher Gärung." + }, + { + "id": 29, + "question": "Welches dieser belgischen Biere stammt direkt aus der römischen Brauerei ?", + "propositions": [ + "Caracole", + "Ename", + "Rochefort", + "Moinette" + ], + "réponse": "Ename", + "anecdote": "Die römische Brauerei zahlt dem Museum der Stadt Ename eine Lizenzgebühr für die Verwendung der Bezeichnung Abbaye d'Ename." + }, + { + "id": 30, + "question": "Welches belgische Bier hat einen Riesen auf seinen Etiketten ?", + "propositions": [ + "Palm", + "Gouyasse", + "Rochefort", + "Judas" + ], + "réponse": "Gouyasse", + "anecdote": "Die Brauerei kann in 50 Minuten besichtigt werden und endet mit der Verkostung eines Bieres Ihrer Wahl unter den gebrauten Bieren." + } + ] + }, + "es": { + "débutant": [ + { + "id": 1, + "question": "¿Qué cerveza belga se elabora agregando guindas a la lambic ?", + "propositions": [ + "Leffe", + "Chimay", + "Duvel", + "Kriek" + ], + "réponse": "Kriek", + "anecdote": "En el pasado, algunas cervecerías producían krieks elaborados con una mezcla de lagers (o pils) y cerezas." + }, + { + "id": 2, + "question": "¿Cuál de los siguientes no designa un color de cerveza belga ?", + "propositions": [ + "Rubia", + "Negro", + "Ámbar", + "Rojo" + ], + "réponse": "Rojo", + "anecdote": "La cerveza es una bebida obtenida por fermentación de cereales, generalmente granos de cebada." + }, + { + "id": 3, + "question": "¿Qué cerveza belga, producto estrella de la cervecería Dubuisson, 12 % de contenido ?", + "propositions": [ + "Muerte súbita", + "Tongerlo", + "Bush", + "Stella" + ], + "réponse": "Bush", + "anecdote": "También llamada Bush 12, podemos leer en su etiqueta que es la cerveza más fuerte de Bélgica." + }, + { + "id": 4, + "question": "¿Qué etiqueta aparece en una botella de Leffe, desarrollada en muchas variedades ?", + "propositions": [ + "Cerveza Abbey", + "Cerveza ecológica", + "Trapense", + "Fabricado en Suiza" + ], + "réponse": "Cerveza Abbey", + "anecdote": "La cerveza Leffe, que lleva el nombre de un distrito de Dinant en el valle del Mosa, forma parte de la variedad de cervezas de abadía." + }, + { + "id": 5, + "question": "¿Qué cerveza belga se debe beber en un vaso sostenido por una base de madera ?", + "propositions": [ + "Duvel", + "Baco", + "Lupulus", + "Kwak" + ], + "réponse": "Kwak", + "anecdote": "Cuenta la leyenda que el nombre del Kwak proviene del ruido que escuchas cuando bebes tu vaso seco." + }, + { + "id": 6, + "question": "¿Qué sistema de taponado se utiliza en las botellas de Quintine ?", + "propositions": [ + "Para atornillar", + "De corcho", + "Cápsula ", + "À capsule", + "Mecánica" + ], + "réponse": "Mecánica", + "anecdote": "La Brasserie Ellezelloise produce varias cervezas artesanales, incluida Quintine." + }, + { + "id": 7, + "question": "¿Qué cerveza belga conserva su estatus de referencia en la tierra de los blancos ?", + "propositions": [ + "Hoegaarden", + "Corsendonk", + "Baco", + "Floreffe" + ], + "réponse": "Hoegaarden", + "anecdote": "Según algunas creencias populares, la cerveza Hoegaarden a menudo se cita como la primera cerveza blanca." + }, + { + "id": 8, + "question": "¿Qué intruso se esconde entre estas cervezas de Chimay, ni filtradas ni pasteurizadas ?", + "propositions": [ + "Azul", + "Rojo", + "Rocío", + "Blanco" + ], + "réponse": "Rocío", + "anecdote": "Chimay es una cerveza trapense belga, producida en la abadía de Notre-Dame de Scourmont." + }, + { + "id": 9, + "question": "¿Cuál de estas cervezas belgas viene en una botella de forma ovalada ?", + "propositions": [ + "Orval", + "Kriek", + "Leffe", + "Bush" + ], + "réponse": "Orval", + "anecdote": "Orval se caracteriza por un amargor bastante fuerte y se beneficia de la crianza en bodega durante unos meses." + }, + { + "id": 10, + "question": "¿Cuál de estas cervezas belgas, menos conocidas por el público en general, está aromatizada con miel ?", + "propositions": [ + "Caracole", + "Affligem", + "Barbar", + "Ename" + ], + "réponse": "Barbar", + "anecdote": "La Barbar es considerada por muchos amantes de la cerveza como el descanso del guerrero." + } + ], + "confirmé": [ + { + "id": 11, + "question": "La Gauloise es una cerveza belga cuya botella ofrece ¿qué capacidad ?", + "propositions": [ + "25 cl", + "75 cl", + "50 cl", + "33 cl" + ], + "réponse": "33 cl", + "anecdote": "La cervecería Bocq es una fábrica de cerveza belga ubicada en Purnode, en la comuna de Yvoir en Bélgica." + }, + { + "id": 12, + "question": "¿Quién es el intruso que se esconde entre estas cervezas Rochefort, elaboradas en la abadía desde 1595 ?", + "propositions": [ + "Rochefort 12", + "Rochefort 6", + "Rochefort 10", + "Rochefort 8" + ], + "réponse": "Rochefort 12", + "anecdote": "En Rochefort, la cantidad de cerveza producida se limita voluntariamente a 300 hectolitros por semana." + }, + { + "id": 13, + "question": "¿Qué rey de Cerdeña tiene una cerveza rubia dorada en Bélgica ?", + "propositions": [ + "Charles VI", + "Carlos V", + "Felipe II", + "Ferdinand I" + ], + "réponse": "Carlos V", + "anecdote": "La fábrica de cerveza Haacht, que produce Carlos V, es una fábrica de cerveza belga ubicada en la provincia de Brabante Flamenco." + }, + { + "id": 14, + "question": "¿Cuál de estas ciudades de Bélgica tiene una cuvée de cerveza rubia ?", + "propositions": [ + "Couvin", + "Ciney", + "Verviers", + "Waremme" + ], + "réponse": "Ciney", + "anecdote": "Hay tres tipos de cervezas Ciney: Ciney Blonde, Ciney Brune y Ciney Spéciale." + }, + { + "id": 15, + "question": "¿Qué color tiene Delirium Tremens en su botella ?", + "propositions": [ + "Verde", + "Amarillo", + "Azul", + "Rojo" + ], + "réponse": "Azul", + "anecdote": "En 1992, se creó la Hermandad del Elefante Rosa para promover Delirium Tremens y otras cervezas Melle." + }, + { + "id": 16, + "question": "¿Cuál de estas cervezas belgas está disponible en versión clásica y en versión orgánica ?", + "propositions": [ + "Barbar", + "Duvel", + "Chimay", + "Moinette" + ], + "réponse": "Moinette", + "anecdote": "La Moinette es una cerveza con abundante espuma, aroma a malta y lúpulo y un sabor ligeramente amargo." + }, + { + "id": 17, + "question": "¿Qué cerveza belga, producida en la provincia de Hainaut, contiene vitamina C ?", + "propositions": [ + "St Feuillien", + "Orval", + "Rochefort 10", + "Chimay" + ], + "réponse": "St Feuillien", + "anecdote": "La gama St Feuillien está disponible en cuatro versiones, incluidas entre las reconocidas cervezas de abadía belgas." + }, + { + "id": 18, + "question": "¿Qué cerveza anunciada como blanca tiene un color casi ámbar ?", + "propositions": [ + "Destacado", + "Westmalle", + "San Bernardo", + "Grimbergen" + ], + "réponse": "Grimbergen", + "anecdote": "Grimbergen es una marca de cerveza de origen belga que hoy pertenece a los grupos Carlsberg y Heineken." + }, + { + "id": 19, + "question": "¿Qué cerveza belga también designa una canción interpretada por Lady Gaga ?", + "propositions": [ + "Bloody Mary", + "Cabello", + "Judas", + "Nacido de esta manera" + ], + "réponse": "Judas", + "anecdote": "Alken-Maes es una empresa cervecera belga creada en 1988 cuando las fábricas de cerveza Maes y Alken se fusionaron." + }, + { + "id": 20, + "question": "¿Qué cerveza belga es reconocible gracias a su duende con la tapa roja ?", + "propositions": [ + "El Durboyse", + "El Barbar", + "La Chouffe", + "La Maes" + ], + "réponse": "La Chouffe", + "anecdote": "El aroma muy particular de Chouffe mezcla tanto la flor de naranja como la manzana ácida." + } + ], + "expert": [ + { + "id": 21, + "question": "¿Qué cerveza de fermentación espontánea se produce en el sur de Bruselas ?", + "propositions": [ + "Triple", + "Stout", + "Lambic", + "Pils" + ], + "réponse": "Lambic", + "anecdote": "Lambic es una cerveza más o menos ácida según la edad, sin espumosos ni espuma, que contiene alrededor de cinco grados de alcohol." + }, + { + "id": 22, + "question": "¿Qué cervecería belga produce Brigand, una cerveza ámbar de alta fermentación ?", + "propositions": [ + "Van Honsebrouck", + "Liefmans", + "Van Steenberge", + "Bosteels" + ], + "réponse": "Van Honsebrouck", + "anecdote": "Las marcas de cerveza Kasteel, St-Louis, Brigand y Bacchus se elaboran principalmente en Van Honsebrouck." + }, + { + "id": 23, + "question": "¿Qué cerveza belga tiene un caracol extraño en su etiqueta ?", + "propositions": [ + "Gordon", + "Caracole", + "Moinette", + "Rochefort" + ], + "réponse": "Caracole", + "anecdote": "La producción anual de la cervecería Caracole es de 1600 hl, a razón de aproximadamente una infusión por semana." + }, + { + "id": 24, + "question": "¿Qué animal blanco se usa como logo para la cerveza Palm ?", + "propositions": [ + "Un caballo", + "Un oso", + "Un león", + "Un elefante" + ], + "réponse": "Un caballo", + "anecdote": "La historia de Palm comienza en 1597 con la firma de una escritura de compraventa de una finca, que explica la elección del logotipo." + }, + { + "id": 25, + "question": "¿Cuál de las siguientes designa una cerveza belga ámbar ?", + "propositions": [ + "Temporada 1600", + "Temporada 1900", + "Temporada 1700", + "Temporada 1800" + ], + "réponse": "Temporada 1900", + "anecdote": "La temporada 1900, producida por la fábrica de cerveza Lefebvre, es una cerveza tradicional valona." + }, + { + "id": 26, + "question": "¿Cuál de estas cervezas belgas tiene etiqueta ecológica ?", + "propositions": [ + "Ciney", + "Zulte", + "Blanche du Hainaut", + "Affligem" + ], + "réponse": "Blanche du Hainaut", + "anecdote": "Brasserie Dupont es una empresa belga establecida en Tourpes en la ciudad de Leuze-en-Hainaut, en el centro del oeste de Hainaut." + }, + { + "id": 27, + "question": "La Troublette, elaborada cerca de la ciudad de Dinant, ¿es cerveza de qué color ?", + "propositions": [ + "Morena", + "Blanco", + "Negro", + "Ámbar" + ], + "réponse": "Blanco", + "anecdote": "La Troublette es una cerveza blanca de la cervecería Caracole, ligera y refrescante, que también existe de forma orgánica." + }, + { + "id": 28, + "question": "¿Qué cerveza belga es conocida por ser una cerveza viva ?", + "propositions": [ + "Carlos V", + "Grimbergen", + "St Feuillien", + "Bon Secours" + ], + "réponse": "Bon Secours", + "anecdote": "La gama de cervezas Bon Secours es una gama de cervezas artesanales belgas del tipo abbey, con alta fermentación." + }, + { + "id": 29, + "question": "¿Cuál de estas cervezas belgas proviene directamente de la cervecería romana ?", + "propositions": [ + "Ename", + "Caracole", + "Moinette", + "Rochefort" + ], + "réponse": "Ename", + "anecdote": "La cervecería romana paga una regalía al museo de la ciudad de Ename por el uso de la denominación Abbaye d'Ename." + }, + { + "id": 30, + "question": "¿Qué cerveza belga tiene un gigante en sus etiquetas ?", + "propositions": [ + "Gouyasse", + "Judas", + "Rochefort", + "Palm" + ], + "réponse": "Gouyasse", + "anecdote": "La cervecería se puede visitar en 50 minutos y finaliza con la degustación de una cerveza de su elección entre las cervezas elaboradas." + } + ] + }, + "it": { + "débutant": [ + { + "id": 1, + "question": "Quale birra belga viene prodotta aggiungendo amarene al lambic ?", + "propositions": [ + "Duvel", + "Chimay", + "Leffe", + "Kriek" + ], + "réponse": "Kriek", + "anecdote": "In passato, alcuni birrifici producevano kriek fatti con una miscela di lager (o pils) e ciliegie." + }, + { + "id": 2, + "question": "Quale dei seguenti non designa un colore della birra belga ?", + "propositions": [ + "Bionda", + "Nero", + "Ambra", + "Rosso" + ], + "réponse": "Rosso", + "anecdote": "La birra è una bevanda ottenuta dalla fermentazione di cereali, generalmente chicchi d'orzo." + }, + { + "id": 3, + "question": "Quale birra belga, prodotto di punta del birrificio Dubuisson, contenuto al 12 % ?", + "propositions": [ + "Bush", + "Morte improvvisa", + "Tongerlo", + "Stella" + ], + "réponse": "Bush", + "anecdote": "Chiamata anche Bush 12, possiamo leggere sulla sua etichetta che è la birra più forte del Belgio." + }, + { + "id": 4, + "question": "Quale etichetta compare su una bottiglia di Leffe, sviluppata in tante varietà ?", + "propositions": [ + "Birra d'Abbazia", + "Fabbricato in Svizzera", + "Birra biologica", + "Trappist" + ], + "réponse": "Birra d'Abbazia", + "anecdote": "Prende il nome da un distretto di Dinant nella valle della Mosa, la birra Leffe fa parte della varietà di birre dell'abbazia." + }, + { + "id": 5, + "question": "Quale birra belga va bevuta in un bicchiere sorretto da una base in legno ?", + "propositions": [ + "Duvel", + "Bacco", + "Kwak", + "Lupulus" + ], + "réponse": "Kwak", + "anecdote": "La leggenda vuole che il nome del Kwak derivi dal rumore che senti quando bevi il tuo bicchiere asciutto." + }, + { + "id": 6, + "question": "Quale sistema di tappatura viene utilizzato sulle bottiglie Quintine ?", + "propositions": [ + "Capsula", + "Meccanica", + "Di sughero", + "Avvitare" + ], + "réponse": "Meccanica", + "anecdote": "La Brasserie Ellezelloise produce diverse birre artigianali, tra cui Quintine." + }, + { + "id": 7, + "question": "Quale birra belga mantiene il suo status di riferimento nella terra dei bianchi ?", + "propositions": [ + "Hoegaarden", + "Floreffe", + "Bacco", + "Corsendonk" + ], + "réponse": "Hoegaarden", + "anecdote": "Secondo alcune credenze popolari, la birra Hoegaarden è spesso citata come la prima birra bianca." + }, + { + "id": 8, + "question": "Quale intruso si nasconde tra queste birre Chimay, né filtrate né pastorizzate ?", + "propositions": [ + "Blu", + "Bianco", + "Rosso", + "Rugiada" + ], + "réponse": "Rugiada", + "anecdote": "Chimay è una birra trappista belga, prodotta nell'abbazia di Notre-Dame de Scourmont." + }, + { + "id": 9, + "question": "Quale di queste birre belghe arriva in una bottiglia di forma ovale ?", + "propositions": [ + "Bush", + "Orval", + "Kriek", + "Leffe" + ], + "réponse": "Orval", + "anecdote": "Orval è caratterizzato da un amaro abbastanza forte e beneficia dell'invecchiamento in cantina per alcuni mesi." + }, + { + "id": 10, + "question": "Quale di queste birre belghe, meno note al grande pubblico, è aromatizzata al miele ?", + "propositions": [ + "Ename", + "Caracole", + "Barbar", + "Affligem" + ], + "réponse": "Barbar", + "anecdote": "La Barbar è considerata da molti amanti della birra come il riposo del guerriero." + } + ], + "confirmé": [ + { + "id": 11, + "question": "La Gauloise è una birra belga la cui bottiglia offre quale capacità ?", + "propositions": [ + "75 cl", + "50 cl", + "33 cl", + "25 cl" + ], + "réponse": "33 cl", + "anecdote": "Il birrificio Bocq è un birrificio belga situato a Purnode, nel comune di Yvoir in Belgio." + }, + { + "id": 12, + "question": "Quale intruso si nasconde tra queste birre Rochefort, prodotte nell'abbazia dal 1595 ?", + "propositions": [ + "Rochefort 12", + "Rochefort 10", + "Rochefort 8", + "Rochefort 6" + ], + "réponse": "Rochefort 12", + "anecdote": "A Rochefort, la quantità di birra prodotta è volontariamente limitata a 300 ettolitri a settimana." + }, + { + "id": 13, + "question": "Quale re di Sardegna ha una birra biondo dorato in Belgio ?", + "propositions": [ + "Filippo II", + "Ferdinando I", + "Carlo VI", + "Carlo V" + ], + "réponse": "Carlo V", + "anecdote": "Il birrificio Haacht, che produce Carlo V, è un birrificio belga situato nella provincia del Brabante fiammingo." + }, + { + "id": 14, + "question": "Quale di queste città in Belgio ha una cuvée di birra bionda ?", + "propositions": [ + "Couvin", + "Waremme", + "Ciney", + "Verviers" + ], + "réponse": "Ciney", + "anecdote": "Esistono tre tipi di birre Ciney: Ciney Blonde, Ciney Brune e Ciney Spéciale." + }, + { + "id": 15, + "question": "Che colore ha Delirium Tremens sulla sua bottiglia ?", + "propositions": [ + "Verde", + "Blu", + "Rosso", + "Giallo" + ], + "réponse": "Blu", + "anecdote": "Nel 1992, la Confraternita dell'elefante rosa è stata creata per promuovere Delirium Tremens e altre birre Melle." + }, + { + "id": 16, + "question": "Quale di queste birre belghe è disponibile in una versione classica e in una versione biologica ?", + "propositions": [ + "Moinette", + "Barbar", + "Chimay", + "Duvel" + ], + "réponse": "Moinette", + "anecdote": "La Moinette è una birra con una schiuma abbondante, un aroma maltato e luppolato e un gusto leggermente amaro." + }, + { + "id": 17, + "question": "Quale birra belga, prodotta nella provincia dell'Hainaut, contiene vitamina C ?", + "propositions": [ + "St Feuillien", + "Rochefort 10", + "Orval", + "Chimay" + ], + "réponse": "St Feuillien", + "anecdote": "La gamma St Feuillien è disponibile in quattro versioni, incluse tra le rinomate birre d'abbazia belghe." + }, + { + "id": 18, + "question": "Quale birra pubblicizzata come bianca ha un colore quasi ambrato ?", + "propositions": [ + "Westmalle", + "Grimbergen", + "In primo piano", + "San Bernardus" + ], + "réponse": "Grimbergen", + "anecdote": "Grimbergen è una marca di birra di origine belga appartenente oggi ai gruppi Carlsberg e Heineken." + }, + { + "id": 19, + "question": "Quale birra belga designa anche una canzone eseguita da Lady Gaga ?", + "propositions": [ + "Giuda", + "Nato in questo modo", + "Bloody Mary", + "Capelli" + ], + "réponse": "Giuda", + "anecdote": "Alken-Maes è un'azienda di birra belga creata nel 1988 dalla fusione dei birrifici Maes e Alken." + }, + { + "id": 20, + "question": "Quale birra belga è riconoscibile grazie al suo elfo con il tappo rosso ?", + "propositions": [ + "La Chouffe", + "Il Durboyse", + "La Maes", + "The Barbar" + ], + "réponse": "La Chouffe", + "anecdote": "L'aroma molto particolare di Chouffe mescola sia fiori d'arancio che mela acerba." + } + ], + "expert": [ + { + "id": 21, + "question": "Quale birra a fermentazione spontanea viene prodotta a sud di Bruxelles ?", + "propositions": [ + "Stout", + "Triple", + "Lambic", + "Pils" + ], + "réponse": "Lambic", + "anecdote": "Il Lambic è una birra più o meno acida a seconda della sua età, senza bollicine né schiuma, contenente circa cinque gradi di alcol." + }, + { + "id": 22, + "question": "Quale birrificio belga produce Brigand, una birra ambrata ad alta fermentazione ?", + "propositions": [ + "Liefmans", + "Van Honsebrouck", + "Bosteels", + "Van Steenberge" + ], + "réponse": "Van Honsebrouck", + "anecdote": "I marchi di birra Kasteel, St-Louis, Brigand e Bacchus vengono prodotti principalmente a Van Honsebrouck." + }, + { + "id": 23, + "question": "Quale birra belga ha una strana lumaca sull'etichetta ?", + "propositions": [ + "Moinette", + "Gordon", + "Caracole", + "Rochefort" + ], + "réponse": "Caracole", + "anecdote": "La produzione annua del birrificio Caracole è di 1600 hl, al ritmo di circa una birra alla settimana." + }, + { + "id": 24, + "question": "Quale animale bianco viene utilizzato come logo per la birra Palm ?", + "propositions": [ + "Un leone", + "Un elefante", + "Un orso", + "Un cavallo" + ], + "réponse": "Un cavallo", + "anecdote": "La storia di Palm inizia nel 1597 con la firma di un atto di compravendita di un'azienda agricola, che spiega la scelta del logo." + }, + { + "id": 25, + "question": "Quale delle seguenti indica una birra belga ambrata ?", + "propositions": [ + "Stagione 1800", + "Stagione 1700", + "Stagione 1900", + "Stagione 1600" + ], + "réponse": "Stagione 1900", + "anecdote": "La Saison 1900, prodotta dal birrificio Lefebvre, è una birra tradizionale vallona." + }, + { + "id": 26, + "question": "Quale di queste birre belghe ha un'etichetta biologica ?", + "propositions": [ + "Ciney", + "Blanche du Hainaut", + "Affligem", + "Zulte" + ], + "réponse": "Blanche du Hainaut", + "anecdote": "Brasserie Dupont è un'azienda belga con sede a Tourpes, nella città di Leuze-en-Hainaut, nel centro dell'Hainaut occidentale." + }, + { + "id": 27, + "question": "Di che colore è la birra La Troublette, prodotta vicino alla città di Dinant ?", + "propositions": [ + "Nero", + "Ambra", + "Bruna", + "Bianco" + ], + "réponse": "Bianco", + "anecdote": "La Troublette è una birra bianca del birrificio Caracole, leggera e rinfrescante, anch'essa biologica." + }, + { + "id": 28, + "question": "Quale birra belga è nota per essere una birra viva ?", + "propositions": [ + "Grimbergen", + "Bon Secours", + "St Feuillien", + "Carlo V" + ], + "réponse": "Bon Secours", + "anecdote": "La gamma di birre Bon Secours è una gamma di birre artigianali belghe del tipo di birra d'abbazia, ad alta fermentazione." + }, + { + "id": 29, + "question": "Quale di queste birre belghe proviene direttamente dal birrificio romano ?", + "propositions": [ + "Ename", + "Moinette", + "Caracole", + "Rochefort" + ], + "réponse": "Ename", + "anecdote": "Il birrificio romano paga una royalty al museo della città di Ename per l'uso della denominazione Abbaye d'Ename." + }, + { + "id": 30, + "question": "Quale birra belga ha un gigante sulle sue etichette ?", + "propositions": [ + "Palm", + "Gouyasse", + "Rochefort", + "Giuda" + ], + "réponse": "Gouyasse", + "anecdote": "Il birrificio è visitabile in 50 minuti e si conclude con la degustazione di una birra a scelta tra le birre prodotte." + } + ] + }, + "nl": { + "débutant": [ + { + "id": 1, + "question": "Welk Belgisch bier wordt gemaakt door zure kersen toe te voegen aan lambiek ?", + "propositions": [ + "Duvel", + "Kriek", + "Chimay", + "Leffe" + ], + "réponse": "Kriek", + "anecdote": "In het verleden produceerden sommige brouwerijen krieks gemaakt van een mengsel van lagers (of pils) en kersen." + }, + { + "id": 2, + "question": "Welke van de volgende duidt niet op een kleur van Belgisch bier ?", + "propositions": [ + "Amber", + "Zwart", + "Blond", + "Rood" + ], + "réponse": "Rood", + "anecdote": "Bier is een drank die wordt verkregen door fermentatie van granen, meestal gerstekorrels." + }, + { + "id": 3, + "question": "Welk Belgisch bier, vlaggenschip van brouwerij Dubuisson, 12 % inhoud ?", + "propositions": [ + "Bush", + "Tongerlo", + "Plotselinge dood", + "Stella" + ], + "réponse": "Bush", + "anecdote": "Ook wel Bush 12 genoemd, kunnen we op het etiket lezen dat dit het sterkste bier van België is." + }, + { + "id": 4, + "question": "Welk etiket staat op een fles Leffe, ontwikkeld in vele varianten ?", + "propositions": [ + "Zwitserse makelij", + "Biologisch bier", + "Abdijbier", + "Trappist" + ], + "réponse": "Abdijbier", + "anecdote": "Het Leffe-bier, genoemd naar een district van Dinant in de Maasvallei, maakt deel uit van de variëteit aan abdijbieren." + }, + { + "id": 5, + "question": "Welk Belgisch bier moet gedronken worden in een glas ondersteund door een houten voet ?", + "propositions": [ + "Kwak", + "Duvel", + "Lupulus", + "Bacchus" + ], + "réponse": "Kwak", + "anecdote": "Volgens de legende komt de naam van de Kwak van het geluid dat je hoort als je je glas droog drinkt." + }, + { + "id": 6, + "question": "Welk afdeksysteem wordt gebruikt op Quintine-flessen ?", + "propositions": [ + "Om te schroeven", + "Capsule", + "Mechanica", + "Van kurk" + ], + "réponse": "Mechanica", + "anecdote": "De Brasserie Ellezelloise produceert verschillende ambachtelijke bieren, waaronder Quintine." + }, + { + "id": 7, + "question": "Welk Belgisch bier behoudt zijn referentiestatus in het land van de blanken ?", + "propositions": [ + "Corsendonk", + "Bacchus", + "Floreffe", + "Hoegaarden" + ], + "réponse": "Hoegaarden", + "anecdote": "Volgens een algemeen geloof wordt Hoegaarden-bier vaak aangehaald als het eerste witbier." + }, + { + "id": 8, + "question": "Wie schuilt de indringer tussen deze Chimay-bieren, niet gefilterd of gepasteuriseerd ?", + "propositions": [ + "Wit", + "Dauw", + "Rood", + "Blauw" + ], + "réponse": "Dauw", + "anecdote": "Chimay is een Belgisch trappistenbier, geproduceerd in de abdij Notre-Dame de Scourmont." + }, + { + "id": 9, + "question": "Welk van deze Belgische bieren zit er in een ovale fles ?", + "propositions": [ + "Kriek", + "Orval", + "Bush", + "Leffe" + ], + "réponse": "Orval", + "anecdote": "Orval kenmerkt zich door een vrij sterke bitterheid en profiteert van enkele maanden rijping in de kelder." + }, + { + "id": 10, + "question": "Welke van deze Belgische bieren, minder bekend bij het grote publiek, is op smaak gebracht met honing ?", + "propositions": [ + "Caracole", + "Ename", + "Affligem", + "Barbar" + ], + "réponse": "Barbar", + "anecdote": "La Barbar wordt door veel bierliefhebbers beschouwd als de rust van de krijger." + } + ], + "confirmé": [ + { + "id": 11, + "question": "La Gauloise is een Belgisch bier waarvan de fles welke capaciteit biedt ?", + "propositions": [ + "75 cl", + "25 cl", + "50 cl", + "33 cl" + ], + "réponse": "33 cl", + "anecdote": "Brouwerij Bocq is een Belgische brouwerij gelegen in Purnode, in de gemeente Yvoir in België." + }, + { + "id": 12, + "question": "Welke indringer verstopt zich tussen deze Rochefort-bieren, gebrouwen in de abdij sinds 1595 ?", + "propositions": [ + "Rochefort 12", + "Rochefort 8", + "Rochefort 10", + "Rochefort 6" + ], + "réponse": "Rochefort 12", + "anecdote": "In Rochefort wordt de hoeveelheid geproduceerd bier vrijwillig beperkt tot 300 hectoliter per week." + }, + { + "id": 13, + "question": "Welke koning van Sardinië heeft een goudblond bier in België ?", + "propositions": [ + "Charles VI", + "Philip II", + "Ferdinand I", + "Karel V" + ], + "réponse": "Karel V", + "anecdote": "Brouwerij Haacht, die Karel V produceert, is een Belgische brouwerij gelegen in de provincie Vlaams-Brabant." + }, + { + "id": 14, + "question": "Welke van deze steden in België heeft een cuvée blond bier ?", + "propositions": [ + "Waremme", + "Couvin", + "Verviers", + "Ciney" + ], + "réponse": "Ciney", + "anecdote": "Er zijn drie soorten Ciney-bieren: Ciney Blonde, Ciney Brune en Ciney Spéciale." + }, + { + "id": 15, + "question": "Welke kleur heeft Delirium Tremens op de fles ?", + "propositions": [ + "Groen", + "Rood", + "Geel", + "Blauw" + ], + "réponse": "Blauw", + "anecdote": "In 1992 werd de Brotherhood of the Pink Elephant opgericht om Delirium Tremens en andere Melle-bieren te promoten." + }, + { + "id": 16, + "question": "Welke van deze Belgische bieren is er zowel in een klassieke versie als in een biologische versie ?", + "propositions": [ + "Duvel", + "Chimay", + "Moinette", + "Barbar" + ], + "réponse": "Moinette", + "anecdote": "La Moinette is een bier met veel schuim, een moutig en hoppig aroma en een licht bittere smaak." + }, + { + "id": 17, + "question": "Welk Belgisch bier, geproduceerd in de provincie Henegouwen, bevat vitamine C ?", + "propositions": [ + "Rochefort 10", + "Chimay", + "Orval", + "St Feuillien" + ], + "réponse": "St Feuillien", + "anecdote": "Het St Feuillien-gamma is verkrijgbaar in vier versies, waaronder de erkende Belgische abdijbieren." + }, + { + "id": 18, + "question": "Welk bier dat als wit wordt geadverteerd, heeft een bijna amberkleurige kleur ?", + "propositions": [ + "Uitgelicht", + "Westmalle", + "Grimbergen", + "Sint Bernardus" + ], + "réponse": "Grimbergen", + "anecdote": "Grimbergen is een biermerk van Belgische oorsprong dat tegenwoordig tot de groepen Carlsberg en Heineken behoort." + }, + { + "id": 19, + "question": "Welk Belgisch bier duidt ook een lied aan dat wordt uitgevoerd door Lady Gaga ?", + "propositions": [ + "Op deze manier geboren", + "Judas", + "Haar", + "Bloody Mary" + ], + "réponse": "Judas", + "anecdote": "Alken-Maes is een Belgische brouwerij die werd opgericht in 1988 toen de brouwerijen van Maes en Alken fuseerden." + }, + { + "id": 20, + "question": "Welk Belgisch bier is herkenbaar aan zijn elfje met de rode dop ?", + "propositions": [ + "La Chouffe", + "De barbar", + "La Maes", + "De Durboyse" + ], + "réponse": "La Chouffe", + "anecdote": "Het zeer specifieke aroma van Chouffe combineert zowel oranjebloesem als zure appel." + } + ], + "expert": [ + { + "id": 21, + "question": "Welk bier van spontane gisting wordt geproduceerd in het zuiden van Brussel ?", + "propositions": [ + "Pils", + "Stout", + "Drievoudig", + "Lambiek" + ], + "réponse": "Lambiek", + "anecdote": "Lambiek is een bier dat afhankelijk van de leeftijd min of meer zuur is, zonder schuim of schuim, met ongeveer vijf graden alcohol." + }, + { + "id": 22, + "question": "Welke Belgische brouwerij produceert Brigand, een amberkleurig bier van hoge gisting ?", + "propositions": [ + "Bosteels", + "Liefmans", + "Van Honsebrouck", + "Van Steenberge" + ], + "réponse": "Van Honsebrouck", + "anecdote": "De biermerken Kasteel, St-Louis, Brigand en Bacchus worden voornamelijk bij Van Honsebrouck gebrouwen." + }, + { + "id": 23, + "question": "Welk Belgisch bier heeft een vreemde slak op het etiket ?", + "propositions": [ + "Caracole", + "Gordon", + "Rochefort", + "Moinette" + ], + "réponse": "Caracole", + "anecdote": "De jaarlijkse productie van de Caracole-brouwerij is 1600 hl, wat neerkomt op ongeveer één brouwsel per week." + }, + { + "id": 24, + "question": "Welk wit dier wordt gebruikt als logo voor palmbier ?", + "propositions": [ + "Een olifant", + "Een leeuw", + "Een paard", + "Een beer" + ], + "réponse": "Een paard", + "anecdote": "De geschiedenis van Palm begint in 1597 met de ondertekening van een verkoopakte voor een boerderij, wat de keuze van het logo verklaart." + }, + { + "id": 25, + "question": "Welke van de volgende duidt een amberkleurig Belgisch bier aan ?", + "propositions": [ + "Seizoen 1900", + "Seizoen 1800", + "Seizoen 1600", + "Seizoen 1700" + ], + "réponse": "Seizoen 1900", + "anecdote": "De Saison 1900, geproduceerd door de brouwerij Lefebvre, is een traditioneel Waals bier." + }, + { + "id": 26, + "question": "Welke van deze Belgische bieren heeft een biologisch label ?", + "propositions": [ + "Zulte", + "Affligem", + "Blanche du Hainaut", + "Ciney" + ], + "réponse": "Blanche du Hainaut", + "anecdote": "Brasserie Dupont is een Belgisch bedrijf gevestigd in Tourpes in de stad Leuze-en-Hainaut, in het centrum van West-Henegouwen." + }, + { + "id": 27, + "question": "Welke kleur bier is La Troublette, gebrouwen nabij de stad Dinant ?", + "propositions": [ + "Brunette", + "Amber", + "Wit", + "Zwart" + ], + "réponse": "Wit", + "anecdote": "La Troublette is een witbier van brouwerij Caracole, licht en verfrissend, dat ook nog eens biologisch bestaat." + }, + { + "id": 28, + "question": "Van welk Belgisch bier is bekend dat het een levend bier is ?", + "propositions": [ + "Grimbergen", + "St Feuillien", + "Karel V", + "Bon Secours" + ], + "réponse": "Bon Secours", + "anecdote": "Het assortiment bieren van Bon Secours is een gamma Belgische ambachtelijke bieren van het type abdijbier, met hoge gisting." + }, + { + "id": 29, + "question": "Welke van deze Belgische bieren komt rechtstreeks van de Romeinse brouwerij ?", + "propositions": [ + "Moinette", + "Caracole", + "Rochefort", + "Ename" + ], + "réponse": "Ename", + "anecdote": "De Romeinse brouwerij betaalt een royalty aan het museum van de stad Ename voor het gebruik van de benaming Abbaye d'Ename." + }, + { + "id": 30, + "question": "Welk Belgisch bier heeft een reus op zijn etiketten ?", + "propositions": [ + "Gouyasse", + "Judas", + "Palm", + "Rochefort" + ], + "réponse": "Gouyasse", + "anecdote": "De brouwerij is in 50 minuten te bezoeken en eindigt met het proeven van een bier naar keuze uit de gebrouwen bieren." + } + ] + } + } +} \ No newline at end of file diff --git a/misc/quiz/openquizzdb/culture-generale-1.json b/misc/quiz/openquizzdb/culture-generale-1.json new file mode 100644 index 0000000..6ffbce2 --- /dev/null +++ b/misc/quiz/openquizzdb/culture-generale-1.json @@ -0,0 +1,2250 @@ +{ + "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-04-24", + "catégorie-nom-slogan": { + "fr": { + "catégorie": "Culture générale", + "nom": "Culture G #01", + "slogan": "Tout sur tout" + }, + "en": { + "catégorie": "General knowledge", + "nom": "Culture G #1", + "slogan": "Everything about everything" + }, + "es": { + "catégorie": "Cultura general", + "nom": "Cultura G #1", + "slogan": "Todo sobre todo" + }, + "it": { + "catégorie": "Cultura generale", + "nom": "Cultura G #1", + "slogan": "Tutto su tutto" + }, + "de": { + "catégorie": "Allgemeine Kultur", + "nom": "Kultur G #1", + "slogan": "Alles über alles" + }, + "nl": { + "catégorie": "Algemene cultuur", + "nom": "Cultuur G #1", + "slogan": "Alles over alles" + } + }, + "quizz": { + "fr": { + "débutant": [ + { + "id": 1, + "question": "Quel film à succès a réuni sur les écrans Sean Connery et Christophe Lambert ?", + "propositions": [ + "Mad Max", + "Greystoke", + "Subway", + "Highlander" + ], + "réponse": "Highlander", + "anecdote": "« A Kind of Magic » est un album du groupe Queen, sorti en juin 1986, dont six de ses neuf morceaux sont utilisés dans le film « Highlander »." + }, + { + "id": 2, + "question": "Quel pays, dont les premiers habitants étaient des Newars, a pour capitale Katmandou ?", + "propositions": [ + "Tibet", + "Corée du Nord", + "Pakistan", + "Népal" + ], + "réponse": "Népal", + "anecdote": "Katmandou est la capitale politique et religieuse du Népal ainsi que la plus grande ville du pays." + }, + { + "id": 3, + "question": "Dans quel film John Travolta incarne-t-il un ange tombé du ciel ?", + "propositions": [ + "Jerry", + "Johnny", + "Michael", + "Sam" + ], + "réponse": "Michael", + "anecdote": "Dans le film « Michael », deux journalistes enquêtent sur un soi-disant vrai ange vivant chez une dame âgée." + }, + { + "id": 4, + "question": "Pour quel auteur-compositeur-interprète aux 40 millions de disques Capri est-il fini ?", + "propositions": [ + "Salvatore Adamo", + "Serge Lama", + "Charles Aznavour", + "Hervé Vilard" + ], + "réponse": "Hervé Vilard", + "anecdote": "Didier Barbelivien, Michel Fugain et Danyel Gérard ont fait partie de la liste des artistes qui ont composé pour Hervé Vilard." + }, + { + "id": 5, + "question": "Quel peintre, né en 1844, est également appelé par beaucoup le Douanier ?", + "propositions": [ + "Pablo Picasso", + "Salvador Dali", + "Henri Rousseau", + "Edgar Degas" + ], + "réponse": "Henri Rousseau", + "anecdote": "Le premier portrait connu réalisé par le peintre Henri Rousseau semble être celui de sa première femme." + }, + { + "id": 6, + "question": "Quel personnage imaginaire fut popularisé par le roman de E.R. Burroughs et par le cinéma ?", + "propositions": [ + "King-Kong", + "Le Yéti", + "Nessie", + "Tarzan" + ], + "réponse": "Tarzan", + "anecdote": "Edgar Rice Burroughs a inspiré bon nombre d'auteurs de science-fiction et de fantastique ainsi que de nombreux réalisateurs." + }, + { + "id": 7, + "question": "Quelle est la seule valeur à la roulette à porter la couleur verte ?", + "propositions": [ + "Treize", + "Quarante", + "Zéro", + "Cinquante" + ], + "réponse": "Zéro", + "anecdote": "À la roulette, lorsque le croupier donne la main, chaque joueur mise sur un numéro qu'il espère être tiré pour remporter la mise." + }, + { + "id": 8, + "question": "Quelle est la race du chien de Columbo, inspecteur perspicace de la télé ?", + "propositions": [ + "Basset", + "Beagle", + "Bichon", + "Bull-terrier" + ], + "réponse": "Basset", + "anecdote": "Interrompue en 1978, la série télévisée « Columbo » a été ressuscitée en 1989, toujours avec Peter Falk dans le rôle principal." + }, + { + "id": 9, + "question": "Quelle est la plus petite unité de mémoire utilisable sur un ordinateur ?", + "propositions": [ + "Bar", + "Becquerel", + "Bit", + "Byte" + ], + "réponse": "Bit", + "anecdote": "La mémoire est un composant matériel essentiel de nombreux appareils électroniques, présent dans tous les ordinateurs." + }, + { + "id": 10, + "question": "Dans le langage familier, comment appelle-t-on la dent du petit enfant ?", + "propositions": [ + "Quartette", + "Quintuple", + "Quenotte", + "Quittance" + ], + "réponse": "Quenotte", + "anecdote": "Il est important de bien se brosser les dents de manière régulière si l'on veut éviter la prolifération de caries dans la bouche." + } + ], + "confirmé": [ + { + "id": 11, + "question": "Où se situe la célèbre base navale américaine de Guantanamo, réputée pour sa sévérité ?", + "propositions": [ + "Mexique", + "Paraguay", + "Hawaii", + "Cuba" + ], + "réponse": "Cuba", + "anecdote": "La base de Guantanamo, très hautement sécurisée, détient des personnes et des individus qualifiés de combattants hors-la-loi." + }, + { + "id": 12, + "question": "Quelle est la spécialité du sportif tunisien Oussama Mellouli ?", + "propositions": [ + "Natation", + "Football", + "Marathon", + "Boxe" + ], + "réponse": "Natation", + "anecdote": "Oussama Mellouli est le premier champion olympique tunisien du milieu de la natation professionnelle à avoir remporté ce titre." + }, + { + "id": 13, + "question": "Quel acteur français a remporté le premier rôle dans le film « Le Guépard » ?", + "propositions": [ + "Alain Delon", + "Jean Reno", + "Claude Brasseur", + "Jean Gabin" + ], + "réponse": "Alain Delon", + "anecdote": "Le film « Le Guépard », mettant en scène l'acteur Alain Delon, décrit la chute de l'aristocratie italienne, dont la scène du bal donne la clé." + }, + { + "id": 14, + "question": "Qui était le compagnon de Paul de Tarse, désigné aussi sous le nom de saint Paul ?", + "propositions": [ + "Saint Marc", + "Saint Matthieu", + "Saint Luc", + "Saint Jean" + ], + "réponse": "Saint Luc", + "anecdote": "Sans faire partie des Douze, Saint Paul a toutefois marqué le christianisme par son interprétation de l'enseignement de Jésus." + }, + { + "id": 15, + "question": "Quel titre de noblesse est immédiatement inférieur à celui de comte ?", + "propositions": [ + "Vicomte", + "Marquis", + "Archiduc", + "Duc" + ], + "réponse": "Vicomte", + "anecdote": "Vicomte est une distinction héréditaire que beaucoup revendiquent mais à laquelle ne sont attachés aucuns pouvoirs." + }, + { + "id": 16, + "question": "Quelle est la capitale de la Nouvelle-Zélande, au sud-ouest de l'océan Pacifique ?", + "propositions": [ + "Winnipeg", + "Wellington", + "Washington", + "Worcester" + ], + "réponse": "Wellington", + "anecdote": "Troisième ville la plus peuplée du pays, Wellington fait partie des douze meilleures villes dans laquelle vivre." + }, + { + "id": 17, + "question": "Quel film a réuni sur les écrans Isabelle Adjani et Sharon Stone ?", + "propositions": [ + "Ange et Démon", + "Diabolique", + "Les ensorceleuses", + "Les sorcières" + ], + "réponse": "Diabolique", + "anecdote": "Dans le film « Diabolique », la femme et la maîtresse d'un professeur s'associent pour planifier son assassinat." + }, + { + "id": 18, + "question": "Comment est également appelée la Transat Jacques Vabre ?", + "propositions": [ + "Trophée du rhum", + "Route du café", + "Vendée Globe", + "Route du rhum" + ], + "réponse": "Route du café", + "anecdote": "La Transat Jacques Vabre ou route du café, course transatlantique en double, se déroule tous les deux ans depuis 1993." + }, + { + "id": 19, + "question": "Quel oiseau vivant dans l'hémisphère nord nage le plus vite ?", + "propositions": [ + "Bécassine", + "Martinet", + "Pingouin", + "Pie" + ], + "réponse": "Pingouin", + "anecdote": "Par abus de langage, le pingouin est souvent confondu avec le manchot, de par sa ressemblance avec le Grand Pingouin." + }, + { + "id": 20, + "question": "Quelle est la plus grosse des planètes de notre Système solaire ?", + "propositions": [ + "Saturne", + "Uranus", + "Neptune", + "Jupiter" + ], + "réponse": "Jupiter", + "anecdote": "Jupiter est une planète géante gazeuse, la plus grosse planète du Système solaire." + } + ], + "expert": [ + { + "id": 21, + "question": "Apparu il y a 450 millions d'années, à quelle classe animale le scorpion appartient-il ?", + "propositions": [ + "Arachnides", + "Insectes", + "Reptiles", + "Mammifères" + ], + "réponse": "Arachnides", + "anecdote": "Les scorpions se distinguent des araignées par un aiguillon venimeux situé au bout de leur abdomen pouvant être mortel pour l'homme." + }, + { + "id": 22, + "question": "Quel frère d'une actrice prénommée Mary a réalisé le film « La fièvre du samedi soir » ?", + "propositions": [ + "John Remezick", + "John Travolta", + "John Badham", + "John Payne" + ], + "réponse": "John Badham", + "anecdote": "« La fièvre du samedi soir », réalisé par John Badham, fut un des principaux vecteurs de diffusion de la musique et de la mode disco." + }, + { + "id": 23, + "question": "Au Moyen Âge, comment appelait-on un village fortifié ?", + "propositions": [ + "Château fort", + "Rempart", + "Bastide", + "Tour" + ], + "réponse": "Bastide", + "anecdote": "De nos jours, les bastides les plus connues sont celles de Monflanquin, Monpazier, Grenade ou bien encore Libourne." + }, + { + "id": 24, + "question": "Quelle ville du Kent est célèbre pour sa source miraculeuse ?", + "propositions": [ + "Gillingham", + "Tunbridge Wells", + "Dartford", + "Ramsgate" + ], + "réponse": "Tunbridge Wells", + "anecdote": "Comme la reine Victoria, de nombreuses personnes célèbres sont venues en cure à Tunbridge Wells profiter de sa source miraculeuse." + }, + { + "id": 25, + "question": "Quel apéritif à base de vin est aromatisé avec des plantes amères et toniques ?", + "propositions": [ + "Kokebok", + "Gentiane", + "Piccolo", + "Vermouth" + ], + "réponse": "Vermouth", + "anecdote": "Dans une classification du plus sec au plus doux, on trouve le vermouth sec, le blanc, le rosé et le rouge." + }, + { + "id": 26, + "question": "À quel écrivain, membre de l'Académie française, doit-on le roman « Le sagouin » ?", + "propositions": [ + "Barjavel", + "Giono", + "Mauriac", + "Camus" + ], + "réponse": "Mauriac", + "anecdote": "Dans le roman « Le sagouin », écrit en quatre parties, on peut supposer que l'action se passe vers 1920." + }, + { + "id": 27, + "question": "Quel président Français trouva la mort dans une situation inhabituelle ?", + "propositions": [ + "Georges Pompidou", + "René Coty", + "Raymond Poincaré", + "Félix Faure" + ], + "réponse": "Félix Faure", + "anecdote": "Suite à ce décès inopiné, on a souvent dit de Félix Faure qu'il était un président plus célèbre par sa mort que par sa vie." + }, + { + "id": 28, + "question": "Comment appelle-t-on le versant de la montagne non situé au soleil ?", + "propositions": [ + "Uval", + "Upas", + "Ubac", + "Udret" + ], + "réponse": "Ubac", + "anecdote": "Dans l'hémisphère Nord, l'ubac est généralement la face Nord d'une montagne alors que l'adret en représente la face Sud." + }, + { + "id": 29, + "question": "Quel oiseau palmipède a pour particularité de construire un nid flottant ?", + "propositions": [ + "Grèbe", + "Grèle", + "Grève", + "Grène" + ], + "réponse": "Grèbe", + "anecdote": "La position des pattes, très courtes et très en arrière par rapport au corps, a valu au grèbe le joli nom de pieds au derrière." + }, + { + "id": 30, + "question": "Un bédane, avec son bec de canard, est un outil proche de quel autre outil ?", + "propositions": [ + "Vilebrequin", + "Ciseau à bois", + "Maillet", + "Rabot" + ], + "réponse": "Ciseau à bois", + "anecdote": "Le bédane est un outil encore parfois utilisé aujourd'hui pour réaliser des pièces en bois tournées entre pointes." + } + ] + }, + "en": { + "débutant": [ + { + "id": 1, + "question": "What successful film came together on the screens of Sean Connery and Christophe Lambert ?", + "propositions": [ + "Greystoke", + "Highlander", + "Subway", + "Mad Max" + ], + "réponse": "Highlander", + "anecdote": "« A Kind of Magic » is an album from the group Queen, released in June 1986, six of its nine songs being used in the film « Highlander »." + }, + { + "id": 2, + "question": "Which country, whose first inhabitants were Newars, has Kathmandu as its capital ?", + "propositions": [ + "Pakistan", + "North Korea", + "Tibet", + "Nepal" + ], + "réponse": "Nepal", + "anecdote": "Kathmandu is the political and religious capital of Nepal and the largest city in the country." + }, + { + "id": 3, + "question": "In which film does John Travolta embody an angel fallen from the sky ?", + "propositions": [ + "Jerry", + "Johnny", + "Sam", + "Michael" + ], + "réponse": "Michael", + "anecdote": "In the film « Michael », two journalists investigate a so-called real angel living with an elderly lady." + }, + { + "id": 4, + "question": "For which French singer-songwriter with 40 million records sold is Capri finished ?", + "propositions": [ + "Hervé Vilard", + "Salvatore Adamo", + "Charles Aznavour", + "Serge Lama" + ], + "réponse": "Hervé Vilard", + "anecdote": "Didier Barbelivien, Michel Fugain and Danyel Gérard were part of the list of artists who composed for Hervé Vilard." + }, + { + "id": 5, + "question": "Which painter, born in 1844, is also called by many the Customs officer ?", + "propositions": [ + "Henri Rousseau", + "Salvador Dali", + "Pablo Picasso", + "Edgar Degas" + ], + "réponse": "Henri Rousseau", + "anecdote": "The first known portrait made by the painter Henri Rousseau seems to be that of his first wife." + }, + { + "id": 6, + "question": "Which imaginary character was popularized by the novel by E.R. Burroughs and by the cinema ?", + "propositions": [ + "Tarzan", + "Nessie", + "King-Kong", + "The Yeti" + ], + "réponse": "Tarzan", + "anecdote": "Edgar Rice Burroughs has inspired many science fiction and fantasy writers as well as many filmmakers." + }, + { + "id": 7, + "question": "What is the only value for roulette to wear the color green ?", + "propositions": [ + "Zero", + "Fifty", + "Thirteen", + "Forty" + ], + "réponse": "Zero", + "anecdote": "In roulette, when the dealer takes the hand, each player bets on a number he hopes to be drawn to win the bet." + }, + { + "id": 8, + "question": "What is the breed of Columbo's dog, the very obstinate and perceptive inspector of television ?", + "propositions": [ + "Beagle", + "Basset", + "Bichon", + "Barbet" + ], + "réponse": "Basset", + "anecdote": "Interrupted in 1978, the television series « Columbo » was revived in 1989, still with Peter Falk in the main role." + }, + { + "id": 9, + "question": "What is the smallest memory unit usable on a computer ?", + "propositions": [ + "Bit", + "Byte", + "Mega", + "Giga" + ], + "réponse": "Bit", + "anecdote": "Memory is an essential hardware component of many electronic devices, found in all computers and consoles." + }, + { + "id": 10, + "question": "In colloquial parlance, what is the name of a child's tooth ?", + "propositions": [ + "Handcuff", + "Quenotte", + "Hot water bottle", + "Groundhog" + ], + "réponse": "Quenotte", + "anecdote": "It is particularly important to brush your teeth regularly in order to avoid the proliferation of cavities in the mouth." + } + ], + "confirmé": [ + { + "id": 11, + "question": "Where is the famous American naval base of Guantanamo, renowned for its reliability ?", + "propositions": [ + "Mexico", + "Cuba", + "Hawaii", + "Paraguay" + ], + "réponse": "Cuba", + "anecdote": "The Guantanamo base, very highly secure, detains persons and individuals qualified as outlaw combatants." + }, + { + "id": 12, + "question": "What is the specialty of Tunisian sportsman Oussama Mellouli ?", + "propositions": [ + "Marathon", + "Football", + "Boxing", + "Swimming" + ], + "réponse": "Swimming", + "anecdote": "Osama Mellouli is the first Tunisian professional swimming champion to win this title." + }, + { + "id": 13, + "question": "Which French actor won the first role in the film « Le Guépard » ?", + "propositions": [ + "Claude Brasseur", + "Jean Gabin", + "Alain Delon", + "Jean Reno" + ], + "réponse": "Alain Delon", + "anecdote": "The film « The Leopard », staging the actor Alain Delon, describes the fall of the Italian aristocracy, of which the stage of the ball gives the key." + }, + { + "id": 14, + "question": "Who was the companion of Paul of Tarsus, also known as Saint Paul ?", + "propositions": [ + "Saint Mark", + "Saint Matthew", + "Saint Luke", + "Saint John" + ], + "réponse": "Saint Luke", + "anecdote": "Without being part of the Twelve, Saint Paul nevertheless marked Christianity by his interpretation of the teaching of Jesus." + }, + { + "id": 15, + "question": "What title of nobility is immediately inferior to that of count ?", + "propositions": [ + "Viscount", + "Marquis", + "Archduke", + "Duke" + ], + "réponse": "Viscount", + "anecdote": "Viscount is a hereditary distinction that many claim but to which no powers are attached." + }, + { + "id": 16, + "question": "What is the capital of New Zealand, the country of Oceania southwest of the Pacific Ocean ?", + "propositions": [ + "Dublin", + "Sydney", + "Wellington", + "Auckland" + ], + "réponse": "Wellington", + "anecdote": "The third most populous city in the country, Wellington is statistically one of the twelve best cities in which to live." + }, + { + "id": 17, + "question": "Which film brought together Isabelle Adjani and Sharon Stone screens ?", + "propositions": [ + "Diabolique", + "Les sorcières", + "Les ensorceleuses", + "Ange et Démon" + ], + "réponse": "Diabolique", + "anecdote": "In the film « Diabolique », a teacher's wife and mistress team up to plan her assassination." + }, + { + "id": 18, + "question": "What is the Transat Jacques Vabre also called ?", + "propositions": [ + "Coffee route", + "Rum Route", + "Rum Trophy", + "Vendée Globe" + ], + "réponse": "Coffee route", + "anecdote": "The Transat Jacques Vabre or coffee route, a transatlantic double race, has been held every two years since 1993." + }, + { + "id": 19, + "question": "Which bird living in the northern hemisphere swims the fastest ?", + "propositions": [ + "Bécassine", + "Pie", + "Penguin", + "Martinet" + ], + "réponse": "Penguin", + "anecdote": "By abuse of language, the penguin is often confused with the penguin, because of its resemblance to the Great Penguin." + }, + { + "id": 20, + "question": "What is the largest of the planets in our Solar System ?", + "propositions": [ + "Uranus", + "Jupiter", + "Saturn", + "Neptune" + ], + "réponse": "Jupiter", + "anecdote": "Jupiter is a giant gas planet, the largest planet in the Solar System." + } + ], + "expert": [ + { + "id": 21, + "question": "Appeared 450 million years ago, to which animal class does the scorpion belong ?", + "propositions": [ + "Arachnids", + "Reptiles", + "Insects", + "Mammals" + ], + "réponse": "Arachnids", + "anecdote": "Scorpions are distinguished from spiders by a poisonous sting located at the end of their abdomen which can be fatal to humans." + }, + { + "id": 22, + "question": "What brother of an actress named Mary made the film « Saturday night fever » ?", + "propositions": [ + "John Payne", + "John Remezick", + "John Travolta", + "John Badham" + ], + "réponse": "John Badham", + "anecdote": "« Saturday Night Fever », produced by John Badham, was one of the main vectors for the dissemination of music and disco fashion." + }, + { + "id": 23, + "question": "In the Middle Ages, what was a fortified village called ?", + "propositions": [ + "Bastide", + "Rampart", + "Tour", + "Fortified castle" + ], + "réponse": "Bastide", + "anecdote": "Nowadays, the most famous country houses are those of Monflanquin, Monpazier, Grenada or even Libourne." + }, + { + "id": 24, + "question": "Which town in Kent is famous for its miraculous spring ?", + "propositions": [ + "Dartford", + "Tunbridge Wells", + "Ramsgate", + "Gillingham" + ], + "réponse": "Tunbridge Wells", + "anecdote": "Like Queen Victoria, many famous people came to Tunbridge Wells for a cure to take advantage of its miraculous source." + }, + { + "id": 25, + "question": "What wine-based appetizer is flavored with bitter and invigorating plants ?", + "propositions": [ + "Gentian", + "Vermouth", + "Piccolo", + "Kokebok" + ], + "réponse": "Vermouth", + "anecdote": "In a classification from the driest to the mildest, we find dry vermouth, white, rose and red." + }, + { + "id": 26, + "question": "To which writer, member of the French Academy, do we owe the novel entitled « Le sagouin » ?", + "propositions": [ + "Mauriac", + "Barjavel", + "Camus", + "Giono" + ], + "réponse": "Mauriac", + "anecdote": "In the novel « Le sagouin », written in four parts, we can assume that the action took place around 1920." + }, + { + "id": 27, + "question": "Which French president died in an unusual situation ?", + "propositions": [ + "René Coty", + "Félix Faure", + "Georges Pompidou", + "Raymond Poincaré" + ], + "réponse": "Félix Faure", + "anecdote": "Following this unexpected death, it was often said of Félix Faure that he was a president more famous by his death than by his life." + }, + { + "id": 28, + "question": "What is the name of the mountain slope not located in the sun ?", + "propositions": [ + "Being", + "Surf", + "Adret", + "Ubac" + ], + "réponse": "Ubac", + "anecdote": "In the northern hemisphere, the ubac is generally the north face of a mountain while the adret represents the south face." + }, + { + "id": 29, + "question": "What palmiped bird has the particularity of building a floating nest ?", + "propositions": [ + "Grève", + "Grèle", + "Grebe", + "Grène" + ], + "réponse": "Grebe", + "anecdote": "The position of the legs, very short and very back in relation to the body, has earned the name the pretty name of feet behind." + }, + { + "id": 30, + "question": "A chuck, which owes its name to its resemblance to a duckbill, is a tool close to...", + "propositions": [ + "Wood chisel", + "Planer", + "Crankshaft", + "Mallet" + ], + "réponse": "Wood chisel", + "anecdote": "The chisel is a tool still sometimes used today to make wooden parts turned between points." + } + ] + }, + "de": { + "débutant": [ + { + "id": 1, + "question": "Welcher erfolgreiche Film kam auf den Leinwänden von Sean Connery und Christophe Lambert zusammen ?", + "propositions": [ + "Highlander", + "Mad Max", + "Subway", + "Greystoke" + ], + "réponse": "Highlander", + "anecdote": "« A Kind of Magic » ist ein Album der Gruppe Queen, das im Juni 1986 veröffentlicht wurde. Sechs der neun Songs werden im Film « Highlander » verwendet." + }, + { + "id": 2, + "question": "Welches Land, dessen erste Einwohner Newars waren, hat Kathmandu als Hauptstadt ?", + "propositions": [ + "Pakistan", + "Nordkorea", + "Tibet", + "Nepal" + ], + "réponse": "Nepal", + "anecdote": "Kathmandu ist die politische und religiöse Hauptstadt Nepals und die größte Stadt des Landes." + }, + { + "id": 3, + "question": "In welchem Film verkörpert John Travolta einen vom Himmel gefallenen Engel ?", + "propositions": [ + "Jerry", + "Sam", + "Michael", + "Johnny" + ], + "réponse": "Michael", + "anecdote": "In dem Film « Michael » untersuchen zwei Journalisten einen sogenannten echten Engel, der bei einer älteren Dame lebt." + }, + { + "id": 4, + "question": "Für welchen französischen Singer-Songwriter mit 40 Millionen verkauften Platten ist Capri fertig ?", + "propositions": [ + "Salvatore Adamo", + "Hervé Vilard", + "Charles Aznavour", + "Serge Lama" + ], + "réponse": "Hervé Vilard", + "anecdote": "Didier Barbelivien, Michel Fugain und Danyel Gérard standen auf der Liste der Künstler, die für Hervé Vilard komponiert haben." + }, + { + "id": 5, + "question": "Welcher 1844 geborene Maler wird auch von vielen Zollbeamten genannt ?", + "propositions": [ + "Salvador Dali", + "Edgar Degas", + "Pablo Picasso", + "Henri Rousseau" + ], + "réponse": "Henri Rousseau", + "anecdote": "Das erste bekannte Porträt des Malers Henri Rousseau scheint das seiner ersten Frau zu sein." + }, + { + "id": 6, + "question": "Welchen imaginären Charakter hat der Roman von E. R. Burroughs und das Kino populär gemacht ?", + "propositions": [ + "Nessie", + "Tarzan", + "Die Yeti", + "King-Kong" + ], + "réponse": "Tarzan", + "anecdote": "Edgar Rice Burroughs hat viele Science-Fiction- und Fantasy-Autoren sowie viele Filmemacher inspiriert." + }, + { + "id": 7, + "question": "Was ist der einzige Wert für Roulette, der die Farbe Grün trägt ?", + "propositions": [ + "Vierzig", + "Fünfzig", + "Dreizehn", + "Null" + ], + "réponse": "Null", + "anecdote": "Wenn der Dealer beim Roulette die Hand nimmt, setzt jeder Spieler auf eine Zahl, von der er hofft, dass sie gezogen wird, um die Wette zu gewinnen." + }, + { + "id": 8, + "question": "Was ist die Rasse von Columbos Hund, dem sehr hartnäckigen und einfühlsamen Inspektor des Fernsehens ?", + "propositions": [ + "Bichon", + "Barbet", + "Beagle", + "Basset" + ], + "réponse": "Basset", + "anecdote": "1978 unterbrochen, wurde die Fernsehserie « Columbo » 1989 wiederbelebt, immer noch mit Peter Falk in der Hauptrolle." + }, + { + "id": 9, + "question": "Was ist die kleinste auf einem Computer verwendbare Speichereinheit ?", + "propositions": [ + "Byte", + "Giga", + "Bit", + "Mega" + ], + "réponse": "Bit", + "anecdote": "Speicher ist eine wesentliche Hardwarekomponente vieler elektronischer Geräte, die in allen Computern und Konsolen vorhanden sind." + }, + { + "id": 10, + "question": "Wie heißt der Zahn eines Kindes im umgangssprachlichen Sprachgebrauch ?", + "propositions": [ + "Handschellen", + "Wärmflasche", + "Murmeltier", + "Quenotte" + ], + "réponse": "Quenotte", + "anecdote": "Es ist besonders wichtig, Ihre Zähne regelmäßig zu putzen, um die Ausbreitung von Hohlräumen im Mund zu vermeiden." + } + ], + "confirmé": [ + { + "id": 11, + "question": "Wo ist der berühmte amerikanische Marinestützpunkt Guantanamo, der für seine Zuverlässigkeit bekannt ist ?", + "propositions": [ + "Paraguay", + "Hawaii", + "Mexiko", + "Kuba" + ], + "réponse": "Kuba", + "anecdote": "Die hochsichere Basis von Guantanamo hält Personen und Personen fest, die als illegale Kombattanten qualifiziert sind." + }, + { + "id": 12, + "question": "Was ist die Spezialität des tunesischen Sportlers Oussama Mellouli ?", + "propositions": [ + "Boxen", + "Marathon", + "Fußball", + "Schwimmen" + ], + "réponse": "Schwimmen", + "anecdote": "Oussama Mellouli ist der erste tunesische Schwimmprofi, der diesen Titel gewonnen hat." + }, + { + "id": 13, + "question": "Welcher französische Schauspieler hat die erste Rolle in dem Film « Le Guépard » gewonnen ?", + "propositions": [ + "Jean Reno", + "Claude Brasseur", + "Alain Delon", + "Jean Gabin" + ], + "réponse": "Alain Delon", + "anecdote": "Der Film « Der Leopard », der den Schauspieler Alain Delon inszeniert, beschreibt den Sturz der italienischen Aristokratie, dessen Schlüssel die Bühne des Balls gibt." + }, + { + "id": 14, + "question": "Wer war der Gefährte des Paulus von Tarsus, der auch als Heiliger Paulus bekannt ist ?", + "propositions": [ + "Saint John", + "Heiliger Lukas", + "Heiliger Matthäus", + "Saint Mark" + ], + "réponse": "Heiliger Lukas", + "anecdote": "Ohne Teil der Zwölf zu sein, prägte der heilige Paulus das Christentum dennoch durch seine Interpretation der Lehre Jesu." + }, + { + "id": 15, + "question": "Welcher Adelstitel ist dem Grafentitel unmittelbar unterlegen ?", + "propositions": [ + "Herzog", + "Viscount", + "Erzherzog", + "Marquis" + ], + "réponse": "Viscount", + "anecdote": "Viscount ist eine erbliche Unterscheidung, die viele behaupten, an die aber keine Befugnisse gebunden sind." + }, + { + "id": 16, + "question": "Was ist die Hauptstadt von Neuseeland, das Land Ozeaniens südwestlich des Pazifischen Ozeans ?", + "propositions": [ + "Dublin", + "Wellington", + "Auckland", + "Sydney" + ], + "réponse": "Wellington", + "anecdote": "Wellington ist die drittgrößte Stadt des Landes und statistisch gesehen eine der zwölf besten Städte, in denen man leben kann." + }, + { + "id": 17, + "question": "Welcher Film brachte Isabelle Adjani und Sharon Stone zusammen ?", + "propositions": [ + "Ange et Démon", + "Les ensorceleuses", + "Les sorcières", + "Diabolique" + ], + "réponse": "Diabolique", + "anecdote": "In dem Film « Diabolique » planen die Frau und die Geliebte eines Lehrers gemeinsam ihre Ermordung." + }, + { + "id": 18, + "question": "Wie heißt der Transat Jacques Vabre auch ?", + "propositions": [ + "Rumroute", + "Kaffeeroute", + "Rum Trophy", + "Vendée Globe" + ], + "réponse": "Kaffeeroute", + "anecdote": "Der Transat Jacques Vabre oder Kaffeeroute, ein transatlantisches Doppelrennen, findet seit 1993 alle zwei Jahre statt." + }, + { + "id": 19, + "question": "Welcher Vogel auf der Nordhalbkugel schwimmt am schnellsten ?", + "propositions": [ + "Basscassine", + "Pinguin", + "Kuchen", + "Martinet" + ], + "réponse": "Pinguin", + "anecdote": "Durch Sprachmissbrauch wird der Pinguin oft mit dem Pinguin verwechselt, da er dem Großen Pinguin ähnelt." + }, + { + "id": 20, + "question": "Was ist der größte der Planeten in unserem Sonnensystem ?", + "propositions": [ + "Uranus", + "Saturn", + "Jupiter", + "Neptun" + ], + "réponse": "Jupiter", + "anecdote": "Jupiter ist ein riesiger Gasplanet, der größte Planet im Sonnensystem." + } + ], + "expert": [ + { + "id": 21, + "question": "Vor 450 Millionen Jahren erschienen, zu welcher Tierklasse gehört der Skorpion ?", + "propositions": [ + "Spinnentiere", + "Reptilien", + "Insekten", + "Säugetiere" + ], + "réponse": "Spinnentiere", + "anecdote": "Skorpione unterscheiden sich von Spinnen durch einen giftigen Stich am Ende ihres Abdomens, der für den Menschen tödlich sein kann." + }, + { + "id": 22, + "question": "Welcher Bruder einer Schauspielerin namens Mary drehte den Film « Saturday Night Fever » ?", + "propositions": [ + "John Remezick", + "John Badham", + "John Travolta", + "John Payne" + ], + "réponse": "John Badham", + "anecdote": "Das von John Badham produzierte « Saturday Night Fever » war einer der Hauptvektoren für die Verbreitung von Musik und Disco-Mode." + }, + { + "id": 23, + "question": "Wie hieß ein befestigtes Dorf im Mittelalter ?", + "propositions": [ + "Tour", + "Befestigtes schloss", + "Wall", + "Bastide" + ], + "réponse": "Bastide", + "anecdote": "Heutzutage sind die bekanntesten Landhäuser die von Monflanquin, Monpazier, Grenada oder sogar Libourne." + }, + { + "id": 24, + "question": "Welche Stadt in Kent ist berühmt für ihren wunderbaren Frühling ?", + "propositions": [ + "Tunbridge Wells", + "Gillingham", + "Ramsgate", + "Dartford" + ], + "réponse": "Tunbridge Wells", + "anecdote": "Wie Königin Victoria kamen viele berühmte Persönlichkeiten nach Tunbridge Wells, um die wundersame Quelle zu heilen." + }, + { + "id": 25, + "question": "Welche Vorspeise auf Weinbasis ist mit bitteren und belebenden Pflanzen aromatisiert ?", + "propositions": [ + "Wermut", + "Kokebok", + "Enzian", + "Piccolo" + ], + "réponse": "Wermut", + "anecdote": "In einer Einteilung vom trockensten zum mildesten finden wir trockenen Wermut, Weiß, Rosé und Rot." + }, + { + "id": 26, + "question": "Welchem Schriftsteller, Mitglied der französischen Akademie, verdanken wir den Roman « Le sagouin » ?", + "propositions": [ + "Barjavel", + "Camus", + "Mauriac", + "Giono" + ], + "réponse": "Mauriac", + "anecdote": "In dem vierteiligen Roman « Le sagouin » können wir davon ausgehen, dass die Handlung um 1920 stattgefunden hat." + }, + { + "id": 27, + "question": "Welcher französische Präsident ist in einer ungewöhnlichen Situation gestorben ?", + "propositions": [ + "Raymond Poincaré", + "René Coty", + "Félix Faure", + "Georges Pompidou" + ], + "réponse": "Félix Faure", + "anecdote": "Nach diesem unerwarteten Tod wurde von Félix Faure oft gesagt, dass er ein Präsident war, der durch seinen Tod berühmter war als durch sein Leben." + }, + { + "id": 28, + "question": "Wie heißt der Berghang, der nicht in der Sonne liegt ?", + "propositions": [ + "Ubac", + "Surf", + "Adret", + "Sein" + ], + "réponse": "Ubac", + "anecdote": "In der nördlichen Hemisphäre ist der Ubac im Allgemeinen die Nordwand eines Berges, während der Adret die Südwand darstellt." + }, + { + "id": 29, + "question": "Welcher Palmenvogel hat die Besonderheit, ein schwimmendes Nest zu bauen ?", + "propositions": [ + "Grève", + "Grèbe", + "Grèle", + "Grène" + ], + "réponse": "Grèbe", + "anecdote": "Die Position der Beine, sehr kurz und sehr zurück in Bezug auf den Körper, hat den Namen den hübschen Namen der Füße hinter sich gebracht." + }, + { + "id": 30, + "question": "Ein Spannfutter, das seinen Namen einer Entenschnabelähnlichkeit verdankt, ist ein Werkzeug in der Nähe von...", + "propositions": [ + "Mallet", + "Kurbelwelle", + "Holzmeißel", + "Hobel" + ], + "réponse": "Holzmeißel", + "anecdote": "Der Meißel ist ein Werkzeug, das auch heute noch verwendet wird, um Holzteile zwischen Punkten zu drehen." + } + ] + }, + "es": { + "débutant": [ + { + "id": 1, + "question": "¿Qué película exitosa se unió en las pantallas de Sean Connery y Christophe Lambert ?", + "propositions": [ + "Subway", + "Greystoke", + "Highlander", + "Mad Max" + ], + "réponse": "Highlander", + "anecdote": "« A Kind of Magic » es un álbum del grupo Queen, lanzado en junio de 1986, seis de sus nueve canciones utilizadas en la película « Highlander »." + }, + { + "id": 2, + "question": "¿Qué país, cuyos primeros habitantes fueron Newars, tiene a Katmandú como su capital ?", + "propositions": [ + "Corea del Norte", + "Nepal", + "Pakistán", + "Tibet" + ], + "réponse": "Nepal", + "anecdote": "Katmandú es la capital política y religiosa de Nepal y la ciudad más grande del país." + }, + { + "id": 3, + "question": "¿En qué película encarna John Travolta a un ángel caído del cielo ?", + "propositions": [ + "Jerry", + "Michael", + "Sam", + "Johnny" + ], + "réponse": "Michael", + "anecdote": "En la película « Michael », dos periodistas investigan un supuesto ángel real que vive con una anciana." + }, + { + "id": 4, + "question": "¿Para qué cantante y compositor francés con 40 millones de discos vendidos se acabó Capri ?", + "propositions": [ + "Charles Aznavour", + "Serge Lama", + "Salvatore Adamo", + "Hervé Vilard" + ], + "réponse": "Hervé Vilard", + "anecdote": "Didier Barbelivien, Michel Fugain y Danyel Gérard fueron parte de la lista de artistas que compusieron para Hervé Vilard." + }, + { + "id": 5, + "question": "¿Qué pintor, nacido en 1844, también es llamado por muchos oficiales de aduanas ?", + "propositions": [ + "Salvador Dali", + "Edgar Degas", + "Pablo Picasso", + "Henri Rousseau" + ], + "réponse": "Henri Rousseau", + "anecdote": "El primer retrato conocido realizado por el pintor Henri Rousseau parece ser el de su primera esposa." + }, + { + "id": 6, + "question": "¿Qué personaje imaginario popularizó la novela de E.R. Burroughs y el cine ?", + "propositions": [ + "El Yeti", + "Tarzán", + "Nessie", + "King-Kong" + ], + "réponse": "Tarzán", + "anecdote": "Edgar Rice Burroughs ha inspirado a muchos escritores de ciencia ficción y fantasía, así como a muchos cineastas." + }, + { + "id": 7, + "question": "¿Cuál es el único valor para que la ruleta use el color verde ?", + "propositions": [ + "Cincuenta", + "Cero", + "Cuarenta", + "Trece" + ], + "réponse": "Cero", + "anecdote": "En la ruleta, cuando el crupier toma la mano, cada jugador apuesta por un número que espera ser sorteado para ganar la apuesta." + }, + { + "id": 8, + "question": "¿Cuál es la raza del perro de Columbo, el muy obstinado y perceptivo inspector de televisión ?", + "propositions": [ + "Beagle", + "Barbet", + "Basset", + "Bichon" + ], + "réponse": "Basset", + "anecdote": "Interrumpida en 1978, la serie de televisión « Columbo » fue revivida en 1989, aún con Peter Falk en el papel principal." + }, + { + "id": 9, + "question": "¿Cuál es la unidad de memoria más pequeña que se puede usar en una computadora ?", + "propositions": [ + "Byte", + "Giga", + "Bit", + "Mega" + ], + "réponse": "Bit", + "anecdote": "La memoria es un componente esencial del hardware de muchos dispositivos electrónicos, que se encuentra en todas las computadoras y consolas." + }, + { + "id": 10, + "question": "En lenguaje coloquial, ¿cómo se llama el diente de un niño ?", + "propositions": [ + "Quenotte", + "Marmota", + "Botella de agua caliente", + "Esposas" + ], + "réponse": "Quenotte", + "anecdote": "Es particularmente importante cepillarse los dientes regularmente para evitar la proliferación de caries en la boca." + } + ], + "confirmé": [ + { + "id": 11, + "question": "¿Dónde está la famosa base naval estadounidense de Guantánamo, famosa por su fiabilidad ?", + "propositions": [ + "Paraguay", + "Mexico", + "Cuba", + "Hawai" + ], + "réponse": "Cuba", + "anecdote": "La base de Guantánamo, muy segura, detiene a personas e individuos calificados como combatientes ilegales." + }, + { + "id": 12, + "question": "¿Cuál es la especialidad del deportista tunecino Oussama Mellouli ?", + "propositions": [ + "Natación", + "Fútbol", + "Maratón", + "Boxeo" + ], + "réponse": "Natación", + "anecdote": "Osama Mellouli es el primer campeón de natación profesional tunecino en ganar este título." + }, + { + "id": 13, + "question": "¿Qué actor francés ganó el primer papel en la película « Le Guépard » ?", + "propositions": [ + "Jean Gabin", + "Jean Reno", + "Alain Delon", + "Claude Brasseur" + ], + "réponse": "Alain Delon", + "anecdote": "La película « El gatopardo », que representa al actor Alain Delon, describe la caída de la aristocracia italiana, de la cual el escenario del balón da la clave." + }, + { + "id": 14, + "question": "¿Quién fue el compañero de Pablo de Tarso, también conocido como San Pablo ?", + "propositions": [ + "San mateo", + "San lucas", + "San Marcos", + "San juan" + ], + "réponse": "San lucas", + "anecdote": "Sin ser parte de los Doce, San Pablo, sin embargo, marcó el cristianismo por su interpretación de la enseñanza de Jesús." + }, + { + "id": 15, + "question": "¿Qué título de nobleza es inmediatamente inferior al de conde ?", + "propositions": [ + "Marqués", + "Archiduque", + "Vizconde", + "Duque" + ], + "réponse": "Vizconde", + "anecdote": "Vizconde es una distinción hereditaria que muchos afirman pero a la que no se atribuyen poderes." + }, + { + "id": 16, + "question": "¿Cuál es la capital de Nueva Zelanda, el país de Oceanía al suroeste del Océano Pacífico ?", + "propositions": [ + "Wellington", + "Dublín", + "Auckland", + "Sydney" + ], + "réponse": "Wellington", + "anecdote": "La tercera ciudad más poblada del país, Wellington es estadísticamente una de las doce mejores ciudades para vivir." + }, + { + "id": 17, + "question": "¿Qué película reunió a las pantallas de Isabelle Adjani y Sharon Stone ?", + "propositions": [ + "Les ensorceleuses", + "Les sorcières", + "Diabolique", + "Ange et Démon" + ], + "réponse": "Diabolique", + "anecdote": "En la película « Diabolique », la esposa y la amante de un maestro se unen para planear su asesinato." + }, + { + "id": 18, + "question": "¿Cómo se llama también la Transat Jacques Vabre ?", + "propositions": [ + "Trofeo de ron", + "Ruta del café", + "Ruta del Ron", + "Vendée Globe" + ], + "réponse": "Ruta del café", + "anecdote": "La Transat Jacques Vabre o ruta del café, una doble carrera transatlántica, se celebra cada dos años desde 1993." + }, + { + "id": 19, + "question": "¿Qué ave que vive en el hemisferio norte nada más rápido ?", + "propositions": [ + "Martinet", + "Bécassine", + "Pingüino", + "Pastel" + ], + "réponse": "Pingüino", + "anecdote": "Por abuso del lenguaje, el pingüino a menudo se confunde con el pingüino, debido a su parecido con el Gran Pingüino." + }, + { + "id": 20, + "question": "¿Cuál es el más grande de los planetas en nuestro Sistema Solar ?", + "propositions": [ + "Júpiter", + "Saturno", + "Urano", + "Neptuno" + ], + "réponse": "Júpiter", + "anecdote": "Júpiter es un planeta gaseoso gigante, el planeta más grande del Sistema Solar." + } + ], + "expert": [ + { + "id": 21, + "question": "Apareció hace 450 millones de años, ¿a qué clase de animal pertenece el escorpión ?", + "propositions": [ + "Insectos", + "Arácnidos", + "Reptiles", + "Mamíferos" + ], + "réponse": "Arácnidos", + "anecdote": "Los escorpiones se distinguen de las arañas por una picadura venenosa ubicada en el extremo de su abdomen que puede ser fatal para los humanos." + }, + { + "id": 22, + "question": "¿Qué hermano de una actriz llamada Mary hizo la película « Fiebre del sábado por la noche » ?", + "propositions": [ + "John Badham", + "John Payne", + "John Remezick", + "John Travolta" + ], + "réponse": "John Badham", + "anecdote": "« Saturday Night Fever », producida por John Badham, fue uno de los principales vectores para la difusión de la música y la moda disco." + }, + { + "id": 23, + "question": "En la Edad Media, ¿cómo se llamaba un pueblo fortificado ?", + "propositions": [ + "Tour", + "Muralla", + "Castillo fortificado", + "Bastide" + ], + "réponse": "Bastide", + "anecdote": "Hoy en día, las casas de campo más famosas son las de Monflanquin, Monpazier, Granada o incluso Libourne." + }, + { + "id": 24, + "question": "¿Qué ciudad de Kent es famosa por su milagrosa primavera ?", + "propositions": [ + "Tunbridge Wells", + "Gillingham", + "Dartford", + "Ramsgate" + ], + "réponse": "Tunbridge Wells", + "anecdote": "Al igual que la reina Victoria, muchas personas famosas vinieron a Tunbridge Wells para curarse y aprovechar su fuente milagrosa." + }, + { + "id": 25, + "question": "¿Qué aperitivo a base de vino está aromatizado con plantas amargas y vigorizantes ?", + "propositions": [ + "Kokebok", + "Vermut", + "Piccolo", + "Genciana" + ], + "réponse": "Vermut", + "anecdote": "En una clasificación de la más seca a la más suave, encontramos vermut seco, blanco, rosado y rojo." + }, + { + "id": 26, + "question": "¿A qué escritor, miembro de la Academia Francesa, le debemos la novela titulada « Le sagouin » ?", + "propositions": [ + "Mauriac", + "Camus", + "Giono", + "Barjavel" + ], + "réponse": "Mauriac", + "anecdote": "En la novela « Le sagouin », escrita en cuatro partes, podemos suponer que la acción tuvo lugar alrededor de 1920." + }, + { + "id": 27, + "question": "¿Qué presidente francés murió en una situación inusual ?", + "propositions": [ + "Raymond Poincaré", + "René Coty", + "Félix Faure", + "Georges Pompidou" + ], + "réponse": "Félix Faure", + "anecdote": "Después de esta muerte inesperada, a menudo se decía de Félix Faure que era un presidente más famoso por su muerte que por su vida." + }, + { + "id": 28, + "question": "¿Cuál es el nombre de la ladera de la montaña que no se encuentra en el sol ?", + "propositions": [ + "Ubac", + "Adret", + "Surf", + "Ser" + ], + "réponse": "Ubac", + "anecdote": "En el hemisferio norte, el ubac es generalmente la cara norte de una montaña, mientras que el adret representa la cara sur." + }, + { + "id": 29, + "question": "¿Qué pájaro palmeado tiene la particularidad de construir un nido flotante ?", + "propositions": [ + "Grève", + "Grène", + "Grèle", + "Grèbe" + ], + "réponse": "Grèbe", + "anecdote": "La posición de las piernas, muy cortas y muy hacia atrás en relación con el cuerpo, le ha valido el nombre bonito de pies detrás." + }, + { + "id": 30, + "question": "Un mandril, que debe su nombre a su parecido con una pico de pato, es una herramienta cercana a...", + "propositions": [ + "Cigüeñal", + "Mazo", + "Cepilladora", + "Cincel de madera" + ], + "réponse": "Cincel de madera", + "anecdote": "El cincel es una herramienta que a veces todavía se usa hoy en día para hacer piezas de madera giradas entre puntos." + } + ] + }, + "it": { + "débutant": [ + { + "id": 1, + "question": "Quale film di successo si è unito sugli schermi di Sean Connery e Christophe Lambert ?", + "propositions": [ + "Greystoke", + "Mad Max", + "Subway", + "Highlander" + ], + "réponse": "Highlander", + "anecdote": "« A Kind of Magic » è un album del gruppo Queen, pubblicato nel giugno 1986, sei delle sue nove canzoni sono state usate nel film « Highlander »." + }, + { + "id": 2, + "question": "Quale paese, i cui primi abitanti furono Newars, ha Kathmandu come capitale ?", + "propositions": [ + "Pakistan", + "Nepal", + "Corea del Nord", + "Tibet" + ], + "réponse": "Nepal", + "anecdote": "Kathmandu è la capitale politica e religiosa del Nepal e la più grande città del paese." + }, + { + "id": 3, + "question": "In quale film John Travolta incarna un angelo caduto dal cielo ?", + "propositions": [ + "Johnny", + "Jerry", + "Michael", + "Sam" + ], + "réponse": "Michael", + "anecdote": "Nel film « Michael », due giornalisti indagano su un cosiddetto vero angelo che vive con una signora anziana." + }, + { + "id": 4, + "question": "Per quale cantautore francese con 40 milioni di dischi venduti è finita Capri ?", + "propositions": [ + "Hervé Vilard", + "Serge Lama", + "Salvatore Adamo", + "Charles Aznavour" + ], + "réponse": "Hervé Vilard", + "anecdote": "Didier Barbelivien, Michel Fugain e Danyel Gérard facevano parte della lista di artisti che componevano per Hervé Vilard." + }, + { + "id": 5, + "question": "Quale pittore, nato nel 1844, è anche chiamato da molti doganiere ?", + "propositions": [ + "Pablo Picasso", + "Salvador Dali", + "Edgar Degas", + "Henri Rousseau" + ], + "réponse": "Henri Rousseau", + "anecdote": "Il primo ritratto noto realizzato dal pittore Henri Rousseau sembra essere quello della sua prima moglie." + }, + { + "id": 6, + "question": "Quale personaggio immaginario è stato reso popolare dal romanzo di E.R. Burroughs e dal cinema ?", + "propositions": [ + "Nessie", + "Tarzan", + "King-Kong", + "The Yeti" + ], + "réponse": "Tarzan", + "anecdote": "Edgar Rice Burroughs ha ispirato molti scrittori di fantascienza e fantasy, nonché molti registi." + }, + { + "id": 7, + "question": "Qual è l'unico valore per la roulette di indossare il colore verde ?", + "propositions": [ + "Cinquanta", + "Tredici", + "Quaranta", + "pari a zero" + ], + "réponse": "pari a zero", + "anecdote": "Nella roulette, quando il banco prende la mano, ogni giocatore punta su un numero che spera di essere pescato per vincere la scommessa." + }, + { + "id": 8, + "question": "Qual è la razza del cane di Columbo, l'ispettore molto ostinato e percettivo della televisione ?", + "propositions": [ + "Basset", + "Bichon", + "Barbet", + "Beagle" + ], + "réponse": "Basset", + "anecdote": "Interrotta nel 1978, la serie televisiva « Columbo » fu ripresa nel 1989, sempre con Peter Falk nel ruolo principale." + }, + { + "id": 9, + "question": "Qual è la più piccola unità di memoria utilizzabile su un computer ?", + "propositions": [ + "Mega", + "Byte", + "Bit", + "Giga" + ], + "réponse": "Bit", + "anecdote": "La memoria è un componente hardware essenziale di molti dispositivi elettronici, presente in tutti i computer e le console." + }, + { + "id": 10, + "question": "Nel linguaggio colloquiale, come si chiama il dente di un bambino ?", + "propositions": [ + "Manette", + "Quenotte", + "Marmotta", + "Borsa dell'acqua calda" + ], + "réponse": "Quenotte", + "anecdote": "È particolarmente importante lavarsi i denti regolarmente per evitare la proliferazione di cavità nella bocca." + } + ], + "confirmé": [ + { + "id": 11, + "question": "Dov'è la famosa base navale americana di Guantanamo, rinomata per la sua affidabilità ?", + "propositions": [ + "Hawaii", + "Paraguay", + "Messico", + "Cuba" + ], + "réponse": "Cuba", + "anecdote": "La base di Guantanamo, estremamente sicura, detiene persone e individui qualificati come combattenti fuorilegge." + }, + { + "id": 12, + "question": "Qual è la specialità dello sportivo tunisino Oussama Mellouli ?", + "propositions": [ + "Maratona", + "Nuoto", + "Calcio", + "Pugilato" + ], + "réponse": "Nuoto", + "anecdote": "Oussama Mellouli è il primo campione olimpico professionista di nuoto tunisino ad aver vinto questo titolo." + }, + { + "id": 13, + "question": "Quale attore francese ha vinto il primo ruolo nel film « Le Guépard » ?", + "propositions": [ + "Jean Gabin", + "Jean Reno", + "Alain Delon", + "Claude Brasseur" + ], + "réponse": "Alain Delon", + "anecdote": "Il film « Il Gattopardo », che mette in scena l'attore Alain Delon, descrive la caduta dell'aristocrazia italiana, di cui il palcoscenico della palla dà la chiave." + }, + { + "id": 14, + "question": "Chi era il compagno di Paolo di Tarso, noto anche come San Paolo ?", + "propositions": [ + "San Matteo", + "San Luca", + "San Giovanni", + "San Marco" + ], + "réponse": "San Luca", + "anecdote": "Senza far parte dei Dodici, San Paolo segnò tuttavia il cristianesimo con la sua interpretazione dell'insegnamento di Gesù." + }, + { + "id": 15, + "question": "Quale titolo di nobiltà è immediatamente inferiore a quello di conte ?", + "propositions": [ + "Duca", + "Visconte", + "Marchese", + "Arciduca" + ], + "réponse": "Visconte", + "anecdote": "Il visconte è una distinzione ereditaria che molti sostengono ma a cui non sono collegati poteri." + }, + { + "id": 16, + "question": "Qual è la capitale della Nuova Zelanda, il paese dell'Oceania a sud-ovest dell'Oceano Pacifico ?", + "propositions": [ + "Sydney", + "Wellington", + "Dublino", + "Auckland" + ], + "réponse": "Wellington", + "anecdote": "La terza città più popolosa del paese, Wellington è statisticamente una delle dodici migliori città in cui vivere." + }, + { + "id": 17, + "question": "Quale film ha riunito gli schermi di Isabelle Adjani e Sharon Stone ?", + "propositions": [ + "Ange et Démon", + "Les sorcières", + "Diabolique", + "Les ensorceleuses" + ], + "réponse": "Diabolique", + "anecdote": "Nel film « Diabolique », la moglie e la padrona di un insegnante si uniscono per pianificare il suo assassinio." + }, + { + "id": 18, + "question": "Come si chiama anche Transat Jacques Vabre ?", + "propositions": [ + "Vendée Globe", + "Percorso del rum", + "Trofeo Rum", + "Percorso del caffè" + ], + "réponse": "Percorso del caffè", + "anecdote": "La Transat Jacques Vabre o percorso del caffè, una doppia corsa transatlantica, si tiene ogni due anni dal 1993." + }, + { + "id": 19, + "question": "Quale uccello che vive nell'emisfero settentrionale nuota più velocemente ?", + "propositions": [ + "Penguin", + "Torta", + "Bassina", + "Martinet" + ], + "réponse": "Penguin", + "anecdote": "A causa dell'abuso del linguaggio, il pinguino viene spesso confuso con il pinguino, a causa della sua somiglianza con il Grande Pinguino." + }, + { + "id": 20, + "question": "Qual è il più grande dei pianeti nel nostro sistema solare ?", + "propositions": [ + "Giove", + "Nettuno", + "Saturno", + "Urano" + ], + "réponse": "Giove", + "anecdote": "Giove è un gigantesco pianeta gassoso, il più grande pianeta del Sistema Solare." + } + ], + "expert": [ + { + "id": 21, + "question": "Apparso 450 milioni di anni fa, a quale classe animale appartiene lo scorpione ?", + "propositions": [ + "Rettili", + "Insetti", + "Mammiferi", + "Aracnidi" + ], + "réponse": "Aracnidi", + "anecdote": "Gli scorpioni si distinguono dai ragni da una puntura velenosa situata all'estremità del loro addome che può essere fatale per l'uomo." + }, + { + "id": 22, + "question": "Quale fratello di un'attrice di nome Mary ha realizzato il film « Febbre del sabato sera » ?", + "propositions": [ + "John Payne", + "John Badham", + "John Remezick", + "John Travolta" + ], + "réponse": "John Badham", + "anecdote": "« La febbre del sabato sera », prodotta da John Badham, è stata uno dei principali vettori per la diffusione della musica e della moda da discoteca." + }, + { + "id": 23, + "question": "Nel Medioevo, come si chiamava un villaggio fortificato ?", + "propositions": [ + "Bastione", + "Tour", + "Castello fortificato", + "Bastide" + ], + "réponse": "Bastide", + "anecdote": "Oggi le case di campagna più famose sono quelle di Monflanquin, Monpazier, Grenada o persino di Libourne." + }, + { + "id": 24, + "question": "Quale città del Kent è famosa per la sua primavera miracolosa ?", + "propositions": [ + "Ramsgate", + "Gillingham", + "Tunbridge Wells", + "Dartford" + ], + "réponse": "Tunbridge Wells", + "anecdote": "Come la regina Vittoria, molti personaggi famosi vennero a Tunbridge Wells per una cura per sfruttare la sua fonte miracolosa." + }, + { + "id": 25, + "question": "Quale antipasto a base di vino è aromatizzato con piante amare e tonificanti ?", + "propositions": [ + "Genziana", + "Kokebok", + "Vermut", + "Piccolo" + ], + "réponse": "Vermut", + "anecdote": "In una classificazione dalla più secca alla più mite, troviamo vermouth dry, bianco, rosato e rosso." + }, + { + "id": 26, + "question": "A quale scrittore, membro dell'Accademia di Francia, dobbiamo il romanzo intitolato « Le sagouin » ?", + "propositions": [ + "Barjavel", + "Giono", + "Camus", + "Mauriac" + ], + "réponse": "Mauriac", + "anecdote": "Nel romanzo « Le sagouin », scritto in quattro parti, possiamo supporre che l'azione abbia avuto luogo intorno al 1920." + }, + { + "id": 27, + "question": "Quale presidente francese è morto in una situazione insolita ?", + "propositions": [ + "Raymond Poincaré", + "René Coty", + "Félix Faure", + "Georges Pompidou" + ], + "réponse": "Félix Faure", + "anecdote": "A seguito di questa morte inaspettata, Félix Faure ha detto spesso che era un presidente più famoso per la sua morte che per la sua vita." + }, + { + "id": 28, + "question": "Qual è il nome del pendio della montagna che non si trova al sole ?", + "propositions": [ + "Ubac", + "Surf", + "Essere", + "Adret" + ], + "réponse": "Ubac", + "anecdote": "Nell'emisfero nord, l'ubac è generalmente la parete nord di una montagna mentre l'adret rappresenta la parete sud." + }, + { + "id": 29, + "question": "Quale uccello palmiped ha la particolarità di costruire un nido galleggiante ?", + "propositions": [ + "Grèbe", + "Grène", + "Grèle", + "Grève" + ], + "réponse": "Grèbe", + "anecdote": "La posizione delle gambe, molto corta e molto arretrata rispetto al corpo, ha guadagnato il nome del bel nome di piedi dietro." + }, + { + "id": 30, + "question": "Un mandrino, che deve il suo nome alla sua somiglianza con un becco d'anatra, è uno strumento vicino...", + "propositions": [ + "Pialla", + "Maglio", + "Albero a gomito", + "Scalpello per legno" + ], + "réponse": "Scalpello per legno", + "anecdote": "Lo scalpello è uno strumento ancora oggi usato talvolta per realizzare parti in legno ruotate tra i punti." + } + ] + }, + "nl": { + "débutant": [ + { + "id": 1, + "question": "Welke succesvolle film kwam samen op de schermen van Sean Connery en Christophe Lambert ?", + "propositions": [ + "Greystoke", + "Highlander", + "Subway", + "Mad Max" + ], + "réponse": "Highlander", + "anecdote": "« A Kind of Magic » is een album van de groep Queen, uitgebracht in juni 1986, zes van de negen nummers worden gebruikt in de film « Highlander »." + }, + { + "id": 2, + "question": "Welk land, waarvan de eerste inwoners Newars waren, heeft Kathmandu als hoofdstad ?", + "propositions": [ + "Tibet", + "Pakistan", + "Noord-Korea", + "Nepal" + ], + "réponse": "Nepal", + "anecdote": "Kathmandu is de politieke en religieuze hoofdstad van Nepal en de grootste stad van het land." + }, + { + "id": 3, + "question": "In welke film belichaamt John Travolta een uit de lucht gevallen engel ?", + "propositions": [ + "Jerry", + "Michael", + "Johnny", + "Sam" + ], + "réponse": "Michael", + "anecdote": "In de film « Michael » onderzoeken twee journalisten een zogenaamde echte engel die bij een oudere dame woont." + }, + { + "id": 4, + "question": "Voor welke Franse singer-songwriter met 40 miljoen verkochte platen is Capri klaar ?", + "propositions": [ + "Charles Aznavour", + "Salvatore Adamo", + "Serge Lama", + "Hervé Vilard" + ], + "réponse": "Hervé Vilard", + "anecdote": "Didier Barbelivien, Michel Fugain en Danyel Gérard maakten deel uit van de lijst met artiesten die voor Hervé Vilard componeerden." + }, + { + "id": 5, + "question": "Welke schilder, geboren in 1844, wordt ook door velen de douanebeambte genoemd ?", + "propositions": [ + "Pablo Picasso", + "Henri Rousseau", + "Edgar Degas", + "Salvador Dali" + ], + "réponse": "Henri Rousseau", + "anecdote": "Het eerste bekende portret van de schilder Henri Rousseau lijkt dat van zijn eerste vrouw te zijn." + }, + { + "id": 6, + "question": "Welk denkbeeldig personage werd gepopulariseerd door de roman van E.R. Burroughs en door de bioscoop ?", + "propositions": [ + "Nessie", + "King-Kong", + "Tarzan", + "De Yeti" + ], + "réponse": "Tarzan", + "anecdote": "Edgar Rice Burroughs heeft vele sciencefiction- en fantasieschrijvers geïnspireerd, evenals vele filmmakers." + }, + { + "id": 7, + "question": "Wat is de enige waarde voor roulette om de kleur groen te dragen ?", + "propositions": [ + "Veertig", + "Dertien", + "Vijftig", + "zero" + ], + "réponse": "zero", + "anecdote": "In roulette, wanneer de dealer de hand neemt, zet elke speler in op een nummer dat hij hoopt te worden getrokken om de weddenschap te winnen." + }, + { + "id": 8, + "question": "Wat is het ras van Columbo's hond, de zeer koppige en opmerkzame inspecteur van televisie ?", + "propositions": [ + "Bichon", + "Basset", + "Barbet", + "Beagle" + ], + "réponse": "Basset", + "anecdote": "Onderbroken in 1978, werd de televisieserie « Columbo » nieuw leven ingeblazen in 1989, nog steeds met Peter Falk in de hoofdrol." + }, + { + "id": 9, + "question": "Wat is de kleinste geheugeneenheid die op een computer kan worden gebruikt ?", + "propositions": [ + "Mega", + "Bit", + "Giga", + "Byte" + ], + "réponse": "Bit", + "anecdote": "Geheugen is een essentieel hardwarecomponent van veel elektronische apparaten, te vinden op alle computers en consoles." + }, + { + "id": 10, + "question": "In de spreektaal, wat is de naam van de tand van een kind ?", + "propositions": [ + "Quenotte", + "Handboei", + "Heet waterfles", + "Groundhog" + ], + "réponse": "Quenotte", + "anecdote": "Het is vooral belangrijk om regelmatig uw tanden te poetsen om de verspreiding van gaatjes in de mond te voorkomen." + } + ], + "confirmé": [ + { + "id": 11, + "question": "Waar is de beroemde Amerikaanse marinebasis van Guantanamo, bekend om zijn betrouwbaarheid ?", + "propositions": [ + "Paraguay", + "Hawaii", + "Cuba", + "Mexico" + ], + "réponse": "Cuba", + "anecdote": "De Guantanamo-basis, zeer veilig, houdt personen en personen vast die gekwalificeerd zijn als illegale strijders." + }, + { + "id": 12, + "question": "Wat is de specialiteit van de Tunesische sportman Oussama Mellouli ?", + "propositions": [ + "Voetbal", + "Boksen", + "Zwemmen", + "Marathon" + ], + "réponse": "Zwemmen", + "anecdote": "Osama Mellouli is de eerste Tunesische professionele zwemkampioen die deze titel wint." + }, + { + "id": 13, + "question": "Welke Franse acteur won de eerste rol in de film « Le Guépard » ?", + "propositions": [ + "Claude Brasseur", + "Jean Reno", + "Alain Delon", + "Jean Gabin" + ], + "réponse": "Alain Delon", + "anecdote": "De film « Il gattopardo », met de acteur Alain Delon, beschrijft de val van de Italiaanse aristocratie, waarvan de fase van de bal de sleutel is." + }, + { + "id": 14, + "question": "Wie was de metgezel van Paulus van Tarsus, ook bekend als Sint Paulus ?", + "propositions": [ + "Sint Marcus", + "Saint John", + "Saint Luke", + "Mattheüs" + ], + "réponse": "Saint Luke", + "anecdote": "Zonder deel uit te maken van de Twaalf, markeerde Saint Paul desondanks het christendom door zijn interpretatie van de leer van Jezus." + }, + { + "id": 15, + "question": "Welke adellijke titel is onmiddellijk ondergeschikt aan die van graaf ?", + "propositions": [ + "Aartshertog", + "Hertog", + "Markies", + "Burggraaf" + ], + "réponse": "Burggraaf", + "anecdote": "Burggraaf is een erfelijk onderscheid dat velen beweren maar waaraan geen bevoegdheden zijn verbonden." + }, + { + "id": 16, + "question": "Wat is de hoofdstad van Nieuw-Zeeland, het land van Oceani ? ten zuidwesten van de Stille Oceaan ?", + "propositions": [ + "Auckland", + "Dublin", + "Wellington", + "Sydney" + ], + "réponse": "Wellington", + "anecdote": "Wellington is de derde meest bevolkte stad van het land en is statistisch gezien een van de twaalf beste steden om in te wonen." + }, + { + "id": 17, + "question": "Welke film bracht de schermen van Isabelle Adjani en Sharon Stone samen ?", + "propositions": [ + "Ange et Démon", + "Diabolique", + "Les ensorceleuses", + "Les sorcières" + ], + "réponse": "Diabolique", + "anecdote": "In de film « Diabolique » werken een vrouw en een minnares van een leraar samen om haar moord te plannen." + }, + { + "id": 18, + "question": "Hoe wordt de Transat Jacques Vabre ook genoemd ?", + "propositions": [ + "Rumroute", + "Rum Trophy", + "Vendée Globe", + "Koffieroute" + ], + "réponse": "Koffieroute", + "anecdote": "De Transat Jacques Vabre of koffieroute, een transatlantische dubbele race, wordt sinds 1993 om de twee jaar gehouden." + }, + { + "id": 19, + "question": "Welke vogel op het noordelijk halfrond zwemt het snelst ?", + "propositions": [ + "Penguin", + "Bécassine", + "Taart", + "Martinet" + ], + "réponse": "Penguin", + "anecdote": "Door taalmisbruik wordt de pinguïn vaak verward met de pinguïn vanwege zijn gelijkenis met de grote pinguïn." + }, + { + "id": 20, + "question": "Wat is de grootste van de planeten in ons zonnestelsel ?", + "propositions": [ + "Saturnus", + "Neptunus", + "Jupiter", + "Uranus" + ], + "réponse": "Jupiter", + "anecdote": "Jupiter is een gigantische gasplaneet, de grootste planeet in het zonnestelsel." + } + ], + "expert": [ + { + "id": 21, + "question": "Verscheen 450 miljoen jaar geleden, tot welke dierklasse behoort de schorpioen ?", + "propositions": [ + "Insecten", + "Zoogdieren", + "Spinachtigen", + "Reptielen" + ], + "réponse": "Spinachtigen", + "anecdote": "Schorpioenen onderscheiden zich van spinnen door een giftige steek aan het einde van hun buik die fataal kan zijn voor mensen." + }, + { + "id": 22, + "question": "Welke broer van een actrice genaamd Mary maakte de film « Saturday night fever » ?", + "propositions": [ + "John Travolta", + "John Badham", + "John Payne", + "John Remezick" + ], + "réponse": "John Badham", + "anecdote": "« Saturday Night Fever », geproduceerd door John Badham, was een van de belangrijkste vectoren voor de verspreiding van muziek en discomode." + }, + { + "id": 23, + "question": "Hoe heette een versterkt dorp in de middeleeuwen ?", + "propositions": [ + "Tour", + "Borstwering", + "Versterkt kasteel", + "Bastide" + ], + "réponse": "Bastide", + "anecdote": "Tegenwoordig zijn de beroemdste landhuizen die van Monflanquin, Monpazier, Grenada of zelfs Libourne." + }, + { + "id": 24, + "question": "Welke stad in Kent is beroemd om zijn wonderbaarlijke lente ?", + "propositions": [ + "Tunbridge Wells", + "Ramsgate", + "Gillingham", + "Dartford" + ], + "réponse": "Tunbridge Wells", + "anecdote": "Net als koningin Victoria kwamen veel beroemde mensen naar Tunbridge Wells voor een remedie om te profiteren van de wonderbaarlijke bron." + }, + { + "id": 25, + "question": "Welk voorgerecht op basis van wijn is op smaak gebracht met bittere en verkwikkende planten ?", + "propositions": [ + "Piccolo", + "Gentiaan", + "Kokebok", + "Vermouth" + ], + "réponse": "Vermouth", + "anecdote": "In een classificatie van de droogste tot de mildste vinden we droge vermout, wit, rose en rood." + }, + { + "id": 26, + "question": "Aan welke schrijver, lid van de Franse Academie, zijn we de roman « Le sagouin » verschuldigd ?", + "propositions": [ + "Camus", + "Mauriac", + "Giono", + "Barjavel" + ], + "réponse": "Mauriac", + "anecdote": "In de roman « Le sagouin », geschreven in vier delen, kunnen we aannemen dat de actie plaatsvond rond 1920." + }, + { + "id": 27, + "question": "Welke Franse president stierf in een ongewone situatie ?", + "propositions": [ + "Georges Pompidou", + "Raymond Poincaré", + "René Coty", + "Félix Faure" + ], + "réponse": "Félix Faure", + "anecdote": "Na deze onverwachte dood werd er vaak van Félix Faure gezegd dat hij een president was die beroemder was door zijn dood dan door zijn leven." + }, + { + "id": 28, + "question": "Hoe heet de berghelling niet in de zon ?", + "propositions": [ + "Adret", + "Zijn", + "Surf", + "Ubac" + ], + "réponse": "Ubac", + "anecdote": "Op het noordelijk halfrond is de ubac meestal de noordwand van een berg, terwijl de adret de zuidwand vertegenwoordigt." + }, + { + "id": 29, + "question": "Welke gepalipeerde vogel heeft de bijzonderheid een drijvend nest te bouwen ?", + "propositions": [ + "Grève", + "Grène", + "Grèle", + "Grèbe" + ], + "réponse": "Grèbe", + "anecdote": "De positie van de benen, zeer kort en zeer terug ten opzichte van het lichaam, heeft bij de fuut de mooie naam van de voeten erachter verdiend." + }, + { + "id": 30, + "question": "Een klauwplaat, die zijn naam dankt aan zijn gelijkenis met een eendenbek, is een hulpmiddel in de buurt van...", + "propositions": [ + "Krukas", + "Houten beitel", + "Schaafmachine", + "Mallet" + ], + "réponse": "Houten beitel", + "anecdote": "De beitel is een hulpmiddel dat tegenwoordig nog steeds soms wordt gebruikt om houten delen tussen punten te draaien." + } + ] + } + } +} \ No newline at end of file diff --git a/misc/quiz/openquizzdb/culture-vrac-1.json b/misc/quiz/openquizzdb/culture-vrac-1.json new file mode 100644 index 0000000..c484c1a --- /dev/null +++ b/misc/quiz/openquizzdb/culture-vrac-1.json @@ -0,0 +1,2250 @@ +{ + "fournisseur": "OpenQuizzDB - Fournisseur de contenu libre (https://www.openquizzdb.org)", + "licence": "CC BY-SA", + "rédacteur": "Philippe Bresoux", + "difficulté": "5 / 5", + "version": 1, + "mise-à-jour": "2024-04-04", + "catégorie-nom-slogan": { + "fr": { + "catégorie": "Culture générale", + "nom": "Culture en vrac #1", + "slogan": "De la culture à tous les niveaux" + }, + "en": { + "catégorie": "General knowledge", + "nom": "Bulk culture #1", + "slogan": "General culture at all levels" + }, + "es": { + "catégorie": "Cultura general", + "nom": "Cultivo a granel #1", + "slogan": "Cultura general a todos los niveles" + }, + "it": { + "catégorie": "Cultura generale", + "nom": "Cultura di massa #1", + "slogan": "Cultura generale a tutti i livelli" + }, + "de": { + "catégorie": "Allgemeine Kultur", + "nom": "Massenkultur #1", + "slogan": "Allgemeine Kultur auf allen Ebenen" + }, + "nl": { + "catégorie": "Algemene cultuur", + "nom": "Bulkcultuur #1", + "slogan": "Algemene cultuur op alle niveaus" + } + }, + "quizz": { + "fr": { + "débutant": [ + { + "id": 1, + "question": "Que jette-t-on sur le ring en cas d'abandon durant un match de boxe ?", + "propositions": [ + "Éponge", + "Culotte", + "Gant", + "Protège-dents" + ], + "réponse": "Éponge", + "anecdote": "Durant un match, l'arbitre est le garant principal de la sécurité des boxeurs et peut sanctionner les gestes interdits et dangereux." + }, + { + "id": 2, + "question": "Quelle espèce d'oiseaux, encore présente en Europe, gringotte, quiritte ou trille ?", + "propositions": [ + "Perroquet", + "Moineau", + "Rossignol", + "Corbeau" + ], + "réponse": "Rossignol", + "anecdote": "Son chant des plus mélodieux et des plus complexes a fasciné les chercheurs qui ont dénombré 260 séquences différentes." + }, + { + "id": 3, + "question": "Qui est devenu célèbre grâce au « Poinçonneur des Lilas », sorti en 1958 ?", + "propositions": [ + "Boris Vian", + "Charles Trenet", + "Johnny Hallyday", + "Serge Gainsbourg" + ], + "réponse": "Serge Gainsbourg", + "anecdote": "Un scopitone a été réalisé pour l'occasion par Jean Bacqué, produit par Pathé, montrant Gainsbourg dans le métro parisien." + }, + { + "id": 4, + "question": "Laquelle de ces professions ne peut-on associer au grand Léonard de Vinci ?", + "propositions": [ + "Botaniste", + "Sculpteur", + "Auteur dramatique", + "Peintre" + ], + "réponse": "Auteur dramatique", + "anecdote": "Léonard de Vinci, génie universel, est souvent décrit comme l'archétype et le symbole de l'homme de la Renaissance." + }, + { + "id": 5, + "question": "Fils de Laïos et de Jocaste, qui Oedipe a-t-il tué dans la mythologie grecque ?", + "propositions": [ + "Sa fille", + "Sa mère", + "Son père", + "Son fils" + ], + "réponse": "Son père", + "anecdote": "Oedipe est connu pour avoir résolu l'énigme du sphinx et pour s'être rendu involontairement coupable de parricide et d'inceste." + }, + { + "id": 6, + "question": "En France, à la Libération, combien se retrouvèrent à Notre-Dame de Paris ?", + "propositions": [ + "9 000", + "5 000", + "17 000", + "13 000" + ], + "réponse": "13 000", + "anecdote": "Le général de Gaulle a descendu le 26 août 1944 l'Arc de Triomphe vers Notre-Dame pour un office religieux après la libération de Paris." + }, + { + "id": 7, + "question": "En quelle année a été bu le premier Coca-Cola concocté par John Pemberton ?", + "propositions": [ + "1906", + "1946", + "1926", + "1886" + ], + "réponse": "1886", + "anecdote": "Contrairement à la chronologie officielle de l'entreprise, Coca-Cola ne s'est pas implantée en France en 1933, mais bien en 1919." + }, + { + "id": 8, + "question": "Dans quelle ville se sont déroulés les Jeux olympiques de 1900 ?", + "propositions": [ + "Athènes", + "Paris", + "Los Angeles", + "Rome" + ], + "réponse": "Paris", + "anecdote": "Aucune cérémonie d'ouverture ou de fermeture ne fut au programme, excepté un défilé des gymnastes à Vincennes." + }, + { + "id": 9, + "question": "À quelle substance naturelle ou synthétique la pénicilline est-elle associée ?", + "propositions": [ + "Antibiotique", + "Anesthésique", + "Soporifique", + "Analgésique" + ], + "réponse": "Antibiotique", + "anecdote": "À la base, la pénicilline est une toxine inoffensive pour l'homme synthétisée par certaines espèces de moisissures." + }, + { + "id": 10, + "question": "Quel prix Nobel Winston Leonard Spencer-Churchill a-t-il reçu en 1953 ?", + "propositions": [ + "Chimie", + "Paix", + "Physique", + "Littérature" + ], + "réponse": "Littérature", + "anecdote": "Winston Churchill reste à ce jour l'unique ancien Premier ministre britannique à avoir reçu, en 1953, le prix Nobel de littérature." + } + ], + "confirmé": [ + { + "id": 11, + "question": "« Le train sifflera trois fois » est un western américain de quel réalisateur ?", + "propositions": [ + "John Ford", + "George Stevens", + "Fred Zinnemann", + "Vincente Minnelli" + ], + "réponse": "Fred Zinnemann", + "anecdote": "L'album de Lucky Luke intitulé « Les Dalton à la noce » reprend la trame scénaristique générale et quelques passages-clés du film." + }, + { + "id": 12, + "question": "En quelle année a-t-on pu assister à l'inauguration du métro parisien ?", + "propositions": [ + "1880", + "1900", + "1860", + "1840" + ], + "réponse": "1900", + "anecdote": "Le métro de Paris comporte à ce jour seize lignes en site propre, essentiellement souterraines, totalisant près de 220 kilomètres." + }, + { + "id": 13, + "question": "Quel écrivain et journaliste littéraire français fut surnommé le taureau normand ?", + "propositions": [ + "Guy de Maupassant", + "Alfred de Musset", + "Victor Hugo", + "Honoré de Balzac" + ], + "réponse": "Guy de Maupassant", + "anecdote": "C'est un de ses biographes, Paul Morand, qui comparera ce Maupassant au physique robuste et athlétique à un taureau." + }, + { + "id": 14, + "question": "À quel autre objet peut-on associer le paléophone inventé par Charles Cros ?", + "propositions": [ + "Émetteur", + "Poste de radio", + "Disque à sillon", + "Téléphone" + ], + "réponse": "Disque à sillon", + "anecdote": "Faute de preuve, nul ne peut affirmer que Charles Cros ait pu réellement reproduire en 1877 le son qu'il avait réussi à enregistrer." + }, + { + "id": 15, + "question": "Durant quel siècle les pins furent-ils plantés dans la forêt des Landes de Gascogne ?", + "propositions": [ + "XIXe siècle", + "XVe siècle", + "XIIIe siècle", + "XVIIe siècle" + ], + "réponse": "XIXe siècle", + "anecdote": "D'une superficie de près d'un million d'hectares, la forêt des Landes est la plus grande forêt artificielle d'Europe occidentale." + }, + { + "id": 16, + "question": "Monsieur Diafoirus est un médecin issu de l'imagination de quel dramaturge ?", + "propositions": [ + "Molière", + "Corneille", + "Voltaire", + "Rabelais" + ], + "réponse": "Molière", + "anecdote": "« Le Malade imaginaire » est une comédie-ballet en trois actes représentée en 1673 et la dernière comédie écrite par Molière." + }, + { + "id": 17, + "question": "Par rapport à la vitesse duquel de ces éléments le mètre peut-il se définir ?", + "propositions": [ + "Son", + "Eau", + "Lumière", + "Vent" + ], + "réponse": "Lumière", + "anecdote": "La valeur du mètre est définie comme la distance parcourue par la lumière dans le vide en 1/299 792 458 de seconde." + }, + { + "id": 18, + "question": "Auquel de ces politiciens français Lénine aurait-il pu expliquer la révolution ?", + "propositions": [ + "Jacques Chirac", + "Raymond Barre", + "Robert Hue", + "Georges Marchais" + ], + "réponse": "Georges Marchais", + "anecdote": "Lénine est à l'origine de la Tchéka, police politique chargée d'éliminer les ennemis du nouveau régime qu'il mettait en place." + }, + { + "id": 19, + "question": "La perle à abdomen remarquable ou plécoptère est en fait...", + "propositions": [ + "Un insecte", + "Un coquillage", + "Un oiseau", + "Une fleur" + ], + "réponse": "Un insecte", + "anecdote": "Les plécoptères sont appelés mouches de pierre car ils se posent très fréquemment sur les pierres en bordure de cours d'eau." + }, + { + "id": 20, + "question": "Quel prolifique compositeur français est mort à Paris en 1918 ?", + "propositions": [ + "Georges Bizet", + "Édouard Lalo", + "Claude Debussy", + "Hector Berlioz" + ], + "réponse": "Claude Debussy", + "anecdote": "Une part importante de l'oeuvre de Claude Debussy est pour piano et utilise une palette sonore particulièrement riche et évocatrice." + } + ], + "expert": [ + { + "id": 21, + "question": "Pour quelle profession la ville de Crémone, située dans le nord de l'Italie, est-elle célèbre ?", + "propositions": [ + "Potier", + "Luthier", + "Peintre", + "Sabotier" + ], + "réponse": "Luthier", + "anecdote": "La ville est la patrie d'Antonio Giacomo Stradivari, dit Stradivarius, fabricant de violons, de violoncelles, d'altos et de guitares." + }, + { + "id": 22, + "question": "Autrefois, la phtisie désignait une des formes de quelle maladie ?", + "propositions": [ + "Tuberculose", + "Syphilis", + "Lèpre", + "Asthme" + ], + "réponse": "Tuberculose", + "anecdote": "La tuberculose est une maladie contagieuse infectieuse causée par une bactérie, avec des signes cliniques variables." + }, + { + "id": 23, + "question": "Par quel pays Macao a-t-elle été colonisée et administrée durant plus de 400 ans ?", + "propositions": [ + "Portugal", + "Angleterre", + "Allemagne", + "Espagne" + ], + "réponse": "Portugal", + "anecdote": "La ville de Macao est considérée comme le dernier comptoir ainsi que la dernière colonie européenne en Chine et en Asie." + }, + { + "id": 24, + "question": "Lequel de ces écrivains avait 40 ans à la naissance de Gustave Flaubert ?", + "propositions": [ + "Stendhal", + "Hugo", + "Favre", + "Balzac" + ], + "réponse": "Balzac", + "anecdote": "Gustave Flaubert a marqué la littérature par la profondeur de ses analyses psychologiques et son souci de réalisme." + }, + { + "id": 25, + "question": "Comment peut-on littéralement traduire le terme république d'Albanie ?", + "propositions": [ + "Pays des vivants", + "Pays des chevaux", + "Pays des aigles", + "Pays des morts" + ], + "réponse": "Pays des aigles", + "anecdote": "Le pays a un régime politique de type démocratie parlementaire, sa capitale est Tirana et sa langue officielle est l'albanais." + }, + { + "id": 26, + "question": "Dans quel état se trouve la prison américaine de Sing Sing, située sur les rives de l'Hudson ?", + "propositions": [ + "New York", + "Texas", + "Géorgie", + "Alabama" + ], + "réponse": "New York", + "anecdote": "La prison de Sing Sing est classée comme établissement de sécurité maximale et a été le lieu, avant 2004, d'exécutions capitales." + }, + { + "id": 27, + "question": "Quelle est probablement la rencontre la plus célèbre de Camp David en 1978 ?", + "propositions": [ + "Nixon-Brejnev", + "Reagan-Thatcher", + "Clinton-Arafat", + "Sadate-Begin" + ], + "réponse": "Sadate-Begin", + "anecdote": "Le Camp David, d'une superficie de 50 hectares dans le Maryland, est le lieu de villégiature officiel du président des États-Unis." + }, + { + "id": 28, + "question": "Dans quel journal est paru le célèbre « J'accuse... ! » d'Émile Zola ?", + "propositions": [ + "Humanité", + "Pravda", + "Figaro", + "Aurore" + ], + "réponse": "Aurore", + "anecdote": "Rédigé au cours de l'affaire Dreyfus, cet article est paru sous la forme d'une lettre ouverte au président français Félix Faure." + }, + { + "id": 29, + "question": "Dans quel pays coule le Shannon, traversant des successions interminables de lacs ?", + "propositions": [ + "Canada", + "États-Unis", + "Irlande", + "Israël" + ], + "réponse": "Irlande", + "anecdote": "Les 386 kilomètres du fleuve Shannon en font le plus long cours d'eau des Îles Britanniques et le plus abondant par son débit." + }, + { + "id": 30, + "question": "Quel philosophe français habitait 10, rue Monsieur-le-Prince à Paris ?", + "propositions": [ + "Pierre Leroux", + "Auguste Comte", + "Marcel Proust", + "Anatole France" + ], + "réponse": "Auguste Comte", + "anecdote": "Auguste Comte fut le secrétaire particulier puis collaborateur du comte de Saint-Simon, fondateur du mouvement saint-simonien." + } + ] + }, + "en": { + "débutant": [ + { + "id": 1, + "question": "What do you throw in the ring if you drop out during a boxing match ?", + "propositions": [ + "Glove", + "Sponge", + "Panties", + "Tooth protector" + ], + "réponse": "Sponge", + "anecdote": "During a match, the referee is the main guarantor of the boxers' safety and can sanction the forbidden and dangerous acts." + }, + { + "id": 2, + "question": "What species of birds still present in Europe gringotte, quiritte or trille ?", + "propositions": [ + "Crow", + "Parrot", + "Sparrow", + "Rossignol" + ], + "réponse": "Rossignol", + "anecdote": "His most melodious and complex singing fascinated the researchers who counted 260 different sequences." + }, + { + "id": 3, + "question": "Who became famous thanks to the « Poinçonneur des Lilas » released in 1958 ?", + "propositions": [ + "Charles Trenet", + "Boris Vian", + "Serge Gainsbourg", + "Johnny Hallyday" + ], + "réponse": "Serge Gainsbourg", + "anecdote": "A scopitone was produced for the occasion by Jean Bacqué, produced by Pathé, showing Gainsbourg in the Parisian metro." + }, + { + "id": 4, + "question": "Which of these professions can not be associated with the great Leonardo da Vinci ?", + "propositions": [ + "Botanist", + "Dramatic author", + "Painter", + "Sculptor" + ], + "réponse": "Dramatic author", + "anecdote": "Leonardo da Vinci, universal genius, is often described as the archetype and symbol of the Renaissance man." + }, + { + "id": 5, + "question": "Son of Laïos and Jocasta, who did Oedipus kill in Greek mythology ?", + "propositions": [ + "His father", + "His mother", + "His son", + "His daughter" + ], + "réponse": "His father", + "anecdote": "Oedipus is known to have solved the sphinx riddle and to have been involuntarily guilty of parricide and incest." + }, + { + "id": 6, + "question": "In France, at the Liberation, how many people ended up at Notre-Dame de Paris ?", + "propositions": [ + "13,000", + "17,000", + "9,000", + "5,000" + ], + "réponse": "13,000", + "anecdote": "General de Gaulle descended on August 26th the Arc de Triomphe to Notre-Dame for a religious service after the liberation of Paris." + }, + { + "id": 7, + "question": "In which year was the first Coca-Cola concocted by John Pemberton drunk ?", + "propositions": [ + "1886", + "1906", + "1926", + "1946" + ], + "réponse": "1886", + "anecdote": "Contrary to the official chronology of the company, Coca-Cola did not establish itself in France in 1933, but in 1919." + }, + { + "id": 8, + "question": "In which city did the 1900 Olympic Games take place ?", + "propositions": [ + "Athens", + "Paris", + "Los Angeles", + "Rome" + ], + "réponse": "Paris", + "anecdote": "No ceremony of opening or closing was on the program, with the exception of one of the gymnasts at Vincennes." + }, + { + "id": 9, + "question": "What natural or synthetic substance is penicillin associated with ?", + "propositions": [ + "Soporific", + "Antibiotic", + "Analgesic", + "Anesthetics" + ], + "réponse": "Antibiotic", + "anecdote": "Basically, penicillin is a harmless toxin for humans synthesized by certain species of mold." + }, + { + "id": 10, + "question": "Which Nobel Prize Winston Leonard Spencer-Churchill did he receive in 1953 ?", + "propositions": [ + "Physics", + "Peace", + "Literature", + "Chemistry" + ], + "réponse": "Literature", + "anecdote": "Winston Churchill remains to this day the only former British Prime Minister to have received, in 1953, the Nobel Prize for Literature." + } + ], + "confirmé": [ + { + "id": 11, + "question": "« The train will whistle three times » is an American western from which director ?", + "propositions": [ + "Vincente Minnelli", + "Fred Zinnemann", + "John Ford", + "George Stevens" + ], + "réponse": "Fred Zinnemann", + "anecdote": "Lucky Luke's album titled « Les Dalton à la noce » takes up the general storyline and some key passages from the film." + }, + { + "id": 12, + "question": "In which year was it possible to attend the inauguration of the Parisian metropolis ?", + "propositions": [ + "1880", + "1860", + "1900", + "1840" + ], + "réponse": "1900", + "anecdote": "To date, the metro of Paris has sixteen lines in its own right, essentially underground, totaling nearly 220 kilometers." + }, + { + "id": 13, + "question": "What writer and literary journalist from France was nicknamed the Norman bull ?", + "propositions": [ + "Guy de Maupassant", + "Victor Hugo", + "Honoré de Balzac", + "Alfred de Musset" + ], + "réponse": "Guy de Maupassant", + "anecdote": "It is one of his biographers, Paul Morand, who will compare this Maupassant with a robust and athletic physique to a bull." + }, + { + "id": 14, + "question": "To which other object can we associate the paleophone invented by Charles Cross ?", + "propositions": [ + "Disc groove", + "Phone", + "Emitter", + "Radio Station" + ], + "réponse": "Disc groove", + "anecdote": "For lack of evidence, no one can say that Charles Cros could actually reproduce in 1877 the sound he had managed to record." + }, + { + "id": 15, + "question": "During which century were the pines planted in the forest of the Landes de Gascogne ?", + "propositions": [ + "15th century", + "13th century", + "17th century", + "19th century" + ], + "réponse": "19th century", + "anecdote": "With a surface area of nearly one million hectares, the Landes forest is the largest artificial forest in Western Europe." + }, + { + "id": 16, + "question": "Mr. Diafoirus is a doctor from the imagination of what playwright ?", + "propositions": [ + "Corneille", + "Rabelais", + "Molière", + "Voltaire" + ], + "réponse": "Molière", + "anecdote": "« The Imaginary Ill » is a comedy-ballet in three acts represented in 1673 and the last comedy written by Molière." + }, + { + "id": 17, + "question": "In relation to the speed of which of these elements can the meter be defined ?", + "propositions": [ + "Wind", + "Water", + "Light", + "His" + ], + "réponse": "Light", + "anecdote": "The value of the meter is defined as the distance traveled by light in a vacuum in 1/299, 792, 458 seconds." + }, + { + "id": 18, + "question": "To which of these French politicians could Lenin explain the revolution ?", + "propositions": [ + "Georges Marchais", + "Robert Hue", + "Jacques Chirac", + "Raymond Barre" + ], + "réponse": "Georges Marchais", + "anecdote": "Lenin is at the origin of the Chechka, a political police tasked with eliminating all the enemies of the new regime he is setting up." + }, + { + "id": 19, + "question": "The remarkable pearl bead or plectrum is actually...", + "propositions": [ + "An insect", + "A bird", + "A flower", + "A shell" + ], + "réponse": "An insect", + "anecdote": "Plecoptera are called stone flies because they are very often found on the stones at the edge of streams." + }, + { + "id": 20, + "question": "What prolific French composer died in Paris in 1918 ?", + "propositions": [ + "Edouard Lalo", + "Georges Bizet", + "Hector Berlioz", + "Claude Debussy" + ], + "réponse": "Claude Debussy", + "anecdote": "An important part of Claude Debussy's work is for piano and uses a particularly rich and evocative sound palette." + } + ], + "expert": [ + { + "id": 21, + "question": "For which profession is the city of Cremona, located in the north of Italy, famous ?", + "propositions": [ + "Painter", + "Potter", + "Sabotier", + "Luthier" + ], + "réponse": "Luthier", + "anecdote": "The city is the homeland of Antonio Giacomo Stradivari, known as Stradivarius, maker of violins, cellos, violas and guitars." + }, + { + "id": 22, + "question": "In the past, phthisis was one of the forms of what disease ?", + "propositions": [ + "Asthma", + "Tuberculosis", + "Syphilis", + "Leprosy" + ], + "réponse": "Tuberculosis", + "anecdote": "Tuberculosis is a contagious infectious disease caused by a bacterium, with varying clinical signs." + }, + { + "id": 23, + "question": "By which country has Macao been colonized and administered for more than 400 years ?", + "propositions": [ + "Spain", + "Portugal", + "England", + "Germany" + ], + "réponse": "Portugal", + "anecdote": "The city of Macao is considered as the last trading post as well as the last European colony in China and Asia." + }, + { + "id": 24, + "question": "Which of these writers was 40 years old when Gustave Flaubert was born ?", + "propositions": [ + "Favre", + "Hugo", + "Stendhal", + "Balzac" + ], + "réponse": "Balzac", + "anecdote": "Gustave Flaubert has marked the literature by the depth of his psychological analyzes and his concern for realism." + }, + { + "id": 25, + "question": "How can one literally translate the Republican term of Albania ?", + "propositions": [ + "Country of Eagles", + "Country of the living", + "Horse Country", + "Land of the Dead" + ], + "réponse": "Country of Eagles", + "anecdote": "The country has a political system of parliamentary democracy, its capital is Tirana and its official language is Albanian." + }, + { + "id": 26, + "question": "In what state is the US Sing Sing prison, located on the banks of the Hudson ?", + "propositions": [ + "New York", + "Texas", + "Alabama", + "Geology" + ], + "réponse": "New York", + "anecdote": "Sing Sing Prison is classified as a maximum security institution and was the site of major executions before 2004." + }, + { + "id": 27, + "question": "What is probably the most famous meeting of Camp David in 1978 ?", + "propositions": [ + "Clinton-Arafat", + "Sadate-Begin", + "Nixon-Brezhnev", + "Reagan-Thatcher" + ], + "réponse": "Sadate-Begin", + "anecdote": "The 50-hectare Camp David in Maryland is the official holiday resort of the US President." + }, + { + "id": 28, + "question": "In which newspaper did the famous « J'accuse... ! » of Zola ?", + "propositions": [ + "Pravda", + "Humanity", + "Figaro", + "Aurore" + ], + "réponse": "Aurore", + "anecdote": "Written during the Dreyfus affair, this article appeared in the form of an open letter to the French president Félix Faure." + }, + { + "id": 29, + "question": "In which country does the Shannon flow, crossing endless estates of lakes ?", + "propositions": [ + "Ireland", + "Canada", + "Israel", + "United States" + ], + "réponse": "Ireland", + "anecdote": "The 386 kilometers of the Shannon River make it the longest river in the British Isles and the most abundant by its flow." + }, + { + "id": 30, + "question": "Which French philosopher lived at 10 rue Monsieur-le-Prince in Paris ?", + "propositions": [ + "Marcel Proust", + "Anatole France", + "Auguste Comte", + "Pierre Leroux" + ], + "réponse": "Auguste Comte", + "anecdote": "Auguste Comte was the private secretary and then collaborator of the Count of Saint-Simon, founder of the Saint-Simonian movement." + } + ] + }, + "de": { + "débutant": [ + { + "id": 1, + "question": "Was werfen Sie in den Ring, wenn Sie während eines Boxkampfes aussteigen ?", + "propositions": [ + "Schwamm", + "Handschuh", + "Höschen", + "Zahnschutz" + ], + "réponse": "Schwamm", + "anecdote": "Während eines Spiels ist der Schiedsrichter der Hauptgarant für die Sicherheit der Boxer und kann die verbotenen und gefährlichen Handlungen sanktionieren." + }, + { + "id": 2, + "question": "Welche Vogelarten sind in Europa immer noch Gringotte, Quiritte oder Trille ?", + "propositions": [ + "Spatz", + "Papagei", + "Krähe", + "Rossignol" + ], + "réponse": "Rossignol", + "anecdote": "Sein melodischer und komplexer Gesang faszinierte die Forscher, die 260 verschiedene Sequenzen gezählt hatten." + }, + { + "id": 3, + "question": "Wer wurde durch den 1958 erschienenen « Poinçonneur des Lilas » berühmt ?", + "propositions": [ + "Boris Vian", + "Johnny Hallyday", + "Serge Gainsbourg", + "Charles Trenet" + ], + "réponse": "Serge Gainsbourg", + "anecdote": "Zu diesem Anlass wurde von Jean Bacqué ein Scopiton produziert, das von Pathé produziert wurde und Gainsbourg in der Pariser Metro zeigt." + }, + { + "id": 4, + "question": "Welcher dieser Berufe kann nicht mit dem großen Leonardo da Vinci in Verbindung gebracht werden ?", + "propositions": [ + "Dramatischer Autor", + "Bildhauer", + "Botaniker", + "Maler" + ], + "réponse": "Dramatischer Autor", + "anecdote": "Leonardo da Vinci, Universalgenie, wird oft als Urtyp und Symbol des Renaissance-Mannes beschrieben." + }, + { + "id": 5, + "question": "Sohn von Laïos und Jocasta, wen hat Oedipus in der griechischen Mythologie getötet ?", + "propositions": [ + "Sein Vater", + "Sein Sohn", + "Seine Mutter", + "Seine tochter" + ], + "réponse": "Sein Vater", + "anecdote": "Von Ödipus ist bekannt, dass er das Sphinx-Rätsel gelöst hat und unfreiwillig Parrizide und Inzest begangen hat." + }, + { + "id": 6, + "question": "Wie viele Menschen landeten bei der Befreiung in Frankreich in Notre-Dame de Paris ?", + "propositions": [ + "5.000", + "13.000", + "17.000", + "9.000" + ], + "réponse": "13.000", + "anecdote": "General de Gaulle stieg am 26. August vom Triumphbogen nach Notre-Dame für einen Gottesdienst nach der Befreiung von Paris ab." + }, + { + "id": 7, + "question": "In welchem Jahr wurde der erste Coca-Cola von John Pemberton getrunken ?", + "propositions": [ + "1906", + "1946", + "1886", + "1926" + ], + "réponse": "1886", + "anecdote": "Entgegen der offiziellen Chronologie der Firma etablierte sich Coca-Cola 1933 nicht in Frankreich, sondern 1919." + }, + { + "id": 8, + "question": "In welcher Stadt fanden die Olympischen Spiele von 1900 statt ?", + "propositions": [ + "Rom", + "Los Angeles", + "Athen", + "Paris" + ], + "réponse": "Paris", + "anecdote": "Auf dem Programm stand keine Eröffnungs- oder Schließungszeremonie, mit Ausnahme einer der Turnerinnen in Vincennes." + }, + { + "id": 9, + "question": "Mit welcher natürlichen oder synthetischen Substanz wird Penicillin in Verbindung gebracht ?", + "propositions": [ + "Analgetikum", + "Anästhetika", + "Soporific", + "Antibiotikum" + ], + "réponse": "Antibiotikum", + "anecdote": "Penicillin ist im Grunde ein harmloses Toxin für den Menschen, das von bestimmten Schimmelpilzarten synthetisiert wird." + }, + { + "id": 10, + "question": "Welchen Nobelpreis erhielt Winston Leonard Spencer-Churchill 1953 ?", + "propositions": [ + "Frieden", + "Literatur", + "Chemie", + "Physik" + ], + "réponse": "Literatur", + "anecdote": "Winston Churchill ist bis heute der einzige britische Premierminister, der 1953 den Literaturnobelpreis erhalten hat." + } + ], + "confirmé": [ + { + "id": 11, + "question": "« Der Zug wird dreimal pfeifen » ist ein amerikanischer Western von welchem Regisseur ?", + "propositions": [ + "Vincente Minnelli", + "George Stevens", + "John Ford", + "Fred Zinnemann" + ], + "réponse": "Fred Zinnemann", + "anecdote": "Lucky Lukes Album mit dem Titel « Les Dalton à la noce » greift die allgemeine Geschichte und einige wichtige Passagen des Films auf." + }, + { + "id": 12, + "question": "In welchem Jahr konnte die Einweihung der Pariser Metropole besucht werden ?", + "propositions": [ + "1900", + "1880", + "1840", + "1860" + ], + "réponse": "1900", + "anecdote": "Bis heute verfügt die U-Bahn von Paris über sechzehn U-Bahnlinien mit einer Gesamtlänge von fast 220 Kilometern." + }, + { + "id": 13, + "question": "Welcher Schriftsteller und Literaturjournalist aus Frankreich wurde der normannische Bulle genannt ?", + "propositions": [ + "Honoré de Balzac", + "Guy de Maupassant", + "Alfred de Musset", + "Victor Hugo" + ], + "réponse": "Guy de Maupassant", + "anecdote": "Es ist einer seiner Biographen, Paul Morand, der diesen Maupassant mit einem robusten und athletischen Körper mit einem Bullen vergleichen wird." + }, + { + "id": 14, + "question": "Welchem anderen Objekt können wir das von Charles Cross erfundene Paläophon zuordnen ?", + "propositions": [ + "Radiosender", + "Scheibennut", + "Emitter", + "Telefon" + ], + "réponse": "Scheibennut", + "anecdote": "Aus Mangel an Beweisen kann niemand sagen, dass Charles Cros 1877 tatsächlich den Ton reproduzieren konnte, den er aufgenommen hatte." + }, + { + "id": 15, + "question": "In welchem Jahrhundert wurden die Kiefern im Wald der Landes de Gascogne gepflanzt ?", + "propositions": [ + "19. Jahrhundert", + "15. Jahrhundert", + "17. Jahrhundert", + "13. Jahrhundert" + ], + "réponse": "19. Jahrhundert", + "anecdote": "Der Landeswald ist mit einer Fläche von fast einer Million Hektar der größte künstliche Wald in Westeuropa." + }, + { + "id": 16, + "question": "Mr. Diafoirus ist ein Arzt aus der Vorstellung, welcher Dramatiker ?", + "propositions": [ + "Corneille", + "Rabelais", + "Molière", + "Voltaire" + ], + "réponse": "Molière", + "anecdote": "« The Imaginary Ill » ist ein Comedy-Ballett in drei Akten, das 1673 vertreten wurde und die letzte von Molière geschriebene Komödie." + }, + { + "id": 17, + "question": "In Bezug auf die Geschwindigkeit welcher dieser Elemente kann der Zähler definiert werden ?", + "propositions": [ + "Licht", + "Sein", + "Wind", + "Wasser" + ], + "réponse": "Licht", + "anecdote": "Der Wert des Messgeräts ist definiert als die Entfernung, die das Licht in einem Vakuum in 1/299, 792, 458 Sekunden zurücklegt." + }, + { + "id": 18, + "question": "Welchen dieser französischen Politiker konnte Lenin die Revolution erklären ?", + "propositions": [ + "Georges Marchais", + "Raymond Barre", + "Robert Hue", + "Jacques Chirac" + ], + "réponse": "Georges Marchais", + "anecdote": "Lenin ist der Ursprung der Tschetschka, einer politischen Polizei, die alle Feinde des neuen Regimes beseitigt, das er aufstellt." + }, + { + "id": 19, + "question": "Die bemerkenswerte Perlenperle oder das Plektrum ist eigentlich...", + "propositions": [ + "Eine blume", + "Ein Vogel", + "Ein Insekt", + "Eine Schale" + ], + "réponse": "Ein Insekt", + "anecdote": "Plecoptera werden Steinfliegen genannt, weil sie häufig auf den Steinen am Rand von Bächen gefunden werden." + }, + { + "id": 20, + "question": "Welcher produktive französische Komponist starb 1918 in Paris ?", + "propositions": [ + "Claude Debussy", + "Hector Berlioz", + "Edouard Lalo", + "Georges Bizet" + ], + "réponse": "Claude Debussy", + "anecdote": "Ein wichtiger Teil von Claude Debussys Arbeit ist für Klavier und verwendet eine besonders reichhaltige und evokative Klangpalette." + } + ], + "expert": [ + { + "id": 21, + "question": "Für welchen Beruf ist die im Norden Italiens gelegene Stadt Cremona berühmt ?", + "propositions": [ + "Gitarrenbauer", + "Maler", + "Potter", + "Sabotier" + ], + "réponse": "Gitarrenbauer", + "anecdote": "Die Stadt ist die Heimat von Antonio Giacomo Stradivari, bekannt als Stradivarius, Hersteller von Violinen, Celli, Violen und Gitarren." + }, + { + "id": 22, + "question": "In der Vergangenheit war die Phthisis eine der Formen welcher Krankheit ?", + "propositions": [ + "Asthma", + "Syphilis", + "Lepra", + "Tuberkulose" + ], + "réponse": "Tuberkulose", + "anecdote": "Tuberkulose ist eine ansteckende Infektionskrankheit, die durch ein Bakterium mit unterschiedlichen klinischen Symptomen verursacht wird." + }, + { + "id": 23, + "question": "Von welchem Land wurde Macao seit mehr als 400 Jahren kolonialisiert und verwaltet ?", + "propositions": [ + "Portugal", + "Deutschland", + "England", + "Spanien" + ], + "réponse": "Portugal", + "anecdote": "Die Stadt Macao gilt als der letzte Handelsposten sowie als letzte europäische Kolonie in China und Asien." + }, + { + "id": 24, + "question": "Welcher dieser Schriftsteller war 40 Jahre alt, als Gustave Flaubert geboren wurde ?", + "propositions": [ + "Stendhal", + "Hugo", + "Favre", + "Balzac" + ], + "réponse": "Balzac", + "anecdote": "Gustave Flaubert hat die Literatur durch die Tiefe seiner psychologischen Analysen und seine Sorge um den Realismus geprägt." + }, + { + "id": 25, + "question": "Wie kann man die republikanische Bezeichnung Albaniens buchstäblich übersetzen ?", + "propositions": [ + "Pferdeland", + "Land der Adler", + "Land der Lebenden", + "Land der Toten" + ], + "réponse": "Land der Adler", + "anecdote": "Das Land hat ein politisches System der parlamentarischen Demokratie, seine Hauptstadt ist Tirana und seine Amtssprache ist Albanisch." + }, + { + "id": 26, + "question": "In welchem Bundesstaat befindet sich das US-amerikanische Sing-Sing-Gefängnis am Ufer des Hudson ?", + "propositions": [ + "New York", + "Texas", + "Alabama", + "Geologie" + ], + "réponse": "New York", + "anecdote": "Das Sing-Sing-Gefängnis ist als Hochsicherheitsinstitut eingestuft und war vor 2004 Schauplatz von Hinrichtungen." + }, + { + "id": 27, + "question": "Was ist das wohl berühmteste Treffen von Camp David im Jahr 1978 ?", + "propositions": [ + "Clinton-Arafat", + "Reagan-Thatcher", + "Sadate-Begin", + "Nixon-Brezhnev" + ], + "réponse": "Sadate-Begin", + "anecdote": "Das 50 Hektar große Camp David in Maryland ist der offizielle Ferienort des US-Präsidenten." + }, + { + "id": 28, + "question": "In welcher Zeitung hat das berühmte « J'accuse... ! » von Zola ?", + "propositions": [ + "Figaro", + "Menschheit", + "Pravda", + "Aurore" + ], + "réponse": "Aurore", + "anecdote": "Dieser Artikel wurde während der Dreyfus-Affäre geschrieben und erschien in Form eines offenen Briefes an den französischen Präsidenten Félix Faure." + }, + { + "id": 29, + "question": "In welchem Land fliesst der Shannon durch endlose Seen ?", + "propositions": [ + "Vereinigte Staaten", + "Israel", + "Irland", + "Kanada" + ], + "réponse": "Irland", + "anecdote": "Die 386 Kilometer des Shannon River machen ihn zum längsten Fluss der britischen Inseln und zu den reichsten Flusses." + }, + { + "id": 30, + "question": "Welcher französische Philosoph lebte in Paris in der Rue Monsieur-le-Prince 10 ?", + "propositions": [ + "Marcel Proust", + "Anatole Frankreich", + "Pierre Leroux", + "Auguste Comte" + ], + "réponse": "Auguste Comte", + "anecdote": "Auguste Comte war Privatsekretär und später Mitarbeiter des Grafen von Saint-Simon, Gründer der Saint-Simonian-Bewegung." + } + ] + }, + "es": { + "débutant": [ + { + "id": 1, + "question": "¿Qué tiras en el ring si abandonas durante un combate de boxeo ?", + "propositions": [ + "Protector de dientes", + "Bragas", + "Guante", + "Esponja" + ], + "réponse": "Esponja", + "anecdote": "Durante un partido, el árbitro es el principal garante de la seguridad de los boxeadores y puede sancionar los actos prohibidos y peligrosos." + }, + { + "id": 2, + "question": "¿Qué especies de aves siguen presentes en Europa gringote, quiritte o trille ?", + "propositions": [ + "Rossignol", + "Gorrión", + "Cuervo", + "Loro" + ], + "réponse": "Rossignol", + "anecdote": "Su canto más melodioso y complejo fascinó a los investigadores que contaron 260 secuencias diferentes." + }, + { + "id": 3, + "question": "¿Quién se hizo famoso gracias al « Poinçonneur des Lilas » lanzado en 1958 ?", + "propositions": [ + "Johnny hallyday", + "Boris vian", + "Serge Gainsbourg", + "Charles Trenet" + ], + "réponse": "Serge Gainsbourg", + "anecdote": "Un escopitono fue producido para la ocasión por Jean Bacqué, producido por Pathé, mostrando a Gainsbourg en el metro parisino." + }, + { + "id": 4, + "question": "¿Cuál de estas profesiones no puede asociarse con el gran Leonardo da Vinci ?", + "propositions": [ + "Pintor", + "Autor dramático", + "Botánico", + "Escultor" + ], + "réponse": "Autor dramático", + "anecdote": "Leonardo da Vinci, genio universal, se describe a menudo como el arquetipo y símbolo del hombre del Renacimiento." + }, + { + "id": 5, + "question": "Hijo de Laicos y Yocasta, ¿a quién mató Edipo en la mitología griega ?", + "propositions": [ + "Su hija", + "Su padre", + "Su madre", + "Su hijo" + ], + "réponse": "Su padre", + "anecdote": "Se sabe que Edipo resolvió el enigma de la esfinge y fue culpable involuntariamente de parricidio e incesto." + }, + { + "id": 6, + "question": "En Francia, en la Liberación, ¿cuántas personas terminaron en Notre-Dame de Paris ?", + "propositions": [ + "5,000", + "13,000", + "17,000", + "9,000" + ], + "réponse": "13,000", + "anecdote": "El general De Gaulle descendió el 26 de agosto el Arco de Triunfo a Notre-Dame para un servicio religioso después de la liberación de París." + }, + { + "id": 7, + "question": "¿En qué año se emborrachó la primera Coca-Cola con John Pemberton ?", + "propositions": [ + "1926", + "1906", + "1946", + "1886" + ], + "réponse": "1886", + "anecdote": "Contrariamente a la cronología oficial de la empresa, Coca-Cola no se estableció en Francia en 1933, sino en 1919." + }, + { + "id": 8, + "question": "¿En qué ciudad se celebraron los Juegos Olímpicos de 1900 ?", + "propositions": [ + "Paris", + "Los angeles", + "Atenas", + "Roma" + ], + "réponse": "Paris", + "anecdote": "No hubo ceremonia de apertura o cierre en el programa, con la excepción de una de las gimnastas en Vincennes." + }, + { + "id": 9, + "question": "¿Con qué sustancia natural o sintética se asocia la penicilina ?", + "propositions": [ + "Anestesia", + "Antibiótico", + "Analgésico", + "Soporifico" + ], + "réponse": "Antibiótico", + "anecdote": "Básicamente, la penicilina es una toxina inofensiva para los humanos sintetizada por ciertas especies de moho." + }, + { + "id": 10, + "question": "¿Qué Premio Nobel Winston Leonard Spencer-Churchill recibió en 1953 ?", + "propositions": [ + "Física", + "Paz", + "Química", + "Literatura" + ], + "réponse": "Literatura", + "anecdote": "Winston Churchill sigue siendo hasta hoy el único Primer Ministro británico que recibió, en 1953, el Premio Nobel de Literatura." + } + ], + "confirmé": [ + { + "id": 11, + "question": "« El tren silbará tres veces » ¿es un americano occidental del cual el director ?", + "propositions": [ + "George Stevens", + "Fred Zinnemann", + "John Ford", + "Vincente Minnelli" + ], + "réponse": "Fred Zinnemann", + "anecdote": "El álbum de Lucky Luke titulado « Les Dalton à la noce » retoma la historia general y algunos pasajes clave de la película." + }, + { + "id": 12, + "question": "¿En qué año fue posible asistir a la inauguración de la metrópolis parisina ?", + "propositions": [ + "1840", + "1860", + "1900", + "1880" + ], + "réponse": "1900", + "anecdote": "Hasta la fecha, el metro de París tiene dieciséis líneas por derecho propio, esencialmente subterráneas, con un total de casi 220 kilómetros." + }, + { + "id": 13, + "question": "¿Qué escritor y periodista literario de Francia fue apodado el toro normando ?", + "propositions": [ + "Guy de Maupassant", + "Alfred De Musset", + "Victor Hugo", + "Honoré de Balzac" + ], + "réponse": "Guy de Maupassant", + "anecdote": "Es uno de sus biógrafos, Paul Morand, quien comparará este Maupassant con un físico robusto y atlético a un toro." + }, + { + "id": 14, + "question": "¿A qué otro objeto podemos asociar el paleófono inventado por Charles Cross ?", + "propositions": [ + "Ranura de disco", + "Telefono", + "Emisor", + "Emisora de radio" + ], + "réponse": "Ranura de disco", + "anecdote": "Por falta de pruebas, nadie puede decir que Charles Cros podría realmente reproducir en 1877 el sonido que había logrado grabar." + }, + { + "id": 15, + "question": "¿En qué siglo se plantaron los pinos en el bosque de las Landas de Gascuña ?", + "propositions": [ + "Siglo XIX", + "Siglo XIII", + "Siglo XVII", + "Siglo XV" + ], + "réponse": "Siglo XIX", + "anecdote": "Con una superficie de casi un millón de hectáreas, el bosque de las Landas es el bosque artificial más grande de Europa occidental." + }, + { + "id": 16, + "question": "¿El señor Diafoirus es un médico de la imaginación de qué dramaturgo ?", + "propositions": [ + "Molière", + "Rabelais", + "Voltaire", + "Corneille" + ], + "réponse": "Molière", + "anecdote": "« The Imaginary Ill » es una comedia-ballet en tres actos representados en 1673 y la última comedia escrita por Molière." + }, + { + "id": 17, + "question": "¿Con relación a la velocidad de cuál de estos elementos se puede definir el medidor ?", + "propositions": [ + "Agua", + "Luz", + "Viento", + "Su" + ], + "réponse": "Luz", + "anecdote": "El valor del medidor se define como la distancia recorrida por la luz en un vacío en 1/299, 792, 458 segundos." + }, + { + "id": 18, + "question": "¿A cuál de estos políticos franceses podría Lenin explicar la revolución ?", + "propositions": [ + "Robert Hue", + "Raymond Barre", + "Jacques Chirac", + "Georges Marchais" + ], + "réponse": "Georges Marchais", + "anecdote": "Lenin se encuentra en el origen de Chechka, una policía política encargada de eliminar a todos los enemigos del nuevo régimen que está creando." + }, + { + "id": 19, + "question": "La perla notable o plectro es en realidad...", + "propositions": [ + "Una flor", + "Una concha", + "Un insecto", + "Un pájaro" + ], + "réponse": "Un insecto", + "anecdote": "Los plecoptera se llaman moscas de piedra porque se encuentran muy a menudo en las piedras al borde de los arroyos." + }, + { + "id": 20, + "question": "¿Qué prolífico compositor francés murió en París en 1918 ?", + "propositions": [ + "Georges Bizet", + "Claude Debussy", + "Hector Berlioz", + "Edouard Lalo" + ], + "réponse": "Claude Debussy", + "anecdote": "Una parte importante del trabajo de Claude Debussy es para piano y utiliza una paleta de sonido particularmente rica y evocadora." + } + ], + "expert": [ + { + "id": 21, + "question": "¿Por qué profesión es famosa la ciudad de Cremona, ubicada en el norte de Italia ?", + "propositions": [ + "Luthier", + "Sabotier", + "Pintor", + "Potter" + ], + "réponse": "Luthier", + "anecdote": "La ciudad es la patria de Antonio Giacomo Stradivari, conocido como Stradivarius, fabricante de violines, violonchelos, violas y guitarras." + }, + { + "id": 22, + "question": "En el pasado, la tisis era una de las formas de ¿qué enfermedad ?", + "propositions": [ + "La sífilis", + "Asma", + "Lepra", + "Tuberculosis" + ], + "réponse": "Tuberculosis", + "anecdote": "La tuberculosis es una enfermedad infecciosa contagiosa causada por una bacteria, con diversos signos clínicos." + }, + { + "id": 23, + "question": "¿Por qué país ha sido colonizada y administrada Macao durante más de 400 años ?", + "propositions": [ + "España", + "Inglaterra", + "Portugal", + "Alemania" + ], + "réponse": "Portugal", + "anecdote": "La ciudad de Macao está considerada como el último puesto comercial, así como la última colonia europea en China y Asia." + }, + { + "id": 24, + "question": "¿Cuál de estos escritores tenía 40 años cuando nació Gustave Flaubert ?", + "propositions": [ + "Hugo", + "Balzac", + "Stendhal", + "Favre" + ], + "réponse": "Balzac", + "anecdote": "Gustave Flaubert ha marcado la literatura por la profundidad de sus análisis psicológicos y su preocupación por el realismo." + }, + { + "id": 25, + "question": "¿Cómo se puede traducir literalmente el término republicano de Albania ?", + "propositions": [ + "Tierra de los muertos", + "País de los vivos", + "País del caballo", + "País de las águilas" + ], + "réponse": "País de las águilas", + "anecdote": "El país tiene un sistema político de democracia parlamentaria, su capital es Tirana y su idioma oficial es el albanés." + }, + { + "id": 26, + "question": "¿En qué estado se encuentra la prisión de Sing Sing de los Estados Unidos, ubicada a orillas del Hudson ?", + "propositions": [ + "Alabama", + "Geología", + "Texas", + "Nueva york" + ], + "réponse": "Nueva york", + "anecdote": "Sing Sing Prison está clasificada como una institución de máxima seguridad y fue el sitio de las principales ejecuciones antes de 2004." + }, + { + "id": 27, + "question": "¿Cuál es probablemente el encuentro más famoso de Camp David en 1978 ?", + "propositions": [ + "Sadate-Begin", + "Clinton-Arafat", + "Reagan-Thatcher", + "Nixon-Brezhnev" + ], + "réponse": "Sadate-Begin", + "anecdote": "El Camp David de 50 hectáreas en Maryland es el centro turístico oficial del presidente de los Estados Unidos." + }, + { + "id": 28, + "question": "¿En qué periódico hizo el famoso « J'accuse... ! » de Zola ?", + "propositions": [ + "Figaro", + "La humanidad", + "Aurore", + "Pravda" + ], + "réponse": "Aurore", + "anecdote": "Escrito durante el caso Dreyfus, este artículo apareció en forma de una carta abierta al presidente francés Félix Faure." + }, + { + "id": 29, + "question": "¿En qué país fluye el Shannon, cruzando fincas interminables de lagos ?", + "propositions": [ + "Estados unidos", + "Irlanda", + "Canada", + "Israel" + ], + "réponse": "Irlanda", + "anecdote": "Los 386 kilómetros del río Shannon lo convierten en el río más largo de las islas británicas y el más abundante por su caudal." + }, + { + "id": 30, + "question": "¿Qué filósofo francés vivió en 10 rue Monsieur-le-Prince en París ?", + "propositions": [ + "Pierre Leroux", + "Auguste Comte", + "Marcel Proust", + "Anatole francia" + ], + "réponse": "Auguste Comte", + "anecdote": "Auguste Comte fue el secretario privado y luego colaborador del conde de Saint-Simon, fundador del movimiento saint-simoniano." + } + ] + }, + "it": { + "débutant": [ + { + "id": 1, + "question": "Cosa lanci sul ring se cadi durante un incontro di pugilato ?", + "propositions": [ + "Mutandine", + "Proteggi dente", + "Spugna", + "Guanto" + ], + "réponse": "Spugna", + "anecdote": "Durante una partita, l'arbitro è il principale garante della sicurezza dei pugili e può sanzionare le azioni proibite e pericolose." + }, + { + "id": 2, + "question": "Quali specie di uccelli ancora presenti in Europa gringotte, quiritte o trille ?", + "propositions": [ + "Rossignol", + "Corvo", + "Pappagallo", + "Passero" + ], + "réponse": "Rossignol", + "anecdote": "Il suo canto più melodioso e complesso ha affascinato i ricercatori che hanno contato 260 diverse sequenze." + }, + { + "id": 3, + "question": "Chi divenne famoso grazie al « Poinçonneur des Lilas » pubblicato nel 1958 ?", + "propositions": [ + "Serge Gainsbourg", + "Boris Vian", + "Johnny Hallyday", + "Charles Trenet" + ], + "réponse": "Serge Gainsbourg", + "anecdote": "Un scopitone è stato prodotto per l'occasione da Jean Bacqué, prodotto da Pathé, che mostra Gainsbourg nella metropolitana parigina." + }, + { + "id": 4, + "question": "Quale di queste professioni non può essere associata al grande Leonardo da Vinci ?", + "propositions": [ + "Scultore", + "Botanico", + "Autore drammatico", + "Pittore" + ], + "réponse": "Autore drammatico", + "anecdote": "Leonardo da Vinci, genio universale, è spesso descritto come l'archetipo e il simbolo dell'uomo del Rinascimento." + }, + { + "id": 5, + "question": "Figlio di Laio e Giocasta, chi uccise Edipo nella mitologia greca ?", + "propositions": [ + "Suo padre", + "Sua madre", + "Sua figlia", + "Suo figlio" + ], + "réponse": "Suo padre", + "anecdote": "Edipo è noto per aver risolto l'enigma della sfinge e per essere stato involontariamente colpevole di parricidio e incesto." + }, + { + "id": 6, + "question": "In Francia, alla Liberazione, quante persone sono finite a Notre-Dame de Paris ?", + "propositions": [ + "17.000", + "13.000", + "9.000", + "5.000" + ], + "réponse": "13.000", + "anecdote": "Il generale de Gaulle scese il 26 agosto dall'Arco di Trionfo a Notre-Dame per un servizio religioso dopo la liberazione di Parigi." + }, + { + "id": 7, + "question": "In quale anno è stata bevuta la prima Coca-Cola preparata da John Pemberton ?", + "propositions": [ + "1946", + "1906", + "1926", + "1886" + ], + "réponse": "1886", + "anecdote": "Contrariamente alla cronologia ufficiale della compagnia, la Coca-Cola non si stabilì in Francia nel 1933, ma nel 1919." + }, + { + "id": 8, + "question": "In quale città si sono svolte le Olimpiadi del 1900 ?", + "propositions": [ + "Atene", + "Parigi", + "Los Angeles", + "Roma" + ], + "réponse": "Parigi", + "anecdote": "Nessuna cerimonia di apertura o chiusura era in programma, ad eccezione di una delle ginnaste di Vincennes." + }, + { + "id": 9, + "question": "Quale sostanza naturale o sintetica è associata alla penicillina ?", + "propositions": [ + "Antibiotico", + "Anestetici", + "Soporifero", + "Analgesico" + ], + "réponse": "Antibiotico", + "anecdote": "Fondamentalmente, la penicillina è una tossina innocua per gli esseri umani sintetizzata da alcune specie di muffe." + }, + { + "id": 10, + "question": "Quale premio Nobel Winston Leonard Spencer-Churchill ha ricevuto nel 1953 ?", + "propositions": [ + "Letteratura", + "Chimica", + "Fisica", + "Pace" + ], + "réponse": "Letteratura", + "anecdote": "Winston Churchill rimane fino ad oggi l'unico ex primo ministro britannico ad aver ricevuto, nel 1953, il premio Nobel per la letteratura." + } + ], + "confirmé": [ + { + "id": 11, + "question": "« Il treno fischierà tre volte » è un western americano da quale regista ?", + "propositions": [ + "John Ford", + "George Stevens", + "Fred Zinnemann", + "Vincente Minnelli" + ], + "réponse": "Fred Zinnemann", + "anecdote": "L'album di Lucky Luke intitolato « Les Dalton à la noce » riprende la trama generale e alcuni passaggi chiave del film." + }, + { + "id": 12, + "question": "In quale anno è stato possibile assistere all'inaugurazione della metropoli parigina ?", + "propositions": [ + "1860", + "1900", + "1880", + "1840" + ], + "réponse": "1900", + "anecdote": "Ad oggi, la metropolitana di Parigi ha sedici linee a sé stanti, essenzialmente sotterranee, per un totale di quasi 220 chilometri." + }, + { + "id": 13, + "question": "Quale scrittore e giornalista di letteratura francese fu soprannominato il toro normanno ?", + "propositions": [ + "Victor Hugo", + "Honoré de Balzac", + "Guy de Maupassant", + "Alfred de Musset" + ], + "réponse": "Guy de Maupassant", + "anecdote": "È uno dei suoi biografi, Paul Morand, che paragonerà questo Maupassant con un fisico robusto e atletico a un toro." + }, + { + "id": 14, + "question": "A quale altro oggetto possiamo associare il paleofono inventato da Charles Cross ?", + "propositions": [ + "Telefono", + "Emettitore", + "Stazione radio", + "Scanalatura del disco" + ], + "réponse": "Scanalatura del disco", + "anecdote": "Per mancanza di prove, nessuno può dire che Charles Cros potesse effettivamente riprodurre nel 1877 il suono che era riuscito a registrare." + }, + { + "id": 15, + "question": "Durante quale secolo furono piantati i pini nella foresta delle Landes de Gascogne ?", + "propositions": [ + "XV secolo", + "XVII secolo", + "XIX secolo", + "XIII secolo" + ], + "réponse": "XIX secolo", + "anecdote": "Con una superficie di quasi un milione di ettari, la foresta delle Landes è la più grande foresta artificiale dell'Europa occidentale." + }, + { + "id": 16, + "question": "Il signor Diafoirus è un dottore dall'immaginazione di quale drammaturgo ?", + "propositions": [ + "Molière", + "Voltaire", + "Rabelais", + "Corneille" + ], + "réponse": "Molière", + "anecdote": "« The Illaginary Ill » è un balletto di commedia in tre atti rappresentati nel 1673 e l'ultima commedia scritta da Molière." + }, + { + "id": 17, + "question": "In relazione alla velocità di quale di questi elementi può essere definito il contatore ?", + "propositions": [ + "Il suo", + "Vento", + "Luce", + "Acqua" + ], + "réponse": "Luce", + "anecdote": "Il valore del contatore è definito come la distanza percorsa dalla luce nel vuoto in 1/299, 792, 458 secondi." + }, + { + "id": 18, + "question": "A quale di questi politici francesi potrebbe Lenin spiegare la rivoluzione ?", + "propositions": [ + "Jacques Chirac", + "Georges Marchais", + "Robert Hue", + "Raymond Barre" + ], + "réponse": "Georges Marchais", + "anecdote": "Lenin è all'origine della Chechka, una polizia politica incaricata di eliminare tutti i nemici del nuovo regime che sta creando." + }, + { + "id": 19, + "question": "La straordinaria perla o plettro è in realtà...", + "propositions": [ + "Un uccello", + "Un insetto", + "Una conchiglia", + "Un fiore" + ], + "réponse": "Un insetto", + "anecdote": "I plecotteri sono chiamati mosche di pietra perché si trovano molto spesso sulle pietre sul bordo dei torrenti." + }, + { + "id": 20, + "question": "Quale prolifico compositore francese morì a Parigi nel 1918 ?", + "propositions": [ + "Claude Debussy", + "Hector Berlioz", + "Edouard Lalo", + "Georges Bizet" + ], + "réponse": "Claude Debussy", + "anecdote": "Una parte importante del lavoro di Claude Debussy è per pianoforte e utilizza una tavolozza sonora particolarmente ricca ed evocativa." + } + ], + "expert": [ + { + "id": 21, + "question": "Per quale professione è famosa la città di Cremona, situata nel nord Italia ?", + "propositions": [ + "Pittore", + "Potter", + "Sabotier", + "Liutaio" + ], + "réponse": "Liutaio", + "anecdote": "La città è la patria di Antonio Giacomo Stradivari, noto come Stradivari, creatore di violini, violoncelli, viole e chitarre." + }, + { + "id": 22, + "question": "In passato, la phthisis era una delle forme di quale malattia ?", + "propositions": [ + "Asma", + "Tubercolosi", + "Sifilide", + "Lebbra" + ], + "réponse": "Tubercolosi", + "anecdote": "La tubercolosi è una malattia infettiva contagiosa causata da un batterio, con segni clinici variabili." + }, + { + "id": 23, + "question": "Da quale paese è stata colonizzata e amministrata Macao per oltre 400 anni ?", + "propositions": [ + "Spagna", + "Germania", + "Inghilterra", + "Portogallo" + ], + "réponse": "Portogallo", + "anecdote": "La città di Macao è considerata l'ultima stazione commerciale nonché l'ultima colonia europea in Cina e in Asia." + }, + { + "id": 24, + "question": "Quale di questi scrittori aveva 40 anni quando è nato Gustave Flaubert ?", + "propositions": [ + "Hugo", + "Balzac", + "Favre", + "Stendhal" + ], + "réponse": "Balzac", + "anecdote": "Gustave Flaubert ha segnato la letteratura dalla profondità delle sue analisi psicologiche e dalla sua preoccupazione per il realismo." + }, + { + "id": 25, + "question": "Come si può tradurre letteralmente il termine repubblicano di Albania ?", + "propositions": [ + "Paese delle aquile", + "La terra dei morti", + "Paese della vita", + "Paese dei cavalli" + ], + "réponse": "Paese delle aquile", + "anecdote": "Il paese ha un sistema politico di democrazia parlamentare, la sua capitale è Tirana e la sua lingua ufficiale è l'albanese." + }, + { + "id": 26, + "question": "In quale stato si trova la prigione statunitense Sing Sing, situata sulle rive dell'Hudson ?", + "propositions": [ + "Alabama", + "Geologia", + "Texas", + "New York" + ], + "réponse": "New York", + "anecdote": "Sing Sing Prison è classificata come massima sicurezza ed è stata sede di importanti esecuzioni prima del 2004." + }, + { + "id": 27, + "question": "Qual è probabilmente l'incontro più famoso di Camp David nel 1978 ?", + "propositions": [ + "Sadate-Begin", + "Clinton-Arafat", + "Reagan-Thatcher", + "Nixon-Brezhnev" + ], + "réponse": "Sadate-Begin", + "anecdote": "Il campo di 50 ettari di Camp David nel Maryland è la località turistica ufficiale del presidente degli Stati Uniti." + }, + { + "id": 28, + "question": "In quale giornale ha fatto il famoso « J'accuse... ! » di Zola ?", + "propositions": [ + "Pravda", + "Figaro", + "Aurore", + "Umanità" + ], + "réponse": "Aurore", + "anecdote": "Scritto durante l'affare Dreyfus, questo articolo è apparso sotto forma di lettera aperta al presidente francese Félix Faure." + }, + { + "id": 29, + "question": "In quale paese scorre Shannon, attraversando infinite proprietà di laghi ?", + "propositions": [ + "Canada", + "Israele", + "Irlanda", + "Stati Uniti" + ], + "réponse": "Irlanda", + "anecdote": "I 386 chilometri del fiume Shannon lo rendono il fiume più lungo nelle isole britanniche e il più abbondante per il suo flusso." + }, + { + "id": 30, + "question": "Quale filosofo francese visse al 10 di rue Monsieur-le-Prince a Parigi ?", + "propositions": [ + "Pierre Leroux", + "Auguste Comte", + "Marcel Proust", + "Anatole France" + ], + "réponse": "Auguste Comte", + "anecdote": "Auguste Comte era il segretario privato e poi collaboratore del conte di Saint-Simon, fondatore del movimento Saint-Simonian." + } + ] + }, + "nl": { + "débutant": [ + { + "id": 1, + "question": "Wat gooi je in de ring als je uitvalt tijdens een bokswedstrijd ?", + "propositions": [ + "Slipje", + "Tandbeschermer", + "Handschoen", + "Spons" + ], + "réponse": "Spons", + "anecdote": "Tijdens een wedstrijd is de scheidsrechter de hoofdgarant van de veiligheid van de boksers en kan hij de verboden en gevaarlijke acties bestraffen." + }, + { + "id": 2, + "question": "Welke vogelsoorten zijn er nog steeds in Europa gringotte, quiritte of trille ?", + "propositions": [ + "Parrot", + "Sparrow", + "Crow", + "Rossignol" + ], + "réponse": "Rossignol", + "anecdote": "Zijn meest melodieuze en complexe zang fascineerde de onderzoekers die 260 verschillende reeksen telden." + }, + { + "id": 3, + "question": "Wie werd beroemd dankzij de « Poinçonneur des Lilas » die in 1958 werd uitgebracht ?", + "propositions": [ + "Boris Vian", + "Johnny Hallyday", + "Charles Trenet", + "Serge Gainsbourg" + ], + "réponse": "Serge Gainsbourg", + "anecdote": "Een scopiton werd gemaakt voor de gelegenheid door Jean Bacqué, geproduceerd door Pathé, met Gainsbourg in de metro van Parijs." + }, + { + "id": 4, + "question": "Welke van deze beroepen kan niet worden geassocieerd met de grote Leonardo da Vinci ?", + "propositions": [ + "Dramatische auteur", + "Schilder", + "Botanicus", + "Beeldhouwer" + ], + "réponse": "Dramatische auteur", + "anecdote": "Leonardo da Vinci, universeel genie, wordt vaak beschreven als het archetype en symbool van de Renaissance-man." + }, + { + "id": 5, + "question": "Zoon van La ?os en Jocasta, wie heeft Oedipus gedood in de Griekse mythologie ?", + "propositions": [ + "Zijn vader", + "Zijn dochter", + "Zijn moeder", + "Zijn zoon" + ], + "réponse": "Zijn vader", + "anecdote": "Het is bekend dat Oedipus het sphinx-raadsel heeft opgelost en onvrijwillig schuldig is gemaakt aan kindermoord en incest." + }, + { + "id": 6, + "question": "In Frankrijk, bij de bevrijding, hoeveel mensen kwamen terecht in de Notre-Dame de Paris ?", + "propositions": [ + "5.000", + "13.000", + "17.000", + "9.000" + ], + "réponse": "13.000", + "anecdote": "Generaal de Gaulle daalde op 26 augustus de Arc de Triomphe af naar de Notre-Dame voor een religieuze dienst na de bevrijding van Parijs." + }, + { + "id": 7, + "question": "In welk jaar was de eerste Coca-Cola die John Pemberton verzon, dronken gemaakt ?", + "propositions": [ + "1906", + "1926", + "1886", + "1946" + ], + "réponse": "1886", + "anecdote": "In tegenstelling tot de officiële chronologie van het bedrijf, heeft Coca-Cola zich niet in 1933 in Frankrijk gevestigd, maar in 1919." + }, + { + "id": 8, + "question": "In welke stad vonden de Olympische Spelen van 1900 plaats ?", + "propositions": [ + "Parijs", + "Athene", + "Rome", + "Los Angeles" + ], + "réponse": "Parijs", + "anecdote": "Er stond geen ceremonie van opening of sluiting op het programma, met uitzondering van een van de gymnasten in Vincennes." + }, + { + "id": 9, + "question": "Met welke natuurlijke of synthetische stof is penicilline geassocieerd ?", + "propositions": [ + "Antibioticum", + "Pijnstillend middel", + "Soporific", + "Verdoving" + ], + "réponse": "Antibioticum", + "anecdote": "Kort gezegd is penicilline een onschadelijk toxine voor mensen dat wordt gesynthetiseerd door bepaalde soorten schimmels." + }, + { + "id": 10, + "question": "Welke Nobelprijs Winston Leonard Spencer-Churchill ontving hij in 1953 ?", + "propositions": [ + "Natuurkunde", + "Chemie", + "Vrede", + "Literatuur" + ], + "réponse": "Literatuur", + "anecdote": "Winston Churchill is nog steeds de enige voormalige Britse premier die in 1953 de Nobelprijs voor de Literatuur ontving." + } + ], + "confirmé": [ + { + "id": 11, + "question": "« De trein zal drie keer fluiten » is een Amerikaanse western waarvan de regisseur ?", + "propositions": [ + "John Ford", + "Vincente Minnelli", + "Fred Zinnemann", + "George Stevens" + ], + "réponse": "Fred Zinnemann", + "anecdote": "Lucky Luke's album met de titel « Les Dalton à la noce » neemt de algemene verhaallijn en enkele belangrijke passages uit de film over." + }, + { + "id": 12, + "question": "In welk jaar was het mogelijk om de inauguratie van de Parijse metro bij te wonen ?", + "propositions": [ + "1880", + "1840", + "1900", + "1860" + ], + "réponse": "1900", + "anecdote": "De metro van Parijs heeft momenteel zestien eigen lijnen, in wezen ondergronds, met in totaal bijna 220 kilometer." + }, + { + "id": 13, + "question": "Welke schrijver en literaire journalist uit Frankrijk kreeg de bijnaam Norman ?", + "propositions": [ + "Victor Hugo", + "Honoré de Balzac", + "Alfred de Musset", + "Guy de Maupassant" + ], + "réponse": "Guy de Maupassant", + "anecdote": "Het is een van zijn biografen, Paul Morand, die deze Maupassant met een robuuste en atletische lichaamsbouw zal vergelijken met een stier." + }, + { + "id": 14, + "question": "Aan welk ander object kunnen we de door Juan Cross uitgevonden paleophone associëren ?", + "propositions": [ + "Telefoon", + "Disc groove", + "Radiostation", + "Emitter" + ], + "réponse": "Disc groove", + "anecdote": "Bij gebrek aan bewijs kan niemand zeggen dat Charles Cros daadwerkelijk het geluid kon reproduceren dat hij in 1877 had kunnen opnemen." + }, + { + "id": 15, + "question": "In welke eeuw werden de dennen geplant in het bos van de Landes de Gascogne ?", + "propositions": [ + "17e eeuw", + "13e eeuw", + "19e eeuw", + "15e eeuw" + ], + "réponse": "19e eeuw", + "anecdote": "Met een oppervlakte van bijna een miljoen hectare is het bos van Les Landes het grootste kunstmatige bos in West-Europa." + }, + { + "id": 16, + "question": "Dhr. Diafoirus is een arts uit de verbeelding van welke toneelschrijver ?", + "propositions": [ + "Rabelais", + "Voltaire", + "Corneille", + "Molière" + ], + "réponse": "Molière", + "anecdote": "« The Imaginary Ill » is een komedie-ballet in drie delen die worden voorgesteld in 1673 en de laatste komedie geschreven door Molière." + }, + { + "id": 17, + "question": "Met betrekking tot de snelheid van welke van deze elementen kan de meter worden gedefinieerd ?", + "propositions": [ + "Wind", + "Licht", + "Water", + "Zijn" + ], + "réponse": "Licht", + "anecdote": "De waarde van de meter wordt gedefinieerd als de afgelegde afstand door het licht in een vacuüm in 1/299, 792, 458 seconden." + }, + { + "id": 18, + "question": "Aan welke van deze Franse politici kon Lenin de revolutie uitleggen ?", + "propositions": [ + "Robert Hue", + "Raymond Barre", + "Georges Marchais", + "Jacques Chirac" + ], + "réponse": "Georges Marchais", + "anecdote": "Lenin ligt aan de basis van de Chechka, een politieke politie die belast is met het elimineren van alle vijanden van het nieuwe regime dat hij aan het opzetten is." + }, + { + "id": 19, + "question": "De opmerkelijke parelparel of plectrum is eigenlijk...", + "propositions": [ + "Een bloem", + "Een insect", + "Een schaal", + "Een vogel" + ], + "réponse": "Een insect", + "anecdote": "Plecoptera worden stenen vliegen genoemd omdat ze heel vaak te vinden zijn op de stenen aan de rand van beekjes." + }, + { + "id": 20, + "question": "Welke productieve Franse componist stierf in 1918 in Parijs ?", + "propositions": [ + "Claude Debussy", + "Edouard Lalo", + "Georges Bizet", + "Hector Berlioz" + ], + "réponse": "Claude Debussy", + "anecdote": "Een belangrijk onderdeel van Claude Debussy's werk is voor piano en gebruikt een bijzonder rijk en suggestief geluidspalet." + } + ], + "expert": [ + { + "id": 21, + "question": "Voor welk beroep is de stad Cremona, gelegen in het noorden van Italië, beroemd ?", + "propositions": [ + "Sabotier", + "Luthier", + "Schilder", + "Potter" + ], + "réponse": "Luthier", + "anecdote": "De stad is het thuisland van Antonio Giacomo Stradivari, bekend als Stradivarius, maker van violen, cello's, altviolen en gitaren." + }, + { + "id": 22, + "question": "In het verleden was phthisis een van de vormen van welke ziekte ?", + "propositions": [ + "Tuberculose", + "Astma", + "Syphilis", + "Leprosy" + ], + "réponse": "Tuberculose", + "anecdote": "Tuberculose is een besmettelijke infectieziekte veroorzaakt door een bacterie, met wisselende klinische symptomen." + }, + { + "id": 23, + "question": "In welk land is Macao gekoloniseerd en meer dan 400 jaar geleden bestuurd ?", + "propositions": [ + "Spanje", + "Portugal", + "Engeland", + "Duitsland" + ], + "réponse": "Portugal", + "anecdote": "De stad Macao wordt beschouwd als de laatste handelspost evenals de laatste Europese kolonie in China en Azië." + }, + { + "id": 24, + "question": "Welke van deze schrijvers was 40 jaar oud toen Gustave Flaubert werd geboren ?", + "propositions": [ + "Hugo", + "Stendhal", + "Balzac", + "Favre" + ], + "réponse": "Balzac", + "anecdote": "Gustave Flaubert heeft de literatuur gekenmerkt door de diepte van zijn psychologische analyses en zijn zorg voor het realisme." + }, + { + "id": 25, + "question": "Hoe kan men letterlijk de Republikeinse term Albanië vertalen ?", + "propositions": [ + "Land van de levenden", + "Paardenland", + "Land van de Doden", + "Country of Eagles" + ], + "réponse": "Country of Eagles", + "anecdote": "Het land heeft een politiek systeem van parlementaire democratie, de hoofdstad is Tirana en de officiële taal is het Albanees." + }, + { + "id": 26, + "question": "In welke staat is de US Sing Sing-gevangenis gelegen aan de oevers van de Hudson ?", + "propositions": [ + "Geologie", + "Texas", + "Alabama", + "New York" + ], + "réponse": "New York", + "anecdote": "Sing Sing Prison is geclassificeerd als een maximale veiligheidsinstelling en was de site van grote executies vóór 2004." + }, + { + "id": 27, + "question": "Wat is waarschijnlijk de meest beroemde bijeenkomst van Camp David in 1978 ?", + "propositions": [ + "Clinton-Arafat", + "Sadate-Begin", + "Nixon-Brezhnev", + "Reagan-Thatcher" + ], + "réponse": "Sadate-Begin", + "anecdote": "Het 50 hectare grote Camp David in Maryland is het officiële vakantieoord van de Amerikaanse president." + }, + { + "id": 28, + "question": "In welke krant deed de beroemde « J'accuse... ! » van Zola ?", + "propositions": [ + "Menselijkheid", + "Aurore", + "Pravda", + "Figaro" + ], + "réponse": "Aurore", + "anecdote": "Geschreven tijdens de Dreyfus-affaire, verscheen dit artikel in de vorm van een open brief aan de Franse president Félix Faure." + }, + { + "id": 29, + "question": "In welk land stroomt de Shannon door eindeloze landgoederen van meren ?", + "propositions": [ + "Verenigde Staten", + "Canada", + "Ierland", + "Israël" + ], + "réponse": "Ierland", + "anecdote": "De 386 kilometer van de Shannon River maken het de langste rivier in de Britse eilanden en de meest overvloedige door de stroom." + }, + { + "id": 30, + "question": "Welke Franse filosoof leefde in de rue Monsieur-le-Prince 10 in Parijs ?", + "propositions": [ + "Auguste Comte", + "Pierre Leroux", + "Anatole France", + "Marcel Proust" + ], + "réponse": "Auguste Comte", + "anecdote": "Auguste Comte was de privé-secretaris en vervolgens medewerker van de graaf van Saint-Simon, oprichter van de beweging Saint-Simon." + } + ] + } + } +} \ No newline at end of file diff --git a/misc/quiz/openquizzdb/embed.go b/misc/quiz/openquizzdb/embed.go new file mode 100644 index 0000000..47eea49 --- /dev/null +++ b/misc/quiz/openquizzdb/embed.go @@ -0,0 +1,77 @@ +package openquizzdb + +import ( + "embed" + "encoding/json" + "io/fs" + "strings" + + "github.com/pkg/errors" +) + +//go:embed *.json +var quizzFS embed.FS + +func LoadAll() ([]*OpenQuiz, error) { + quizz := make([]*OpenQuiz, 0) + err := fs.WalkDir(quizzFS, ".", func(path string, d fs.DirEntry, err error) error { + if d.IsDir() || !strings.HasSuffix(path, ".json") { + return nil + } + + var q OpenQuiz + + data, err := fs.ReadFile(quizzFS, path) + if err != nil { + return errors.Wrapf(err, "could not read quiz '%s'", path) + } + + if err := json.Unmarshal(data, &q); err != nil { + return errors.WithStack(err) + } + + quizz = append(quizz, &q) + + return nil + }) + if err != nil { + return nil, errors.WithStack(err) + } + + return quizz, nil +} + +type OpenQuiz struct { + Provider string `json:"fournisseur"` + License string `json:"licence"` + Writer string `json:"rédacteur"` + Difficulty string `json:"difficulté"` + Version int `json:"version"` + UpdatedAt string `json:"mise-à-jour"` + Categories Categories `json:"catégorie-nom-slogan"` + Quizz Quizz `json:"quizz"` +} + +type Category struct { + Name string `json:"catégorie"` + Label string `json:"nom"` + Slogan string `json:"slogan"` +} + +type Categories map[string]Category + +type Entry struct { + ID int `json:"id"` + Question string `json:"question"` + Propositions []string `json:"propositions"` + Answer string `json:"réponse"` + Anecdote string `json:"anecdote"` +} + +type Quiz struct { + Beginner []Entry `json:"débutant"` + Intermediate []Entry `json:"confirmé"` + Expert []Entry `json:"expert"` +} + +type Quizz map[string]Quiz diff --git a/misc/quiz/openquizzdb/linux-1.json b/misc/quiz/openquizzdb/linux-1.json new file mode 100644 index 0000000..b75e066 --- /dev/null +++ b/misc/quiz/openquizzdb/linux-1.json @@ -0,0 +1,2251 @@ +{ + "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": "2023-06-19", + "catégorie-nom-slogan": { + "fr": { + "catégorie": "Informatique", + "nom": "Linux", + "slogan": "Non, ce n'est pas un pingouin" + }, + "en": { + "catégorie": "Computer science", + "nom": "Linux", + "slogan": "No, it's not a penguin" + }, + "es": { + "catégorie": "Ciencias de la Computación", + "nom": "Linux", + "slogan": "No, no es un pingüino" + }, + "it": { + "catégorie": "Informatica", + "nom": "Linux", + "slogan": "No, non è un pinguino" + }, + "de": { + "catégorie": "Informatik", + "nom": "Linux", + "slogan": "Nein, es ist kein Pinguin" + }, + "nl": { + "catégorie": "Computertechnologie", + "nom": "Linux", + "slogan": "Nee, het is geen pinguïn" + } + }, + "quizz": { + "fr": { + "débutant": [ + { + "id": 1, + "question": "Quel programmeur a créé et continue de diriger le développement du noyau de Linux ?", + "propositions": [ + "Linus Torvalds", + "Steeve Jobs", + "Bill Gates", + "Larry Ellison" + ], + "réponse": "Linus Torvalds", + "anecdote": "Linus Torvalds a découvert l'informatique vers l'âge de 11 ans grâce à l'ordinateur de son grand-père, un Commodore VIC-20." + }, + { + "id": 2, + "question": "Quel est le principal atout de Linux, développé et maintenu par Linus Torvalds ?", + "propositions": [ + "Il est libre", + "Il est amusant", + "Il est Finlandais", + "Il est beau" + ], + "réponse": "Il est libre", + "anecdote": "« Linux » est le nom couramment donné à tout système d'exploitation libre fonctionnant avec le noyau Linux." + }, + { + "id": 3, + "question": "Quel animal représentant Linux est aussi la mascotte de l'université d'Helsinki ?", + "propositions": [ + "Manchot", + "Caribou", + "Gnou", + "Marmotte" + ], + "réponse": "Manchot", + "anecdote": "Dessiné en 1996, l'usage de ce manchot est libre et se retrouve dans de très nombreux projets et logotypes liés à Linux." + }, + { + "id": 4, + "question": "Quelle commande Linux, basée sur la commande UNIX, permet d'effacer un fichier ?", + "propositions": [ + "Rem", + "Del", + "Delete", + "Rm" + ], + "réponse": "Rm", + "anecdote": "De par la filiation avec UNIX, la ligne de commande est toujours disponible dans GNU/Linux, quelle que soit la distribution." + }, + { + "id": 5, + "question": "Laquelle de ces propositions désigne une distribution Linux fondée en 1993 ?", + "propositions": [ + "Mandrika", + "Red Hat", + "Souze", + "Zubuntu" + ], + "réponse": "Red Hat", + "anecdote": "Red Hat est l'une des entreprises dédiées aux logiciels Open Source les plus importantes et les plus reconnues." + }, + { + "id": 6, + "question": "Quel système d'exploitation mobile majeur de l'industrie s'appuie sur un noyau Linux ?", + "propositions": [ + "Android", + "iOS", + "BlackBerry 10", + "Windows Phone" + ], + "réponse": "Android", + "anecdote": "En 2015, Android était le système d'exploitation le plus utilisé dans le monde avec plus de 80 % de parts de marché." + }, + { + "id": 7, + "question": "Sous Linux, comment appelle-t-on les logiciels assemblés autour du noyau ?", + "propositions": [ + "Logithèque", + "Intégré", + "Distribution", + "Progiciel" + ], + "réponse": "Distribution", + "anecdote": "Il existe une très grande variété de distributions, ayant chacune des objectifs et une philosophie particulière." + }, + { + "id": 8, + "question": "Quel serveur web présent sous Linux est aussi présent sur les serveurs du monde entier ?", + "propositions": [ + "Comanche", + "Mohican", + "Apache", + "Sioux" + ], + "réponse": "Apache", + "anecdote": "Depuis avril 1996, selon l'étude permanente de Netcraft, Apache est devenu le serveur HTTP le plus répandu sur Internet." + }, + { + "id": 9, + "question": "Quel est le nom de la mascotte de Linux, connue des mordus du système ?", + "propositions": [ + "Wilber", + "Tux", + "Puffy", + "Gnu" + ], + "réponse": "Tux", + "anecdote": "Le dessin du personnage a été choisi à l'issue d'un concours organisé en 1996, remporté par Larry Ewing." + }, + { + "id": 10, + "question": "Parmi ces commandes Linux, laquelle affiche à l'écran le contenu d'un fichier texte ?", + "propositions": [ + "Type", + "Cat", + "Man", + "Ls" + ], + "réponse": "Cat", + "anecdote": "La différence essentielle de Linux par rapport à d'autres systèmes d'exploitation concurrents est d'être un système d'exploitation libre." + } + ], + "confirmé": [ + { + "id": 11, + "question": "En quelle année Linus Torvalds a-t-il livré la première version du noyau Linux ?", + "propositions": [ + "1995", + "1993", + "1997", + "1991" + ], + "réponse": "1991", + "anecdote": "En 1991, les compatibles PC dominent le marché des ordinateurs personnels et fonctionnent généralement sous MS-DOS ou Windows." + }, + { + "id": 12, + "question": "Quel ancien mot bantou désigne une célèbre distribution Linux ?", + "propositions": [ + "Ubuntu", + "Uhura", + "Ursula", + "Umbro" + ], + "réponse": "Ubuntu", + "anecdote": "Le nom de la distribution provient d'un ancien mot bantou qui signifie « Je suis ce que je suis grâce à ce que nous sommes tous »." + }, + { + "id": 13, + "question": "Quel navigateur web et gestionnaire de fichiers est utilisé par défaut pour KDE ?", + "propositions": [ + "Konqueror", + "Firefox", + "Netscape", + "Chrome" + ], + "réponse": "Konqueror", + "anecdote": "Konqueror peut également afficher le contenu d'un serveur FTP, permettre de parcourir le réseau local et de visualiser des fichiers." + }, + { + "id": 14, + "question": "Quel nom porte la distribution française de Linux, simple à installer et à utiliser ?", + "propositions": [ + "Slackware", + "Mandriva", + "Debian", + "SUSE" + ], + "réponse": "Mandriva", + "anecdote": "Ciblant à la fois le grand public et les professionnels, cette distribution GNU/Linux est construite autour de KDE." + }, + { + "id": 15, + "question": "Quel type de fichiers est pris en compte par le gestionnaire de paquets intégré à Ubuntu ?", + "propositions": [ + ".rpm", + ".rss", + ".dev", + ".deb" + ], + "réponse": ".deb", + "anecdote": "Par défaut, Ubuntu est installé avec une pluralité de logiciels libres tels que LibreOffice, Firefox, Thunderbird et Transmission." + }, + { + "id": 16, + "question": "Sous Linux, quelle commande est utilisée pour créer un compte utilisateur ?", + "propositions": [ + "Adduser", + "Passwd", + "Mkaccount", + "Useradd" + ], + "réponse": "Useradd", + "anecdote": "Grâce à sa ligne de commande, scientifiques, ingénieurs et développeurs comptent parmi ses plus fréquents utilisateurs." + }, + { + "id": 17, + "question": "De quel projet sont tirés les outils gravitant autour de Linux ?", + "propositions": [ + "BSD", + "iOS", + "Mimix", + "GNU" + ], + "réponse": "GNU", + "anecdote": "GNU est un projet de système d'exploitation libre lancé en 1983 par Richard Stallman, puis maintenu par le projet GNU." + }, + { + "id": 18, + "question": "De quelle distribution Linux est dérivé le système d'exploitation Ubuntu ?", + "propositions": [ + "Slackware", + "Fedora", + "Debian", + "Red Hat" + ], + "réponse": "Debian", + "anecdote": "Ancien développeur Debian, Mark Shuttleworth souhaitait proposer une version plus facile d'accès pour les novices." + }, + { + "id": 19, + "question": "Quelle est la plus ancienne distribution Linux encore maintenue à ce jour ?", + "propositions": [ + "Ubuntu", + "Red Hat", + "Slackware", + "Mandriva" + ], + "réponse": "Slackware", + "anecdote": "Slackware est une distribution Linux qui, à la différence d'autres distributions, a longtemps été maintenue par une seule personne." + }, + { + "id": 20, + "question": "Quel environnement graphique de type fenêtré est utilisé sous Linux ?", + "propositions": [ + "X Color", + "X Window", + "X Graph", + "X Click" + ], + "réponse": "X Window", + "anecdote": "Cet environnement graphique gère l'interaction homme-machine par l'écran, la souris et le clavier de certains ordinateurs en réseau." + } + ], + "expert": [ + { + "id": 21, + "question": "Quel programmeur et militant du logiciel libre a créé le Projet GNU en 1984 ?", + "propositions": [ + "John Neumann", + "Alan Cox", + "Richard Stallman", + "Linus Torvalds" + ], + "réponse": "Richard Stallman", + "anecdote": "Richard Stallman consacre la majeure partie de son temps à la promotion du logiciel libre auprès de divers publics et assemblées." + }, + { + "id": 22, + "question": "Quel lecteur multimédia ressemblant à « Winamp » est utilisé sous Linux ?", + "propositions": [ + "Xmind", + "XAMPP", + "XMMS", + "XnView" + ], + "réponse": "XMMS", + "anecdote": "XMMS fut codé sous le nom de « X11Amp » par Peter et Mikal Alm en novembre 1997, pour combler un manque sous GNU/Linux." + }, + { + "id": 23, + "question": "Quelle société financée par le sud-africain Mark Shuttleworth commandite Ubuntu ?", + "propositions": [ + "Panasonic", + "Nikon", + "Canonical", + "Pentax" + ], + "réponse": "Canonical", + "anecdote": "La société Canonical, basée sur l'Île de Man, a été créée en 2004 et opère dans 30 pays différents, employant 500 personnes." + }, + { + "id": 24, + "question": "Avec quel acteur du monde Linux la société Microsoft a-t-elle signé un important accord ?", + "propositions": [ + "Mandriva", + "Red Hat", + "Ubuntu", + "SUSE" + ], + "réponse": "SUSE", + "anecdote": "Apparue au début de l'année 1994, SUSE est en effet la plus ancienne distribution commerciale encore existante." + }, + { + "id": 25, + "question": "La station spatiale internationale a abandonné Windows au profit de quelle distribution ?", + "propositions": [ + "Debian", + "SUSE", + "Red Hat", + "Ubuntu" + ], + "réponse": "Debian", + "anecdote": "Debian est utilisée comme base de nombreuses autres distributions telles que Knoppix et Ubuntu, qui rencontrent un grand succès." + }, + { + "id": 26, + "question": "Quel pays utilise le plus régulièrement GNU/Linux comme système pour ses bureaux ?", + "propositions": [ + "Finlande", + "Kenya", + "Cuba", + "Venezuela" + ], + "réponse": "Cuba", + "anecdote": "Les deux environnements GNOME et KDE, qui reposent sur des technologies communes, ont atteint une maturité certaine." + }, + { + "id": 27, + "question": "Quel graphiste a dessiné en 1996 le manchot Tux initial, mascotte du projet Linux ?", + "propositions": [ + "Larry Ewing", + "Wes Wilson", + "Rob Janoff", + "Jeffrey Lynch" + ], + "réponse": "Larry Ewing", + "anecdote": "Programmeur américain, Larry Ewing a réalisé la mascotte Tux avec l'aide du logiciel libre « The GIMP »." + }, + { + "id": 28, + "question": "Lequel de ces jeux tourne nativement sous GNU/Linux ?", + "propositions": [ + "Super Mario Kart", + "Quake III Arena", + "Splinter Cell", + "Zelda" + ], + "réponse": "Quake III Arena", + "anecdote": "Le jeu développé par ID Software a également été publié sur Macintosh, Dreamcast, PlayStation 2 et sur Xbox Live Arcade." + }, + { + "id": 29, + "question": "Quelle console de jeu open source possède un système d'exploitation Linux compilé ?", + "propositions": [ + "N-Gage", + "Game Gear", + "Pandora", + "GP32" + ], + "réponse": "Pandora", + "anecdote": "La Pandora était capable à sa sortie de lancer « Quake », « Quake II » et « Quake III » Arena sans ralentissement." + }, + { + "id": 30, + "question": "Comment fut initialement appelé le projet Linux, devenu par la suite une marque ?", + "propositions": [ + "Freax", + "Longhorn", + "Serval", + "Panther" + ], + "réponse": "Freax", + "anecdote": "Le projet Freax trouve son nom grâce à Ari Lemmke qui héberge le travail de Linus Torvalds dans un répertoire nommé « Linux »." + } + ] + }, + "en": { + "débutant": [ + { + "id": 1, + "question": "Which programmer created and continues to lead the development of the Linux kernel ?", + "propositions": [ + "Bill Gates", + "Larry Ellison", + "Linus Torvalds", + "Steeve Jobs" + ], + "réponse": "Linus Torvalds", + "anecdote": "Linus Torvalds discovered computers at the age of 11 thanks to his grandfather's computer, a Commodore VIC-20." + }, + { + "id": 2, + "question": "What is the main asset of Linux, developed and maintained by Linus Torvalds ?", + "propositions": [ + "It is fun", + "He is beautiful", + "He is Finnish", + "He is free" + ], + "réponse": "He is free", + "anecdote": "« Linux » is the name commonly given to any free operating system that works with the Linux kernel." + }, + { + "id": 3, + "question": "Which animal representing Linux is also the mascot of the University of Helsinki ?", + "propositions": [ + "Wildebeest", + "Groundhog", + "Penguin", + "Caribou" + ], + "réponse": "Penguin", + "anecdote": "Designed in 1996, the use of this penguin is free and can be found in many projects and logos related to Linux." + }, + { + "id": 4, + "question": "Which Linux command, based on the UNIX command, deletes a file ?", + "propositions": [ + "Del", + "Rem", + "Rm", + "Delete" + ], + "réponse": "Rm", + "anecdote": "By descent from UNIX, the command line is always available in GNU / Linux, regardless of the distribution." + }, + { + "id": 5, + "question": "Which of the following denotes a Linux distribution founded in 1993 ?", + "propositions": [ + "Souze", + "Zubuntu", + "Mandrika", + "Red Hat" + ], + "réponse": "Red Hat", + "anecdote": "Red Hat is one of the largest and most recognized open source software companies." + }, + { + "id": 6, + "question": "Which industry's leading mobile operating system relies on a Linux kernel ?", + "propositions": [ + "BlackBerry 10", + "Windows Phone", + "iOS", + "Android" + ], + "réponse": "Android", + "anecdote": "In 2015, Android was the most widely used operating system in the world with over 80% market share." + }, + { + "id": 7, + "question": "In Linux, what do you call software assembled around the kernel ?", + "propositions": [ + "Distribution", + "Software library", + "Integrated", + "Software package" + ], + "réponse": "Distribution", + "anecdote": "There is a very wide variety of distributions, each with its own objectives and philosophy." + }, + { + "id": 8, + "question": "Which web server under Linux is also present on servers all over the world ?", + "propositions": [ + "Comanche", + "Apache", + "Sioux", + "Mohican" + ], + "réponse": "Apache", + "anecdote": "Since April 1996, according to Netcraft's permanent study, Apache has become the most popular HTTP server on the Internet." + }, + { + "id": 9, + "question": "What is the name of the Linux mascot, known to fans of the operating system ?", + "propositions": [ + "Puffy", + "Gnu", + "Wilber", + "Tux" + ], + "réponse": "Tux", + "anecdote": "The design of the character was chosen after a competition organized in 1996 won by Larry Ewing." + }, + { + "id": 10, + "question": "Which of these Linux commands displays the contents of a text file on the screen ?", + "propositions": [ + "Man", + "Cat", + "Type", + "Ls" + ], + "réponse": "Cat", + "anecdote": "The main difference between Linux and other competitive operating systems is that it is a free operating system." + } + ], + "confirmé": [ + { + "id": 11, + "question": "In what year did Linus Torvalds ship the first version of the Linux kernel ?", + "propositions": [ + "1997", + "1993", + "1995", + "1991" + ], + "réponse": "1991", + "anecdote": "By 1991, PC compatible dominated the personal computer market and generally operated under MS-DOS or Windows." + }, + { + "id": 12, + "question": "What ancient Bantu word designates a famous Linux distribution ?", + "propositions": [ + "Gentoo", + "Mandriva", + "Ubuntu", + "Fedora" + ], + "réponse": "Ubuntu", + "anecdote": "The name of the cast comes from an ancient Bantu word which means « I am what I am because of what we all are »." + }, + { + "id": 13, + "question": "Which web browser and file manager is used by default for KDE ?", + "propositions": [ + "Chrome", + "Netscape", + "Firefox", + "Konqueror" + ], + "réponse": "Konqueror", + "anecdote": "Konqueror can also display the contents of an FTP server, allow browsing the local network and view files." + }, + { + "id": 14, + "question": "What is the name of the French distribution of Linux, which is easy to install and use ?", + "propositions": [ + "Debian", + "SUSE", + "Mandriva", + "Slackware" + ], + "réponse": "Mandriva", + "anecdote": "Targeting both the general public and professionals, this GNU / Linux distribution is built around KDE." + }, + { + "id": 15, + "question": "What type of files are taken into account by the package manager integrated in Ubuntu ?", + "propositions": [ + ".deb", + ".dev", + ".rss", + ".rpm" + ], + "réponse": ".deb", + "anecdote": "By default, Ubuntu is installed with a variety of free software such as LibreOffice, Firefox, Thunderbird and Transmission." + }, + { + "id": 16, + "question": "In Linux, which command is used to create a user account ?", + "propositions": [ + "Passwd", + "Adduser", + "Mkaccount", + "Useradd" + ], + "réponse": "Useradd", + "anecdote": "Thanks to its command line, scientists, engineers and developers are among its most frequent users." + }, + { + "id": 17, + "question": "What project are the tools revolving around Linux drawn from ?", + "propositions": [ + "Mimix", + "iOS", + "GNU", + "BSD" + ], + "réponse": "GNU", + "anecdote": "GNU is a free operating system project started in 1983 by Richard Stallman, and then maintained by the GNU Project." + }, + { + "id": 18, + "question": "What Linux distribution is the Ubuntu operating system derived from ?", + "propositions": [ + "Slackware", + "Red Hat", + "Fedora", + "Debian" + ], + "réponse": "Debian", + "anecdote": "Former Debian developer Mark Shuttleworth wanted to provide a version that was easier to access for novices." + }, + { + "id": 19, + "question": "What is the oldest Linux distribution still maintained to this day ?", + "propositions": [ + "Slackware", + "Mandriva", + "Ubuntu", + "Red Hat" + ], + "réponse": "Slackware", + "anecdote": "Slackware is a Linux distribution that, unlike other distributions, has long been maintained by one person." + }, + { + "id": 20, + "question": "Which windowed graphical environment is used in Linux ?", + "propositions": [ + "L Window", + "K Window", + "Z Window", + "X Window" + ], + "réponse": "X Window", + "anecdote": "This graphical environment manages human-machine interaction via the screen, mouse and keyboard of certain networked computers." + } + ], + "expert": [ + { + "id": 21, + "question": "Which programmer and free software activist created the GNU Project in 1984 ?", + "propositions": [ + "Linus Torvalds", + "Richard Stallman", + "John Neumann", + "Alan Cox" + ], + "réponse": "Richard Stallman", + "anecdote": "Richard Stallman devotes most of his time to promoting free software to various audiences and assemblies." + }, + { + "id": 22, + "question": "Which « Winamp »-like media player is often used in Linux ?", + "propositions": [ + "XMMS", + "Tomahawk", + "Spotify", + "Mplayer" + ], + "réponse": "XMMS", + "anecdote": "XMMS was originally coded as « X11Amp » by Peter and Mikal Alm in November 1997, to fill a gap in GNU / Linux." + }, + { + "id": 23, + "question": "Which company funded by South African Mark Shuttleworth is sponsoring Ubuntu ?", + "propositions": [ + "Pentax", + "Canonical", + "Nikon", + "Panasonic" + ], + "réponse": "Canonical", + "anecdote": "Isle of Man-based Canonical was established in 2004 and operates in 30 different countries, employing 500 people." + }, + { + "id": 24, + "question": "With which player in the Linux world has Microsoft signed a major agreement ?", + "propositions": [ + "SUSE", + "Mandriva", + "Ubuntu", + "Red Hat" + ], + "réponse": "SUSE", + "anecdote": "Appeared at the beginning of 1994, SUSE is in fact the oldest commercial distribution still in existence." + }, + { + "id": 25, + "question": "The International Space Station has abandoned Windows in favor of which Linux distribution ?", + "propositions": [ + "Ubuntu", + "SUSE", + "Red Hat", + "Debian" + ], + "réponse": "Debian", + "anecdote": "Debian is used as the basis for many other very successful distributions such as Knoppix and Ubuntu." + }, + { + "id": 26, + "question": "To date, which country uses GNU / Linux the most regularly as a desktop operating system ?", + "propositions": [ + "Kenya", + "Cuba", + "Venezuela", + "Finland" + ], + "réponse": "Cuba", + "anecdote": "The two environments GNOME and KDE, which are based on common technologies, have reached a certain maturity." + }, + { + "id": 27, + "question": "Which graphic designer drew in 1996 the initial Tux penguin, mascot of the Linux project ?", + "propositions": [ + "Jeffrey Lynch", + "Rob Janoff", + "Larry Ewing", + "Wes Wilson" + ], + "réponse": "Larry Ewing", + "anecdote": "American programmer Larry Ewing made the Tux mascot with the help of free software « The GIMP »." + }, + { + "id": 28, + "question": "Which of these games runs natively under GNU / Linux ?", + "propositions": [ + "Splinter Cell", + "Quake III Arena", + "Super Mario Kart", + "Zelda" + ], + "réponse": "Quake III Arena", + "anecdote": "The game developed by ID Software has also been released for Macintosh, Dreamcast, PlayStation 2, and Xbox Live Arcade." + }, + { + "id": 29, + "question": "Which open source game console has a compiled Linux operating system ?", + "propositions": [ + "Game Gear", + "GP32", + "Pandora", + "N-Gage" + ], + "réponse": "Pandora", + "anecdote": "Pandora was able at release to launch « Quake », « Quake II » and « Quake III » Arena without slowing down." + }, + { + "id": 30, + "question": "What was the Linux project initially called, which later became a brand ?", + "propositions": [ + "Longhorn", + "Serval", + "Freax", + "Panther" + ], + "réponse": "Freax", + "anecdote": "The Freax project finds its final name thanks to Ari Lemmke who hosts the work of Linus Torvalds in a directory named « Linux »." + } + ] + }, + "de": { + "débutant": [ + { + "id": 1, + "question": "Welcher Programmierer hat die Entwicklung des Linux-Kernels erstellt und leitet diese weiter ?", + "propositions": [ + "Steeve Jobs", + "Larry Ellison", + "Bill Gates", + "Linus Torvalds" + ], + "réponse": "Linus Torvalds", + "anecdote": "Linus Torvalds entdeckte Computer im Alter von 11 Jahren dank des Computers seines Großvaters, eines Commodore VIC-20." + }, + { + "id": 2, + "question": "Was ist das Hauptargument von Linux, das von Linus Torvalds entwickelt und gewartet wird ?", + "propositions": [ + "Es macht Spaß", + "Er ist frei", + "Er ist schön ", + "Il est beau", + "Er ist finnisch" + ], + "réponse": "Er ist frei", + "anecdote": "« Linux » ist der Name, der üblicherweise für jedes freie Betriebssystem verwendet wird, das mit dem Linux-Kernel arbeitet." + }, + { + "id": 3, + "question": "Welches Tier, das Linux repräsentiert, ist auch das Maskottchen der Universität von Helsinki ?", + "propositions": [ + "Karibu", + "Gnus", + "Pinguin", + "Murmeltier" + ], + "réponse": "Pinguin", + "anecdote": "Die Verwendung dieses Pinguins wurde 1996 entwickelt und ist kostenlos. Er ist in vielen Projekten und Logos zu finden, die sich auf Linux beziehen." + }, + { + "id": 4, + "question": "Welcher Linux-Befehl, der auf dem UNIX-Befehl basiert, löscht eine Datei ?", + "propositions": [ + "Löschen", + "Rm", + "Rem", + "Del" + ], + "réponse": "Rm", + "anecdote": "Beim Abstieg von UNIX ist die Befehlszeile in GNU / Linux unabhängig von der Distribution immer verfügbar." + }, + { + "id": 5, + "question": "Welche der folgenden Angaben bezeichnet eine 1993 gegründete Linux-Distribution ?", + "propositions": [ + "Roter Hut", + "Zubuntu", + "Mandrika", + "Souze" + ], + "réponse": "Roter Hut", + "anecdote": "Red Hat ist eines der größten und anerkanntesten Open-Source-Softwareunternehmen." + }, + { + "id": 6, + "question": "Welches branchenweit führende mobile Betriebssystem basiert auf einem Linux-Kernel ?", + "propositions": [ + "BlackBerry 10", + "Windows Phone", + "iOS", + "Android" + ], + "réponse": "Android", + "anecdote": "Im Jahr 2015 war Android mit einem Marktanteil von über 80% das weltweit am häufigsten verwendete Betriebssystem." + }, + { + "id": 7, + "question": "Wie nennt man unter Linux Software, die um den Kernel herum zusammengestellt wurde ?", + "propositions": [ + "Softwarebibliothek", + "Softwarepaket", + "Integriert", + "Verteilung" + ], + "réponse": "Verteilung", + "anecdote": "Es gibt eine Vielzahl von Distributionen, jede mit ihren eigenen Zielen und ihrer eigenen Philosophie." + }, + { + "id": 8, + "question": "Welcher Webserver unter Linux ist auch auf Servern auf der ganzen Welt vorhanden ?", + "propositions": [ + "Mohican", + "Apache", + "Comanche", + "Sioux" + ], + "réponse": "Apache", + "anecdote": "Laut der permanenten Studie von Netcraft ist Apache seit April 1996 der beliebteste HTTP-Server im Internet." + }, + { + "id": 9, + "question": "Wie heißt das Linux-Maskottchen, das Fans des Betriebssystems bekannt ist ?", + "propositions": [ + "Puffy", + "Tux", + "Gnu", + "Wilber" + ], + "réponse": "Tux", + "anecdote": "Das Design des Charakters wurde nach einem 1996 von Larry Ewing gewonnenen Wettbewerb ausgewählt." + }, + { + "id": 10, + "question": "Welcher dieser Linux-Befehle zeigt den Inhalt einer Textdatei auf dem Bildschirm an ?", + "propositions": [ + "Katze", + "Mann", + "Geben Sie", + "Ls" + ], + "réponse": "Katze", + "anecdote": "Der Hauptunterschied zwischen Linux und anderen wettbewerbsfähigen Betriebssystemen besteht darin, dass es sich um ein freies Betriebssystem handelt." + } + ], + "confirmé": [ + { + "id": 11, + "question": "In welchem Jahr hat Linus Torvalds die erste Version des Linux-Kernels ausgeliefert ?", + "propositions": [ + "1991", + "1997", + "1993", + "1995" + ], + "réponse": "1991", + "anecdote": "Bis 1991 dominierte PC-kompatibel den PC-Markt und wurde im Allgemeinen unter MS-DOS oder Windows betrieben." + }, + { + "id": 12, + "question": "Welches alte Bantu-Wort bezeichnet eine berühmte Linux-Distribution ?", + "propositions": [ + "Ubuntu", + "Gentoo", + "Mandriva", + "Fedora" + ], + "réponse": "Ubuntu", + "anecdote": "Der Name der Besetzung stammt von einem alten Bantu-Wort, das bedeutet : « Ich bin, was ich bin, aufgrund dessen, was wir alle sind »." + }, + { + "id": 13, + "question": "Welcher Webbrowser und Dateimanager wird standardmäßig für KDE verwendet ?", + "propositions": [ + "Firefox", + "Chrome", + "Konqueror", + "Netscape" + ], + "réponse": "Konqueror", + "anecdote": "Konqueror kann auch den Inhalt eines FTP-Servers anzeigen, das Durchsuchen des lokalen Netzwerks und das Anzeigen von Dateien ermöglichen." + }, + { + "id": 14, + "question": "Wie heißt die französische Linux-Distribution, die einfach zu installieren und zu verwenden ist ?", + "propositions": [ + "SUSE", + "Mandriva", + "Slackware", + "Debian" + ], + "réponse": "Mandriva", + "anecdote": "Diese GNU / Linux-Distribution richtet sich sowohl an die breite Öffentlichkeit als auch an Fachleute und basiert auf KDE." + }, + { + "id": 15, + "question": "Welche Art von Dateien berücksichtigt der in Ubuntu integrierte Paketmanager ?", + "propositions": [ + ".deb", + ".dev", + ".rpm", + ".rss" + ], + "réponse": ".deb", + "anecdote": "Standardmäßig wird Ubuntu mit einer Vielzahl kostenloser Software wie LibreOffice, Firefox, Thunderbird und Transmission installiert." + }, + { + "id": 16, + "question": "Mit welchem Befehl wird unter Linux ein Benutzerkonto erstellt ?", + "propositions": [ + "Passwd", + "Useradd", + "Adduser", + "Mkaccount" + ], + "réponse": "Useradd", + "anecdote": "Dank der Befehlszeile gehören Wissenschaftler, Ingenieure und Entwickler zu den häufigsten Benutzern." + }, + { + "id": 17, + "question": "Aus welchem Projekt stammen die Tools rund um Linux ?", + "propositions": [ + "iOS", + "GNU", + "Mimix", + "BSD" + ], + "réponse": "GNU", + "anecdote": "GNU ist ein freies Betriebssystemprojekt, das 1983 von Richard Stallman gestartet und dann vom GNU-Projekt verwaltet wird." + }, + { + "id": 18, + "question": "Von welcher Linux-Distribution leitet sich das Ubuntu-Betriebssystem ab ?", + "propositions": [ + "Roter Hut", + "Fedora", + "Debian", + "Slackware" + ], + "réponse": "Debian", + "anecdote": "Der frühere Debian-Entwickler Mark Shuttleworth wollte eine Version bereitstellen, auf die Anfänger leichter zugreifen können." + }, + { + "id": 19, + "question": "Was ist die älteste Linux-Distribution, die bis heute gepflegt wird ?", + "propositions": [ + "Mandriva", + "Slackware", + "Ubuntu", + "Roter Hut" + ], + "réponse": "Slackware", + "anecdote": "Slackware ist eine Linux-Distribution, die im Gegensatz zu anderen Distributionen seit langem von einer Person gepflegt wird." + }, + { + "id": 20, + "question": "Welche fenstergesteuerte grafische Umgebung wird unter Linux verwendet ?", + "propositions": [ + "K Fenster", + "L Fenster", + "Z Fenster", + "X Fenster" + ], + "réponse": "X Fenster", + "anecdote": "Diese grafische Umgebung verwaltet die Mensch-Maschine-Interaktion über Bildschirm, Maus und Tastatur bestimmter Netzwerkcomputer." + } + ], + "expert": [ + { + "id": 21, + "question": "Welcher Programmierer und Aktivist für freie Software hat 1984 das GNU-Projekt ins Leben gerufen ?", + "propositions": [ + "Alan Cox", + "Richard Stallman", + "John Neumann", + "Linus Torvalds" + ], + "réponse": "Richard Stallman", + "anecdote": "Richard Stallman widmet sich die meiste Zeit der Förderung freier Software für verschiedene Zielgruppen und Versammlungen." + }, + { + "id": 22, + "question": "Welcher « Winamp » -ähnliche Media Player wird unter Linux häufig verwendet ?", + "propositions": [ + "Tomahawk", + "Mplayer", + "XMMS", + "Spotify" + ], + "réponse": "XMMS", + "anecdote": "XMMS wurde ursprünglich von Peter und Mikal Alm im November 1997 als « X11Amp » codiert, um eine Lücke in GNU / Linux zu schließen." + }, + { + "id": 23, + "question": "Welches von dem Südafrikaner Mark Shuttleworth finanzierte Unternehmen sponsert Ubuntu ?", + "propositions": [ + "Pentax", + "Panasonic", + "Kanonisch", + "Nikon" + ], + "réponse": "Kanonisch", + "anecdote": "Canonical mit Sitz auf der Isle of Man wurde 2004 gegründet und ist in 30 verschiedenen Ländern tätig und beschäftigt 500 Mitarbeiter." + }, + { + "id": 24, + "question": "Mit welchem Player in der Linux-Welt hat Microsoft eine wichtige Vereinbarung unterzeichnet ?", + "propositions": [ + "SUSE", + "Ubuntu", + "Roter Hut", + "Mandriva" + ], + "réponse": "SUSE", + "anecdote": "SUSE wurde Anfang 1994 auf den Markt gebracht und ist in der Tat die älteste noch existierende kommerzielle Distribution." + }, + { + "id": 25, + "question": "Die Internationale Raumstation hat Windows zugunsten welcher Linux-Distribution aufgegeben ?", + "propositions": [ + "SUSE", + "Roter Hut", + "Debian", + "Ubuntu" + ], + "réponse": "Debian", + "anecdote": "Debian wird als Basis für viele andere sehr erfolgreiche Distributionen wie Knoppix und Ubuntu verwendet." + }, + { + "id": 26, + "question": "Welches Land verwendet GNU / Linux bisher am häufigsten als Desktop-Betriebssystem ?", + "propositions": [ + "Kenia", + "Kuba", + "Finnland", + "Venezuela" + ], + "réponse": "Kuba", + "anecdote": "Die beiden Umgebungen GNOME und KDE, die auf gemeinsamen Technologien basieren, haben eine gewisse Reife erreicht." + }, + { + "id": 27, + "question": "Welcher Grafikdesigner zeichnete 1996 den ersten Tux-Pinguin, das Maskottchen des Linux-Projekts ?", + "propositions": [ + "Wes Wilson", + "Larry Ewing", + "Jeffrey Lynch", + "Rob Janoff" + ], + "réponse": "Larry Ewing", + "anecdote": "Der amerikanische Programmierer Larry Ewing hat das Tux-Maskottchen mit Hilfe der freien Software « The GIMP » hergestellt." + }, + { + "id": 28, + "question": "Welches dieser Spiele läuft nativ unter GNU / Linux ?", + "propositions": [ + "Zelda", + "Quake III Arena", + "Splitterzelle", + "Super Mario Kart" + ], + "réponse": "Quake III Arena", + "anecdote": "Das von ID Software entwickelte Spiel wurde auch für Macintosh, Dreamcast, PlayStation 2 und Xbox Live Arcade veröffentlicht." + }, + { + "id": 29, + "question": "Welche Open Source-Spielekonsole hat ein kompiliertes Linux-Betriebssystem ?", + "propositions": [ + "Spielausrüstung", + "Pandora", + "N-Gage", + "GP32" + ], + "réponse": "Pandora", + "anecdote": "Pandora konnte bei der Veröffentlichung die Arena « Quake », « Quake II » und « Quake III » starten, ohne sich zu verlangsamen." + }, + { + "id": 30, + "question": "Wie hieß das Linux-Projekt ursprünglich, das später zu einer Marke wurde ?", + "propositions": [ + "Longhorn", + "Panther", + "Freax", + "Serval" + ], + "réponse": "Freax", + "anecdote": "Das endgültige Freax-Projekt findet seinen endgültigen Namen dank Ari Lemmke, der die Arbeit von Linus Torvalds in einem Verzeichnis mit dem Namen « Linux » hostet." + } + ] + }, + "es": { + "débutant": [ + { + "id": 1, + "question": "¿Qué programador creó y continúa liderando el desarrollo del kernel de Linux ?", + "propositions": [ + "Larry Ellison", + "Steeve Jobs", + "Bill Gates", + "Linus Torvalds" + ], + "réponse": "Linus Torvalds", + "anecdote": "Linus Torvalds descubrió las computadoras a la edad de 11 años gracias a la computadora de su abuelo, una Commodore VIC-20." + }, + { + "id": 2, + "question": "¿Cuál es el principal activo de Linux, desarrollado y mantenido por Linus Torvalds ?", + "propositions": [ + "Es divertido", + "Es finlandés", + "El es hermoso", + "Es libre" + ], + "réponse": "Es libre", + "anecdote": "« Linux » es el nombre que comúnmente se le da a cualquier sistema operativo libre que funcione con el kernel de Linux." + }, + { + "id": 3, + "question": "¿Qué animal que representa a Linux es también la mascota de la Universidad de Helsinki ?", + "propositions": [ + "Caribou", + "Marmota", + "Pingüino", + "Ñu" + ], + "réponse": "Pingüino", + "anecdote": "Diseñado en 1996, el uso de este pingüino es gratuito y se puede encontrar en muchos proyectos y logotipos relacionados con Linux." + }, + { + "id": 4, + "question": "¿Qué comando de Linux, basado en el comando de UNIX, elimina un archivo ?", + "propositions": [ + "Eliminar", + "Del", + "Rm", + "Rem" + ], + "réponse": "Rm", + "anecdote": "Por descendencia de UNIX, la línea de comandos siempre está disponible en GNU / Linux, independientemente de la distribución." + }, + { + "id": 5, + "question": "¿Cuál de las siguientes denota una distribución de Linux fundada en 1993 ?", + "propositions": [ + "Red Hat", + "Souze", + "Mandrika", + "Zubuntu" + ], + "réponse": "Red Hat", + "anecdote": "Red Hat es una de las empresas de software de código abierto más grandes y reconocidas." + }, + { + "id": 6, + "question": "¿Qué sistema operativo móvil líder en la industria se basa en un kernel de Linux ?", + "propositions": [ + "Android", + "iOS", + "BlackBerry 10", + "Windows Phone" + ], + "réponse": "Android", + "anecdote": "En 2015, Android fue el sistema operativo más utilizado en el mundo con más del 80% de participación de mercado." + }, + { + "id": 7, + "question": "En Linux, ¿cómo se llama software ensamblado alrededor del kernel ?", + "propositions": [ + "Biblioteca de software", + "Paquete de software", + "Distribución", + "Integrado" + ], + "réponse": "Distribución", + "anecdote": "Existe una variedad muy amplia de distribuciones, cada una con sus propios objetivos y filosofía." + }, + { + "id": 8, + "question": "¿Qué servidor web bajo Linux también está presente en servidores de todo el mundo ?", + "propositions": [ + "Comanche", + "Mohicano", + "Apache", + "Sioux" + ], + "réponse": "Apache", + "anecdote": "Desde abril de 1996, según el estudio permanente de Netcraft, Apache se ha convertido en el servidor HTTP más popular de Internet." + }, + { + "id": 9, + "question": "¿Cuál es el nombre de la mascota de Linux, conocida por los fanáticos del sistema operativo ?", + "propositions": [ + "Hinchado", + "Tux", + "Gnu", + "Wilber" + ], + "réponse": "Tux", + "anecdote": "El diseño del personaje fue elegido después de un concurso organizado en 1996 ganado por Larry Ewing." + }, + { + "id": 10, + "question": "¿Cuál de estos comandos de Linux muestra el contenido de un archivo de texto en la pantalla ?", + "propositions": [ + "Ls", + "Gato", + "Tipo", + "Hombre" + ], + "réponse": "Gato", + "anecdote": "La principal diferencia entre Linux y otros sistemas operativos de la competencia es que es un sistema operativo gratuito." + } + ], + "confirmé": [ + { + "id": 11, + "question": "¿En qué año envió Linus Torvalds la primera versión del kernel de Linux ?", + "propositions": [ + "1997", + "1991", + "1993", + "1995" + ], + "réponse": "1991", + "anecdote": "En 1991, la compatibilidad con PC dominaba el mercado de las computadoras personales y generalmente operaba bajo MS-DOS o Windows." + }, + { + "id": 12, + "question": "¿Qué palabra antigua bantú designa una famosa distribución de Linux ?", + "propositions": [ + "Gentoo", + "Fedora", + "Ubuntu", + "Mandriva" + ], + "réponse": "Ubuntu", + "anecdote": "El nombre del elenco proviene de una antigua palabra bantú que significa « Soy lo que soy por lo que todos somos »." + }, + { + "id": 13, + "question": "¿Qué navegador web y administrador de archivos se utiliza de forma predeterminada para KDE ?", + "propositions": [ + "Netscape", + "Konqueror", + "Chrome", + "Firefox" + ], + "réponse": "Konqueror", + "anecdote": "Konqueror también puede mostrar el contenido de un servidor FTP, permitir navegar por la red local y ver archivos." + }, + { + "id": 14, + "question": "¿Cómo se llama la distribución francesa de Linux, que es fácil de instalar y usar ?", + "propositions": [ + "Debian", + "Mandriva", + "SUSE", + "Slackware" + ], + "réponse": "Mandriva", + "anecdote": "Dirigida tanto al público en general como a los profesionales, esta distribución GNU / Linux se basa en KDE." + }, + { + "id": 15, + "question": "¿Qué tipo de archivos tiene en cuenta el administrador de paquetes integrado en Ubuntu ?", + "propositions": [ + ".deb", + ".rpm", + ".rss", + ".dev" + ], + "réponse": ".deb", + "anecdote": "De forma predeterminada, Ubuntu se instala con una variedad de software gratuito como LibreOffice, Firefox, Thunderbird y Transmission." + }, + { + "id": 16, + "question": "En Linux, ¿qué comando se usa para crear una cuenta de usuario ?", + "propositions": [ + "Useradd", + "Passwd", + "Adduser", + "Mkaccount" + ], + "réponse": "Useradd", + "anecdote": "Gracias a su línea de comandos, los científicos, ingenieros y desarrolladores se encuentran entre sus usuarios más frecuentes." + }, + { + "id": 17, + "question": "¿De qué proyecto se basan las herramientas que giran en torno a Linux ?", + "propositions": [ + "BSD", + "GNU", + "iOS", + "Mimix" + ], + "réponse": "GNU", + "anecdote": "GNU es un proyecto de sistema operativo libre iniciado en 1983 por Richard Stallman y luego mantenido por el Proyecto GNU." + }, + { + "id": 18, + "question": "¿De qué distribución de Linux se deriva el sistema operativo Ubuntu ?", + "propositions": [ + "Red Hat", + "Slackware", + "Debian", + "Fedora" + ], + "réponse": "Debian", + "anecdote": "El ex desarrollador de Debian, Mark Shuttleworth, quería proporcionar una versión que fuera más fácil de acceder para los principiantes." + }, + { + "id": 19, + "question": "¿Cuál es la distribución de Linux más antigua que se conserva hasta el día de hoy ?", + "propositions": [ + "Red Hat", + "Mandriva", + "Slackware", + "Ubuntu" + ], + "réponse": "Slackware", + "anecdote": "Slackware es una distribución de Linux que, a diferencia de otras distribuciones, ha sido mantenida durante mucho tiempo por una persona." + }, + { + "id": 20, + "question": "¿Qué entorno gráfico de ventana se utiliza en Linux ?", + "propositions": [ + "Ventana K", + "Ventana Z", + "Ventana L", + "Ventana X" + ], + "réponse": "Ventana X", + "anecdote": "Este entorno gráfico gestiona la interacción hombre-máquina a través de la pantalla, el ratón y el teclado de determinadas computadoras en red." + } + ], + "expert": [ + { + "id": 21, + "question": "¿Qué programador y activista del software libre creó el Proyecto GNU en 1984 ?", + "propositions": [ + "Richard Stallman", + "John Neumann", + "Linus Torvalds", + "Alan Cox" + ], + "réponse": "Richard Stallman", + "anecdote": "Richard Stallman dedica la mayor parte de su tiempo a promover el software libre para diversas audiencias y asambleas." + }, + { + "id": 22, + "question": "¿Qué reproductor multimedia similar a « Winamp » se usa a menudo en Linux ?", + "propositions": [ + "Spotify", + "Tomahawk", + "XMMS", + "Mplayer" + ], + "réponse": "XMMS", + "anecdote": "XMMS fue originalmente codificado como « X11Amp » por Peter y Mikal Alm en noviembre de 1997, para llenar un vacío en GNU / Linux." + }, + { + "id": 23, + "question": "¿Qué empresa financiada por el sudafricano Mark Shuttleworth patrocina Ubuntu ?", + "propositions": [ + "Pentax", + "Nikon", + "Panasonic", + "Canonical" + ], + "réponse": "Canonical", + "anecdote": "Canonical, con sede en la Isla de Man, se estableció en 2004 y opera en 30 países diferentes, empleando a 500 personas." + }, + { + "id": 24, + "question": "¿Con qué jugador del mundo Linux ha firmado Microsoft un acuerdo importante ?", + "propositions": [ + "Mandriva", + "SUSE", + "Ubuntu", + "Red Hat" + ], + "réponse": "SUSE", + "anecdote": "Aparecida a principios de 1994, SUSE es de hecho la distribución comercial más antigua que existe." + }, + { + "id": 25, + "question": "¿La Estación Espacial Internacional ha abandonado Windows en favor de qué distribución de Linux ?", + "propositions": [ + "Red Hat", + "SUSE", + "Ubuntu", + "Debian" + ], + "réponse": "Debian", + "anecdote": "Debian se utiliza como base para muchas otras distribuciones muy exitosas como Knoppix y Ubuntu." + }, + { + "id": 26, + "question": "Hasta la fecha, ¿qué país usa GNU / Linux con mayor frecuencia como sistema operativo de escritorio ?", + "propositions": [ + "Venezuela", + "Cuba", + "Kenia", + "Finlandia" + ], + "réponse": "Cuba", + "anecdote": "Los dos entornos GNOME y KDE, que se basan en tecnologías comunes, han alcanzado una cierta madurez." + }, + { + "id": 27, + "question": "¿Qué diseñador gráfico dibujó en 1996 el pingüino Tux inicial, mascota del proyecto Linux ?", + "propositions": [ + "Rob Janoff", + "Larry Ewing", + "Jeffrey Lynch", + "Wes Wilson" + ], + "réponse": "Larry Ewing", + "anecdote": "El programador estadounidense Larry Ewing hizo la mascota de Tux con la ayuda del software libre « The GIMP »." + }, + { + "id": 28, + "question": "¿Cuál de estos juegos se ejecuta de forma nativa en GNU / Linux ?", + "propositions": [ + "Zelda", + "Quake III Arena", + "Super Mario Kart", + "Splinter Cell" + ], + "réponse": "Quake III Arena", + "anecdote": "El juego desarrollado por ID Software también se ha lanzado para Macintosh, Dreamcast, PlayStation 2 y Xbox Live Arcade." + }, + { + "id": 29, + "question": "¿Qué consola de juegos de código abierto tiene un sistema operativo Linux compilado ?", + "propositions": [ + "Equipo de juego", + "GP32", + "N-Gage", + "Pandora" + ], + "réponse": "Pandora", + "anecdote": "En el lanzamiento, Pandora pudo lanzar « Quake », « Quake II » y « Quake III » Arena sin disminuir la velocidad." + }, + { + "id": 30, + "question": "¿Cómo se llamó inicialmente el proyecto Linux, que luego se convirtió en una marca ?", + "propositions": [ + "Freax", + "Longhorn", + "Serval", + "Panther" + ], + "réponse": "Freax", + "anecdote": "El proyecto Freax encuentra su nombre final gracias a Ari Lemmke que aloja el trabajo de Linus Torvalds en un directorio llamado « Linux »." + } + ] + }, + "it": { + "débutant": [ + { + "id": 1, + "question": "Quale programmatore ha creato e continua a guidare lo sviluppo del kernel Linux ?", + "propositions": [ + "Steeve Jobs", + "Larry Ellison", + "Bill Gates", + "Linus Torvalds" + ], + "réponse": "Linus Torvalds", + "anecdote": "Linus Torvalds ha scoperto i computer all'età di 11 anni grazie al computer di suo nonno, un Commodore VIC-20." + }, + { + "id": 2, + "question": "Qual è l'asset principale di Linux, sviluppato e mantenuto da Linus Torvalds ?", + "propositions": [ + "È libero", + "È bello", + "È finlandese", + "È divertente" + ], + "réponse": "È libero", + "anecdote": "« Linux » è il nome comunemente dato a qualsiasi sistema operativo libero che funziona con il kernel Linux." + }, + { + "id": 3, + "question": "Quale animale che rappresenta Linux è anche la mascotte dell'Università di Helsinki ?", + "propositions": [ + "Pinguino", + "Gnu", + "Marmotta", + "Caribou" + ], + "réponse": "Pinguino", + "anecdote": "Progettato nel 1996, l'uso di questo pinguino è gratuito e si può trovare in molti progetti e loghi legati a Linux." + }, + { + "id": 4, + "question": "Quale comando Linux, basato sul comando UNIX, elimina un file ?", + "propositions": [ + "Rm", + "Elimina", + "Del", + "Rem" + ], + "réponse": "Rm", + "anecdote": "Per discendenza da UNIX, la riga di comando è sempre disponibile in GNU / Linux, indipendentemente dalla distribuzione." + }, + { + "id": 5, + "question": "Quale dei seguenti denota una distribuzione Linux fondata nel 1993 ?", + "propositions": [ + "Mandrika", + "Red Hat", + "Souze", + "Zubuntu" + ], + "réponse": "Red Hat", + "anecdote": "Red Hat è una delle società di software open source più grandi e riconosciute." + }, + { + "id": 6, + "question": "Quale sistema operativo mobile leader del settore si basa su un kernel Linux ?", + "propositions": [ + "iOS", + "Windows Phone", + "Android", + "BlackBerry 10" + ], + "réponse": "Android", + "anecdote": "Nel 2015, Android era il sistema operativo più utilizzato al mondo con una quota di mercato superiore all'80%." + }, + { + "id": 7, + "question": "In Linux, cosa chiamate software assemblato attorno al kernel ?", + "propositions": [ + "Integrato", + "Distribuzione", + "Pacchetto software", + "Libreria software" + ], + "réponse": "Distribuzione", + "anecdote": "Esiste un'ampia varietà di distribuzioni, ciascuna con i propri obiettivi e la propria filosofia." + }, + { + "id": 8, + "question": "Quale web server sotto Linux è presente anche sui server di tutto il mondo ?", + "propositions": [ + "Comanche", + "Apache", + "Mohican", + "Sioux" + ], + "réponse": "Apache", + "anecdote": "Dall'aprile 1996, secondo lo studio permanente di Netcraft, Apache è diventato il server HTTP più popolare su Internet." + }, + { + "id": 9, + "question": "Qual è il nome della mascotte di Linux, nota ai fan del sistema operativo ?", + "propositions": [ + "Tux", + "Wilber", + "Gnu", + "Puffy" + ], + "réponse": "Tux", + "anecdote": "Il design del personaggio è stato scelto dopo un concorso organizzato nel 1996 vinto da Larry Ewing." + }, + { + "id": 10, + "question": "Quale di questi comandi Linux mostra il contenuto di un file di testo sullo schermo ?", + "propositions": [ + "Tipo", + "Uomo", + "Ls", + "Gatto" + ], + "réponse": "Gatto", + "anecdote": "La principale differenza tra Linux e altri sistemi operativi competitivi è che si tratta di un sistema operativo gratuito." + } + ], + "confirmé": [ + { + "id": 11, + "question": "In che anno Linus Torvalds ha distribuito la prima versione del kernel Linux ?", + "propositions": [ + "1993", + "1995", + "1991", + "1997" + ], + "réponse": "1991", + "anecdote": "Nel 1991, il PC compatibile dominava il mercato dei personal computer e generalmente funzionava sotto MS-DOS o Windows." + }, + { + "id": 12, + "question": "Quale antica parola bantu designa una famosa distribuzione Linux ?", + "propositions": [ + "Fedora", + "Ubuntu", + "Gentoo", + "Mandriva" + ], + "réponse": "Ubuntu", + "anecdote": "Il nome del cast deriva da un'antica parola bantu che significa « Sono quello che sono per quello che siamo tutti »." + }, + { + "id": 13, + "question": "Quale browser web e gestore di file viene utilizzato di default per KDE ?", + "propositions": [ + "Firefox", + "Chrome", + "Konqueror", + "Netscape" + ], + "réponse": "Konqueror", + "anecdote": "Konqueror può anche visualizzare i contenuti di un server FTP, consentire la navigazione nella rete locale e visualizzare i file." + }, + { + "id": 14, + "question": "Qual è il nome della distribuzione francese di Linux, che è facile da installare e utilizzare ?", + "propositions": [ + "SUSE", + "Slackware", + "Debian", + "Mandriva" + ], + "réponse": "Mandriva", + "anecdote": "Rivolta sia al pubblico in generale che ai professionisti, questa distribuzione GNU / Linux è basata su KDE." + }, + { + "id": 15, + "question": "Che tipo di file vengono presi in considerazione dal gestore di pacchetti integrato in Ubuntu ?", + "propositions": [ + ".deb", + ".rpm", + ".rss", + ".dev" + ], + "réponse": ".deb", + "anecdote": "Per impostazione predefinita, Ubuntu è installato con una varietà di software gratuiti come LibreOffice, Firefox, Thunderbird e Transmission." + }, + { + "id": 16, + "question": "In Linux, quale comando viene utilizzato per creare un account utente ?", + "propositions": [ + "Passwd", + "Useradd", + "Adduser", + "Mkaccount" + ], + "réponse": "Useradd", + "anecdote": "Grazie alla sua riga di comando, scienziati, ingegneri e sviluppatori sono tra i suoi utenti più frequenti." + }, + { + "id": 17, + "question": "Da quale progetto sono tratti gli strumenti che ruotano attorno a Linux ?", + "propositions": [ + "BSD", + "iOS", + "GNU", + "Mimix" + ], + "réponse": "GNU", + "anecdote": "GNU è un progetto di sistema operativo libero iniziato nel 1983 da Richard Stallman e poi mantenuto dal Progetto GNU." + }, + { + "id": 18, + "question": "Da quale distribuzione Linux deriva il sistema operativo Ubuntu ?", + "propositions": [ + "Slackware", + "Red Hat", + "Fedora", + "Debian" + ], + "réponse": "Debian", + "anecdote": "L'ex sviluppatore Debian Mark Shuttleworth voleva fornire una versione di più facile accesso per i principianti." + }, + { + "id": 19, + "question": "Qual è la distribuzione Linux più vecchia ancora mantenuta fino ad oggi ?", + "propositions": [ + "Mandriva", + "Ubuntu", + "Slackware", + "Red Hat" + ], + "réponse": "Slackware", + "anecdote": "Slackware è una distribuzione Linux che, a differenza di altre distribuzioni, è stata a lungo mantenuta da una persona." + }, + { + "id": 20, + "question": "Quale ambiente grafico a finestre viene utilizzato in Linux ?", + "propositions": [ + "Finestra L", + "X Window", + "Finestra K", + "Finestra Z" + ], + "réponse": "X Window", + "anecdote": "Questo ambiente grafico gestisce l'interazione uomo-macchina tramite lo schermo, il mouse e la tastiera di alcuni computer in rete." + } + ], + "expert": [ + { + "id": 21, + "question": "Quale programmatore e attivista del software libero ha creato il progetto GNU nel 1984 ?", + "propositions": [ + "John Neumann", + "Richard Stallman", + "Alan Cox", + "Linus Torvalds" + ], + "réponse": "Richard Stallman", + "anecdote": "Richard Stallman dedica la maggior parte del suo tempo alla promozione del software libero a diversi pubblici e assemblee." + }, + { + "id": 22, + "question": "Quale lettore multimediale simile a « Winamp » viene spesso utilizzato in Linux ?", + "propositions": [ + "Spotify", + "Mplayer", + "Tomahawk", + "XMMS" + ], + "réponse": "XMMS", + "anecdote": "XMMS è stato originariamente codificato come « X11Amp » da Peter e Mikal Alm nel novembre 1997, per colmare una lacuna in GNU / Linux." + }, + { + "id": 23, + "question": "Quale azienda finanziata dal sudafricano Mark Shuttleworth sponsorizza Ubuntu ?", + "propositions": [ + "Nikon", + "Panasonic", + "Canonical", + "Pentax" + ], + "réponse": "Canonical", + "anecdote": "Canonical, con sede a Isola di Man, è stata fondata nel 2004 e opera in 30 paesi diversi, impiegando 500 persone." + }, + { + "id": 24, + "question": "Con quale player nel mondo Linux Microsoft ha firmato un importante accordo ?", + "propositions": [ + "Mandriva", + "Ubuntu", + "Red Hat", + "SUSE" + ], + "réponse": "SUSE", + "anecdote": "Apparso all'inizio del 1994, SUSE è infatti la più antica distribuzione commerciale ancora esistente." + }, + { + "id": 25, + "question": "La Stazione Spaziale Internazionale ha abbandonato Windows a favore di quale distribuzione Linux ?", + "propositions": [ + "Debian", + "Red Hat", + "SUSE", + "Ubuntu" + ], + "réponse": "Debian", + "anecdote": "Debian è usata come base per molte altre distribuzioni di grande successo come Knoppix e Ubuntu." + }, + { + "id": 26, + "question": "Ad oggi, quale paese utilizza GNU / Linux più regolarmente come sistema operativo desktop ?", + "propositions": [ + "Finlandia", + "Venezuela", + "Cuba", + "Kenya" + ], + "réponse": "Cuba", + "anecdote": "I due ambienti GNOME e KDE, che si basano su tecnologie comuni, hanno raggiunto una certa maturità." + }, + { + "id": 27, + "question": "Quale grafico ha disegnato nel 1996 il pinguino Tux iniziale, mascotte del progetto Linux ?", + "propositions": [ + "Rob Janoff", + "Larry Ewing", + "Jeffrey Lynch", + "Wes Wilson" + ], + "réponse": "Larry Ewing", + "anecdote": "Il programmatore americano Larry Ewing ha creato la mascotte di Tux con l'aiuto del software gratuito « The GIMP »." + }, + { + "id": 28, + "question": "Quale di questi giochi funziona in modo nativo sotto GNU / Linux ?", + "propositions": [ + "Quake III Arena", + "Splinter Cell", + "Zelda", + "Super Mario Kart" + ], + "réponse": "Quake III Arena", + "anecdote": "Il gioco sviluppato da ID Software è stato rilasciato anche per Macintosh, Dreamcast, PlayStation 2 e Xbox Live Arcade." + }, + { + "id": 29, + "question": "Quale console di gioco open source ha un sistema operativo Linux compilato ?", + "propositions": [ + "GP32", + "Pandora", + "Game Gear", + "N-Gage" + ], + "réponse": "Pandora", + "anecdote": "Pandora è stato in grado di lanciare « Quake », « Quake II » e « Quake III » Arena senza rallentare." + }, + { + "id": 30, + "question": "Come si chiamava inizialmente il progetto Linux, che in seguito divenne un marchio ?", + "propositions": [ + "Serval", + "Longhorn", + "Pantera", + "Freax" + ], + "réponse": "Freax", + "anecdote": "Il progetto Freax trova il suo nome definitivo grazie ad Ari Lemmke che ospita il lavoro di Linus Torvalds in una directory chiamata « Linux »." + } + ] + }, + "nl": { + "débutant": [ + { + "id": 1, + "question": "Welke programmeur heeft de ontwikkeling van de Linux-kernel gemaakt en blijft deze leiden ?", + "propositions": [ + "Linus Torvalds", + "Bill Gates", + "Larry Ellison", + "Steeve Jobs" + ], + "réponse": "Linus Torvalds", + "anecdote": "Linus Torvalds ontdekte computers op 11-jarige leeftijd dankzij de computer van zijn grootvader, een Commodore VIC-20." + }, + { + "id": 2, + "question": "Wat is de belangrijkste troef van Linux, ontwikkeld en onderhouden door Linus Torvalds ?", + "propositions": [ + "Het is leuk", + "Hij is gratis", + "Hij is mooi", + "Hij is Fins" + ], + "réponse": "Hij is gratis", + "anecdote": "« Linux » is de naam die gewoonlijk wordt gegeven aan elk gratis besturingssysteem dat werkt met de Linux-kernel." + }, + { + "id": 3, + "question": "Welk dier dat Linux vertegenwoordigt, is ook de mascotte van de Universiteit van Helsinki ?", + "propositions": [ + "Groundhog", + "Pinguïn", + "Gnoe", + "Caribou" + ], + "réponse": "Pinguïn", + "anecdote": "Ontworpen in 1996, het gebruik van deze pinguïn is gratis en is te vinden in veel projecten en logo's gerelateerd aan Linux." + }, + { + "id": 4, + "question": "Welk Linux-commando, gebaseerd op het UNIX-commando, verwijdert een bestand ?", + "propositions": [ + "Rm", + "Rem", + "Verwijderen", + "Del" + ], + "réponse": "Rm", + "anecdote": "Door afstamming van UNIX is de opdrachtregel altijd beschikbaar in GNU / Linux, ongeacht de distributie." + }, + { + "id": 5, + "question": "Welke van de volgende duidt een Linux-distributie aan die in 1993 is opgericht ?", + "propositions": [ + "Mandrika", + "Souze", + "Red Hat", + "Zubuntu" + ], + "réponse": "Red Hat", + "anecdote": "Red Hat is een van de grootste en meest erkende open source softwarebedrijven." + }, + { + "id": 6, + "question": "Welk toonaangevende mobiele besturingssysteem vertrouwt op een Linux-kernel ?", + "propositions": [ + "Android", + "Windows Phone", + "iOS", + "BlackBerry 10" + ], + "réponse": "Android", + "anecdote": "In 2015 was Android het meest gebruikte besturingssysteem ter wereld met een marktaandeel van meer dan 80%." + }, + { + "id": 7, + "question": "Hoe noem je in Linux software die rond de kernel is geassembleerd ?", + "propositions": [ + "Softwarebibliotheek", + "Geïntegreerd", + "Softwarepakket", + "Distributie" + ], + "réponse": "Distributie", + "anecdote": "Er is een zeer grote verscheidenheid aan distributies, elk met zijn eigen doelstellingen en filosofie." + }, + { + "id": 8, + "question": "Welke webserver onder Linux staat ook op servers over de hele wereld ?", + "propositions": [ + "Mohican", + "Apache", + "Sioux", + "Comanche" + ], + "réponse": "Apache", + "anecdote": "Volgens de permanente studie van Netcraft is Apache sinds april 1996 de populairste HTTP-server op internet geworden." + }, + { + "id": 9, + "question": "Wat is de naam van de Linux-mascotte, bekend bij fans van het besturingssysteem ?", + "propositions": [ + "GNU", + "Wilber", + "Tux", + "Gezwollen" + ], + "réponse": "Tux", + "anecdote": "Het ontwerp van het personage werd gekozen na een wedstrijd die in 1996 werd georganiseerd en gewonnen door Larry Ewing." + }, + { + "id": 10, + "question": "Welke van deze Linux-commando's geeft de inhoud van een tekstbestand op het scherm weer ?", + "propositions": [ + "Ls", + "Man", + "Kat", + "Type" + ], + "réponse": "Kat", + "anecdote": "Het belangrijkste verschil tussen Linux en andere concurrerende besturingssystemen is dat het een gratis besturingssysteem is." + } + ], + "confirmé": [ + { + "id": 11, + "question": "In welk jaar heeft Linus Torvalds de eerste versie van de Linux-kernel verzonden ?", + "propositions": [ + "1993", + "1995", + "1991", + "1997" + ], + "réponse": "1991", + "anecdote": "In 1991 domineerde pc-compatibel de pc-markt en werd deze over het algemeen beheerd onder MS-DOS of Windows." + }, + { + "id": 12, + "question": "Welk oud Bantu-woord duidt een beroemde Linux-distributie aan ?", + "propositions": [ + "Fedora", + "Gentoo", + "Mandriva", + "Ubuntu" + ], + "réponse": "Ubuntu", + "anecdote": "De naam van de cast komt van een oud Bantu-woord, wat betekent : « Ik ben wat ik ben vanwege wat we allemaal zijn »." + }, + { + "id": 13, + "question": "Welke webbrowser en bestandsbeheerder wordt standaard gebruikt voor KDE ?", + "propositions": [ + "Konqueror", + "Firefox", + "Netscape", + "Chroom" + ], + "réponse": "Konqueror", + "anecdote": "Konqueror kan ook de inhoud van een FTP-server weergeven, door het lokale netwerk bladeren en bestanden bekijken." + }, + { + "id": 14, + "question": "Hoe heet de Franse distributie van Linux, die gemakkelijk te installeren en te gebruiken is ?", + "propositions": [ + "Slackware", + "Mandriva", + "Debian", + "SUSE" + ], + "réponse": "Mandriva", + "anecdote": "Deze GNU / Linux-distributie is zowel gericht op het grote publiek als op professionals en is gebouwd rond KDE." + }, + { + "id": 15, + "question": "Met welk type bestanden wordt rekening gehouden door de pakketbeheerder die in Ubuntu is geïntegreerd ?", + "propositions": [ + ".deb", + ".rpm", + ".rss", + ".dev" + ], + "réponse": ".deb", + "anecdote": "Ubuntu wordt standaard geïnstalleerd met een verscheidenheid aan gratis software zoals LibreOffice, Firefox, Thunderbird en Transmission." + }, + { + "id": 16, + "question": "Welke opdracht wordt in Linux gebruikt om een gebruikersaccount aan te maken ?", + "propositions": [ + "Passwd", + "Useradd", + "Mkaccount", + "Adduser" + ], + "réponse": "Useradd", + "anecdote": "Dankzij de opdrachtregel behoren wetenschappers, ingenieurs en ontwikkelaars tot de meest frequente gebruikers." + }, + { + "id": 17, + "question": "Van welk project zijn de tools die rond Linux draaien afkomstig ?", + "propositions": [ + "Mimix", + "iOS", + "BSD", + "GNU" + ], + "réponse": "GNU", + "anecdote": "GNU is een gratis besturingssysteemproject dat in 1983 is gestart door Richard Stallman en vervolgens wordt onderhouden door het GNU-project." + }, + { + "id": 18, + "question": "Van welke Linux-distributie is het Ubuntu-besturingssysteem afgeleid ?", + "propositions": [ + "Debian", + "Slackware", + "Red Hat", + "Fedora" + ], + "réponse": "Debian", + "anecdote": "De voormalige Debian-ontwikkelaar Mark Shuttleworth wilde een versie leveren die gemakkelijker toegankelijk was voor beginners." + }, + { + "id": 19, + "question": "Wat is de oudste Linux-distributie die tot op de dag van vandaag nog wordt onderhouden ?", + "propositions": [ + "Red Hat", + "Slackware", + "Mandriva", + "Ubuntu" + ], + "réponse": "Slackware", + "anecdote": "Slackware is een Linux-distributie die, in tegenstelling tot andere distributies, lange tijd door één persoon wordt onderhouden." + }, + { + "id": 20, + "question": "Welke grafische omgeving met vensters wordt gebruikt in Linux ?", + "propositions": [ + "L Venster", + "Z Venster", + "K Venster", + "X-venster" + ], + "réponse": "X-venster", + "anecdote": "Deze grafische omgeving beheert de interactie tussen mens en machine via het scherm, de muis en het toetsenbord van bepaalde netwerkcomputers." + } + ], + "expert": [ + { + "id": 21, + "question": "Welke programmeur en vrije software-activist heeft het GNU-project in 1984 opgericht ?", + "propositions": [ + "John Neumann", + "Richard Stallman", + "Linus Torvalds", + "Alan Cox" + ], + "réponse": "Richard Stallman", + "anecdote": "Richard Stallman besteedt het grootste deel van zijn tijd aan het promoten van gratis software voor verschillende doelgroepen en vergaderingen." + }, + { + "id": 22, + "question": "Welke « Winamp » -achtige mediaspeler wordt vaak gebruikt in Linux ?", + "propositions": [ + "Mplayer", + "Spotify", + "XMMS", + "Tomahawk" + ], + "réponse": "XMMS", + "anecdote": "XMMS werd oorspronkelijk gecodeerd als « X11Amp » door Peter en Mikal Alm in november 1997 om een \u200b\u200bleemte in GNU / Linux op te vullen." + }, + { + "id": 23, + "question": "Welk bedrijf dat wordt gefinancierd door de Zuid-Afrikaanse Mark Shuttleworth sponsort Ubuntu ?", + "propositions": [ + "Nikon", + "Pentax", + "Canoniek", + "Panasonic" + ], + "réponse": "Canoniek", + "anecdote": "Het op het eiland Man gevestigde Canonical werd opgericht in 2004 en is actief in 30 verschillende landen en heeft 500 mensen in dienst." + }, + { + "id": 24, + "question": "Met welke speler in de Linux-wereld heeft Microsoft een grote overeenkomst getekend ?", + "propositions": [ + "SUSE", + "Mandriva", + "Red Hat", + "Ubuntu" + ], + "réponse": "SUSE", + "anecdote": "SUSE verscheen begin 1994 en is in feite de oudste nog bestaande commerciële distributie." + }, + { + "id": 25, + "question": "Het internationale ruimtestation heeft Windows verlaten ten gunste van welke Linux-distributie ?", + "propositions": [ + "Ubuntu", + "Debian", + "SUSE", + "Red Hat" + ], + "réponse": "Debian", + "anecdote": "Debian wordt gebruikt als basis voor vele andere zeer succesvolle distributies zoals Knoppix en Ubuntu." + }, + { + "id": 26, + "question": "Welk land gebruikt tot op heden GNU / Linux het meest regelmatig als desktopbesturingssysteem ?", + "propositions": [ + "Cuba", + "Venezuela", + "Finland", + "Kenia" + ], + "réponse": "Cuba", + "anecdote": "De twee omgevingen GNOME en KDE, die zijn gebaseerd op gemeenschappelijke technologieën, hebben een zekere volwassenheid bereikt." + }, + { + "id": 27, + "question": "Welke grafisch ontwerper tekende in 1996 de eerste Tux-pinguïn, de mascotte van het Linux-project ?", + "propositions": [ + "Larry Ewing", + "Jeffrey Lynch", + "Wes Wilson", + "Rob Janoff" + ], + "réponse": "Larry Ewing", + "anecdote": "De Amerikaanse programmeur Larry Ewing maakte de Tux-mascotte met behulp van gratis software « The GIMP »." + }, + { + "id": 28, + "question": "Welke van deze games draait native onder GNU / Linux ?", + "propositions": [ + "Splintercel", + "Super Mario Kart", + "Zelda", + "Quake III Arena" + ], + "réponse": "Quake III Arena", + "anecdote": "De game die is ontwikkeld door ID Software is ook uitgebracht voor Macintosh, Dreamcast, PlayStation 2 en Xbox Live Arcade." + }, + { + "id": 29, + "question": "Welke open source gameconsole heeft een gecompileerd Linux-besturingssysteem ?", + "propositions": [ + "Pandora", + "GP32", + "N-Gage", + "Game-uitrusting" + ], + "réponse": "Pandora", + "anecdote": "Pandora was in staat om « Quake », « Quake II » en « Quake III » Arena te lanceren zonder te vertragen." + }, + { + "id": 30, + "question": "Hoe heette het Linux-project aanvankelijk, dat later een merk werd ?", + "propositions": [ + "Serval", + "Longhorn", + "Panter", + "Freax" + ], + "réponse": "Freax", + "anecdote": "Het Freax-project vindt zijn definitieve naam dankzij Ari Lemmke die het werk van Linus Torvalds host in een directory met de naam « Linux »." + } + ] + } + } +} \ No newline at end of file diff --git a/misc/quiz/openquizzdb/web.json b/misc/quiz/openquizzdb/web.json new file mode 100644 index 0000000..3e77982 --- /dev/null +++ b/misc/quiz/openquizzdb/web.json @@ -0,0 +1,2250 @@ +{ + "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": "2021-08-22", + "catégorie-nom-slogan": { + "fr": { + "catégorie": "Web", + "nom": "Secrets du Web", + "slogan": "Explorez les méandres du Web" + }, + "en": { + "catégorie": "Web", + "nom": "Meanders of the web", + "slogan": "The network of networks" + }, + "es": { + "catégorie": "Web", + "nom": "Meandros de la web", + "slogan": "La red de redes" + }, + "it": { + "catégorie": "Ragnatela", + "nom": "I meandri del web", + "slogan": "La rete delle reti" + }, + "de": { + "catégorie": "Netz", + "nom": "Mäander des Netzes", + "slogan": "Das Netzwerk der Netzwerke" + }, + "nl": { + "catégorie": "Web", + "nom": "Meanders van het web", + "slogan": "Het netwerk van netwerken" + } + }, + "quizz": { + "fr": { + "débutant": [ + { + "id": 1, + "question": "Quel terme désigne une personne qui utilise Internet pour naviguer sur des sites ?", + "propositions": [ + "Internaute", + "Navigateur", + "Butineur", + "Webmestre" + ], + "réponse": "Internaute", + "anecdote": "Il est considéré que le pourcentage d'internautes par rapport à la population d'un pays peut être un indice de développement." + }, + { + "id": 2, + "question": "Quel type de moteur sont Google, Bing et Yahoo sur Internet ?", + "propositions": [ + "De recherche", + "De courrier", + "De sauvegarde", + "De navigation" + ], + "réponse": "De recherche", + "anecdote": "Google, en particulier, a popularisé l'indexation web et l'algorithme PageRank, permettant de classer les pages selon leur pertinence." + }, + { + "id": 3, + "question": "Quel symbole typographique est toujours représenté dans les adresses e-mails ?", + "propositions": [ + "Croisillon", + "Astérisque", + "Esperluette", + "Arobase" + ], + "réponse": "Arobase", + "anecdote": "Une opinion commune voudrait que le mot « arobase » provienne de la contraction du terme typographique « a rond bas »." + }, + { + "id": 4, + "question": "Quelle encyclopédie collaborative est actuellement la plus utilisée sur Internet ?", + "propositions": [ + "Framasoft", + "Netalya", + "Pandocréon", + "Wikipédia" + ], + "réponse": "Wikipédia", + "anecdote": "Sur Wikipédia, n'importe qui pouvant accéder au site peut modifier la quasi-totalité de ses articles, sous réserve de modération." + }, + { + "id": 5, + "question": "Que sont « Google Chrome », « Internet Explorer » et « Mozilla Firefox » ?", + "propositions": [ + "Moteurs", + "Routeurs", + "Navigateurs", + "Encyclopédies" + ], + "réponse": "Navigateurs", + "anecdote": "Le terme « navigateur » est inspiré de Netscape Navigator, le navigateur phare principalement utilisé en 1995 et 1996." + }, + { + "id": 6, + "question": "Quel logiciel est indispensable pour protéger votre ordinateur des menaces en ligne ?", + "propositions": [ + "Messagerie", + "Chat", + "Navigateur", + "Antivirus" + ], + "réponse": "Antivirus", + "anecdote": "Les antivirus peuvent balayer le contenu d'un disque dur ainsi que la mémoire vive pour protéger contre les ransomwares et les spywares." + }, + { + "id": 7, + "question": "Comment désigne-t-on un passionné d'Internet et des nouvelles technologies ?", + "propositions": [ + "Geek", + "Butineur", + "Hacker", + "No life" + ], + "réponse": "Geek", + "anecdote": "Le terme geek était à l'origine un surnom péjoratif désignant une personne obsessionnellement dédiée à une activité particulière." + }, + { + "id": 8, + "question": "Quels outils permettent de mettre en mémoire une adresse web pour y revenir ?", + "propositions": [ + "Adresses", + "Onglets", + "Extensions", + "Favoris" + ], + "réponse": "Favoris", + "anecdote": "Les favoris (marque-pages) permettent de sauvegarder des liens vers ses sites préférés ou ceux que l'on souhaite reconsulter." + }, + { + "id": 9, + "question": "Comment désigne-t-on généralement une conversation en temps réel sur Internet ?", + "propositions": [ + "Hoax", + "Chat", + "Blog", + "Forum" + ], + "réponse": "Chat", + "anecdote": "C'est à partir des années 1990, avec des logiciels comme ICQ ou AOL Instant Messenger, que le chat en ligne est devenu populaire." + }, + { + "id": 10, + "question": "Quelle connexion sans fil pouvez-vous utiliser pour surfer sur Internet ?", + "propositions": [ + "WebGL", + "WordPress", + "WebRTC", + "Wi-Fi" + ], + "réponse": "Wi-Fi", + "anecdote": "La portée du Wi-Fi atteint plusieurs dizaines de mètres en intérieur, généralement entre une vingtaine et une cinquantaine de mètres." + } + ], + "confirmé": [ + { + "id": 11, + "question": "Quel appareil convertit les signaux numériques en signaux analogiques ?", + "propositions": [ + "Modem", + "Routeur", + "Switch", + "Serveur" + ], + "réponse": "Modem", + "anecdote": "Le modem sert à transformer les données numériques en signaux analogiques afin qu'ils puissent être envoyés par ligne téléphonique." + }, + { + "id": 12, + "question": "Quel mot français est désormais utilisé pour traduire le mot e-mail ?", + "propositions": [ + "Enveloppe", + "Navigateur", + "Courriel", + "Progiciel" + ], + "réponse": "Courriel", + "anecdote": "Les règles de bon usage du courrier électronique et d'échanges en ligne sont décrites dans un document appelé « nétiquette »." + }, + { + "id": 13, + "question": "Sur quel média sont enregistrés les sites web que vous visitez depuis votre ordinateur ?", + "propositions": [ + "Wi-Fi", + "Modem", + "Serveur", + "CD-ROM" + ], + "réponse": "Serveur", + "anecdote": "Les fichiers sont souvent répartis sur plusieurs serveurs, parfois dans des pays différents, pour offrir une plus grande rapidité d'accès." + }, + { + "id": 14, + "question": "Que signifie le deuxième w du www utilisé dans les adresses de sites internet ?", + "propositions": [ + "World", + "Wide", + "Worse", + "Web" + ], + "réponse": "Wide", + "anecdote": "Le Web n'est qu'une des applications d'Internet, distincte du courriel, de la messagerie instantanée ou du partage de fichiers." + }, + { + "id": 15, + "question": "De combien de mégaoctets avez-vous besoin pour obtenir un gigaoctet ?", + "propositions": [ + "49", + "100", + "1 024", + "10 000" + ], + "réponse": "1 024", + "anecdote": "Le débat entre l'utilisation des systèmes binaire et décimal a mené à l'introduction d'unités spécifiques pour éviter toute ambiguïté." + }, + { + "id": 16, + "question": "Quel nom portait le précédent navigateur Internet devenu « Microsoft Edge » ?", + "propositions": [ + "Firefox", + "Chrome", + "Safari", + "Internet Explorer" + ], + "réponse": "Internet Explorer", + "anecdote": "La version 11 du navigateur Internet Explorer sera toujours présente dans Windows 10 avant le passage progressif à Microsoft Edge." + }, + { + "id": 17, + "question": "Sur Internet, que signifie l'extension « .com » que l'on retrouve dans une adresse web ?", + "propositions": [ + "Commémoration", + "Commercial", + "Communautaire", + "Communication" + ], + "réponse": "Commercial", + "anecdote": "Initialement administré par le ministère de la Défense américain, le domaine .com est aujourd'hui exploité par la société Verisign." + }, + { + "id": 18, + "question": "Lequel de ces outils ne permet pas d'afficher ou de naviguer sur des pages web ?", + "propositions": [ + "Google Chrome", + "Internet Explorer", + "Acrobat Reader", + "Mozilla Firefox" + ], + "réponse": "Acrobat Reader", + "anecdote": "Depuis 1993, l'objectif principal d'Adobe était de permettre l'échange de documents numériques tout en conservant leur mise en page." + }, + { + "id": 19, + "question": "Comment appelle-t-on un e-mail non sollicité reçu depuis Internet ?", + "propositions": [ + "Cookie", + "Bug", + "Hoax", + "Spam" + ], + "réponse": "Spam", + "anecdote": "Les spams représentent environ 45 % du trafic total d'e-mails dans le monde, et ils sont souvent utilisés pour des escroqueries." + }, + { + "id": 20, + "question": "Quel spécialiste de l'informatique est capable de pirater n'importe quel site Internet ?", + "propositions": [ + "Surfeur", + "Hacker", + "Driver", + "Cracker" + ], + "réponse": "Hacker", + "anecdote": "Les hackers sont classés en plusieurs catégories en fonction de leurs objectifs, de leur compétence et de la légalité de leurs actes." + } + ], + "expert": [ + { + "id": 21, + "question": "Grâce à quoi tous les ordinateurs sur Internet sont-ils plus ou moins facilement repérables ?", + "propositions": [ + "Bornage", + "Écran", + "Antivirus", + "Adresse IP" + ], + "réponse": "Adresse IP", + "anecdote": "Les adresses IP dynamiques sont attribuées aux utilisateurs par leurs fournisseurs d'accès (FAI), contrairement aux adresses IP fixes." + }, + { + "id": 22, + "question": "Quelle extension, ajoutée à votre navigateur Internet, étend ses possibilités ?", + "propositions": [ + "Byte", + "Backup", + "Spool", + "Plug-in" + ], + "réponse": "Plug-in", + "anecdote": "Aujourd'hui, les navigateurs modernes comme Google Chrome, Edge ou Safari, disposent de leurs propres boutiques d'extensions." + }, + { + "id": 23, + "question": "Comment appelle-t-on les canulars transmis par messagerie électronique ou via Internet ?", + "propositions": [ + "Hoax", + "Bug", + "Cookie", + "Virus" + ], + "réponse": "Hoax", + "anecdote": "Les hoax visent généralement à tromper, effrayer ou induire les utilisateurs en erreur, souvent en jouant sur des émotions fortes." + }, + { + "id": 24, + "question": "Quel témoin de passage peut parfois être enregistré sur votre ordinateur ?", + "propositions": [ + "Cupcake", + "Modem", + "Cookie", + "Spam" + ], + "réponse": "Cookie", + "anecdote": "Existant depuis plus de vingt ans, les cookies permettent aux développeurs de sites internet de conserver des données utilisateur." + }, + { + "id": 25, + "question": "En quelle année a été envoyé le tout premier courriel ou courrier électronique ?", + "propositions": [ + "1981", + "1971", + "1991", + "1961" + ], + "réponse": "1971", + "anecdote": "Il faut disposer d'une adresse électronique et d'un client de messagerie permettant l'accès aux messages via un navigateur." + }, + { + "id": 26, + "question": "Quelle opération informatique illicite consiste à copier un site Internet sur son ordinateur ?", + "propositions": [ + "Sauvegarde", + "Copie", + "Aspiration", + "Gravure" + ], + "réponse": "Aspiration", + "anecdote": "Un site web est un ensemble de pages qui peuvent être consultées en suivant des hyperliens à l'intérieur du site lui-même." + }, + { + "id": 27, + "question": "Quelle abréviation est utilisée pour désigner une adresse de site Internet ?", + "propositions": [ + "UML", + "UFO", + "UAC", + "URL" + ], + "réponse": "URL", + "anecdote": "En France, d'après le Journal officiel du 16 mars 1999, URL peut être traduit par adresse réticulaire ou adresse universelle." + }, + { + "id": 28, + "question": "Quel anniversaire le World Wide Web a-t-il fêté en 2014 ?", + "propositions": [ + "Ses 45 ans", + "Ses 25 ans", + "Ses 15 ans", + "Ses 35 ans" + ], + "réponse": "Ses 35 ans", + "anecdote": "Il a été inventé en 1989 par Tim Berners-Lee, chercheur travaillant au CERN (Organisation européenne pour la recherche nucléaire)." + }, + { + "id": 29, + "question": "Quel protocole est dédié à la transmission de fichiers sur Internet ?", + "propositions": [ + "FTP", + "HTTP", + "TCP/IP", + "IPX/SPX" + ], + "réponse": "FTP", + "anecdote": "Bien que toujours utile, des services de stockage cloud (Google Drive, Dropbox) ou des partages en ligne sont désormais proposés." + }, + { + "id": 30, + "question": "Quel terme désigne le code de bonnes pratiques sur Internet ?", + "propositions": [ + "Netscape", + "Nétiquette", + "Netflix", + "Nupedia" + ], + "réponse": "Nétiquette", + "anecdote": "Avec l'essor des réseaux sociaux, l'application de la nétiquette devient un défi constant mais important dans les interactions." + } + ] + }, + "en": { + "débutant": [ + { + "id": 1, + "question": "What do you call a person who uses the Internet to visit websites ?", + "propositions": [ + "Webmaster", + "Browser", + "Internet user", + "Forager" + ], + "réponse": "Internet user", + "anecdote": "It is considered that the percentage of Internet users in relation to the population is an index of economic development." + }, + { + "id": 2, + "question": "On the Internet, « Google », « Bing » and « Yahoo » are examples of search engines...", + "propositions": [ + "Navigation", + "Mail", + "Backup", + "Search" + ], + "réponse": "Search", + "anecdote": "Some sites offer an engine as the main functionality, so the site itself is called the search engine." + }, + { + "id": 3, + "question": "What typographical symbol is always represented in e-mail addresses ?", + "propositions": [ + "Asterisk", + "Ampersand", + "At sign", + "Cross" + ], + "réponse": "At sign", + "anecdote": "A common opinion would be that the word arobase comes from the contraction of the typographical term a round low." + }, + { + "id": 4, + "question": "Which collaborative encyclopedia is currently the most widely used on the Internet ?", + "propositions": [ + "Netalya", + "Wikipedia", + "Pandocreon", + "Framasoft" + ], + "réponse": "Wikipedia", + "anecdote": "On Wikipedia, anyone who can access the site can modify almost all of its articles, subject to moderation." + }, + { + "id": 5, + "question": "What are « Google Chrome », « Internet Explorer » and « Mozilla Firefox » ?", + "propositions": [ + "Routers", + "Encyclopedias", + "Browsers", + "Engines" + ], + "réponse": "Browsers", + "anecdote": "The term browser is inspired by Netscape Navigator, the flagship browser used primarily in 1995 and 1996." + }, + { + "id": 6, + "question": "What software is essential to protect your computer on the Internet ?", + "propositions": [ + "Antivirus", + "Messaging", + "Browser", + "Cat" + ], + "réponse": "Antivirus", + "anecdote": "Antivirus programs can scan the contents of a hard drive as well as computer RAM." + }, + { + "id": 7, + "question": "How do you designate an Internet enthusiast and new technologies ?", + "propositions": [ + "Hacker", + "Forager", + "No life", + "Geek" + ], + "réponse": "Geek", + "anecdote": "Because of his various passions and his in-depth knowledge, the geek is sometimes perceived as too cerebral." + }, + { + "id": 8, + "question": "What tools allow you to store a web address in order to return to it ?", + "propositions": [ + "Extensions", + "Addresses", + "Favorites", + "Tabs" + ], + "réponse": "Favorites", + "anecdote": "The favorites are mainly found in word processing software or for internet browsing." + }, + { + "id": 9, + "question": "What is an instant chat on the Internet generally called ?", + "propositions": [ + "Cookie", + "Cat", + "Hoax", + "Spam" + ], + "réponse": "Cat", + "anecdote": "Unlike electronic mail, this means of communication allows for an interactive dialogue." + }, + { + "id": 10, + "question": "Which wireless connection can you use to surf the Internet more easily ?", + "propositions": [ + "ADSL", + "Wi-Fi", + "Fiber", + "ISDN" + ], + "réponse": "Wi-Fi", + "anecdote": "The range of Wi-Fi reaches several tens of meters indoors (generally between twenty and fifty meters)." + } + ], + "confirmé": [ + { + "id": 11, + "question": "Which box is connected to your computer to connect to the Internet ?", + "propositions": [ + "Server", + "Router", + "Wi-Fi", + "Modem" + ], + "réponse": "Modem", + "anecdote": "Technically, the device is used to convert digital data from the computer into a modulated signal, called analog." + }, + { + "id": 12, + "question": "What French word is now used to translate the word e-mail ?", + "propositions": [ + "Software package", + "Envelope", + "Browser", + "Email" + ], + "réponse": "Email", + "anecdote": "The rules for the proper use of electronic mail are described in a reference document called netiquette." + }, + { + "id": 13, + "question": "What media are the websites you visit from your computer recorded on ?", + "propositions": [ + "Modem", + "Server", + "Wi-Fi", + "CD-ROM" + ], + "réponse": "Server", + "anecdote": "The number of sites on the Internet grew rapidly in 2005 and 2006 thanks to the growing popularity of blogging." + }, + { + "id": 14, + "question": "What does the second w of www used in website addresses mean ?", + "propositions": [ + "World", + "Web", + "Worse", + "Wide" + ], + "réponse": "Wide", + "anecdote": "The Web is just one of the Internet applications, distinct from e-mail, instant messaging or file sharing." + }, + { + "id": 15, + "question": "How many megabytes do you need to get a gigabyte ?", + "propositions": [ + "10,000", + "100", + "49", + "1,024" + ], + "réponse": "1,024", + "anecdote": "Binary prefixes are often used when dealing with large amounts of bytes." + }, + { + "id": 16, + "question": "What was the name of the previous Internet browser that became « Microsoft Edge » ?", + "propositions": [ + "Internet Explorer", + "Firefox", + "Chrome", + "Safari" + ], + "réponse": "Internet Explorer", + "anecdote": "Version 11 of the « Internet Explorer » browser will still be present in Windows 10 before the gradual transition to « Microsoft Edge »." + }, + { + "id": 17, + "question": "On the Internet, what does the .com extension mean that can be found in a web address ?", + "propositions": [ + "Communication", + "Community", + "Commemoration", + "Commercial" + ], + "réponse": "Commercial", + "anecdote": "Initially administered by the US Department of Defense, the .com domain is now operated by the company Verisign." + }, + { + "id": 18, + "question": "Which of these tools does not allow you to view web pages ?", + "propositions": [ + "Internet Explorer", + "Google Chrome", + "Acrobat Reader", + "Mozilla Firefox" + ], + "réponse": "Acrobat Reader", + "anecdote": "Adobe regularly changes the name of the products of the Acrobat family and this by subdividing its range." + }, + { + "id": 19, + "question": "What is an unsolicited e-mail received from the Internet called ?", + "propositions": [ + "Spam", + "Cookie", + "Hoax", + "Bug" + ], + "réponse": "Spam", + "anecdote": "Spam generally refers to large quantities sent for advertising purposes." + }, + { + "id": 20, + "question": "Which computer scientist can hack almost any website ?", + "propositions": [ + "Driver", + "Cracker", + "Hacker", + "Surfer" + ], + "réponse": "Hacker", + "anecdote": "Hackers are classified into several categories according to their objectives, their competence and the legality of their actions." + } + ], + "expert": [ + { + "id": 21, + "question": "How are all computers on the Internet more or less easily spotted ?", + "propositions": [ + "Antivirus", + "Demarcation", + "Screen", + "IP address" + ], + "réponse": "IP address", + "anecdote": "The IP address is the basis of the routing system (routing) of messages on the Internet." + }, + { + "id": 22, + "question": "Which extension added to your favorite Internet browser enhances its possibilities ?", + "propositions": [ + "Spool", + "Byte", + "Plug-in", + "Backup" + ], + "réponse": "Plug-in", + "anecdote": "Some plug-ins can also be used as full software, we say that they are standalone." + }, + { + "id": 23, + "question": "What do we call hoaxes transmitted by email or the Internet ?", + "propositions": [ + "Bug", + "Virus", + "Hoax", + "Cookie" + ], + "réponse": "Hoax", + "anecdote": "Designed to appear believable and genuine, these hoaxes can sometimes have a malicious purpose." + }, + { + "id": 24, + "question": "More and more sites are saving a passing cookie on your computer called...", + "propositions": [ + "Cupcake", + "Spam", + "Modem", + "Cookie" + ], + "réponse": "Cookie", + "anecdote": "In existence for over 20 years, cookies allow website developers to store user data." + }, + { + "id": 25, + "question": "What year was the very first email or email sent ?", + "propositions": [ + "1981", + "1961", + "1971", + "1991" + ], + "réponse": "1971", + "anecdote": "You must have an e-mail address and an e-mail client allowing access to messages via a browser." + }, + { + "id": 26, + "question": "What illegal computer operation consists of copying a website onto your computer ?", + "propositions": [ + "Aspiration", + "Backup", + "Engraving", + "Copy" + ], + "réponse": "Aspiration", + "anecdote": "A website is a collection of pages that can be accessed by following hyperlinks within the site itself." + }, + { + "id": 27, + "question": "What abbreviation is used to denote a website address ?", + "propositions": [ + "TCP", + "MP3", + "KBD", + "URL" + ], + "réponse": "URL", + "anecdote": "In France, according to the Official Journal of March 16, 1999, URL can be translated by reticular address or universal address." + }, + { + "id": 28, + "question": "What birthday did the World Wide Web celebrate in 2014 ?", + "propositions": [ + "Its 35 years", + "Its 15 years", + "Its 25 years", + "Its 45 years" + ], + "réponse": "Its 25 years", + "anecdote": "In September 2014, the Internet exceeded one billion sites online for nearly three billion Internet users." + }, + { + "id": 29, + "question": "Which protocol is dedicated to the transmission of files on the Internet ?", + "propositions": [ + "FTP", + "IPX / SPX", + "HTTP", + "TCP / IP" + ], + "réponse": "FTP", + "anecdote": "This copying mechanism is often used to feed a website hosted by a third party." + }, + { + "id": 30, + "question": "What term designates the code of conduct on the Internet ?", + "propositions": [ + "Netiquette", + "Phishing", + "Reboot", + "Phishing" + ], + "réponse": "Netiquette", + "anecdote": "Netiquette brings together attempts to formalize a certain social contract for the Internet." + } + ] + }, + "de": { + "débutant": [ + { + "id": 1, + "question": "Wie nennt man eine Person, die das Internet nutzt, um Websites zu besuchen ?", + "propositions": [ + "Sammler", + "Webmaster", + "Internetnutzer", + "Browser" + ], + "réponse": "Internetnutzer", + "anecdote": "Es wird davon ausgegangen, dass der Prozentsatz der Internetnutzer im Verhältnis zur Bevölkerung ein Index für die wirtschaftliche Entwicklung ist." + }, + { + "id": 2, + "question": "Im Internet sind « Google », « Bing » und « Yahoo » Beispiele für Suchmaschinen...", + "propositions": [ + "Mail", + "Suche", + "Backup", + "Navigation" + ], + "réponse": "Suche", + "anecdote": "Einige Websites bieten eine Suchmaschine als Hauptfunktionalität an, sodass die Website selbst als Suchmaschine bezeichnet wird." + }, + { + "id": 3, + "question": "Welches typografische Symbol wird in E-Mail-Adressen immer dargestellt ?", + "propositions": [ + "Sternchen", + "Kreuz", + "Am Zeichen", + "Kaufmännisches Und" + ], + "réponse": "Am Zeichen", + "anecdote": "Eine verbreitete Meinung wäre, dass das Wort Arobase aus der Kontraktion des typografischen Begriffs ein rundes Tief stammt." + }, + { + "id": 4, + "question": "Welche kollaborative Enzyklopädie wird derzeit im Internet am häufigsten verwendet ?", + "propositions": [ + "Wikipedia", + "Framasoft", + "Pandocreon", + "Netalya" + ], + "réponse": "Wikipedia", + "anecdote": "Auf Wikipedia kann jeder, der auf die Website zugreifen kann, fast alle Artikel vorbehaltlich der Moderation ändern." + }, + { + "id": 5, + "question": "Was sind « Google Chrome », « Internet Explorer » und « Mozilla Firefox » ?", + "propositions": [ + "Router", + "Enzyklopädien", + "Browser", + "Motoren" + ], + "réponse": "Browser", + "anecdote": "Der Begriff Browser ist von Netscape Navigator inspiriert, dem Flaggschiff-Browser, der hauptsächlich in den Jahren 1995 und 1996 verwendet wurde." + }, + { + "id": 6, + "question": "Welche Software ist wichtig, um Ihren Computer im Internet zu schützen ?", + "propositions": [ + "Katze", + "Messaging", + "Antivirus", + "Browser" + ], + "réponse": "Antivirus", + "anecdote": "Antivirenprogramme können den Inhalt einer Festplatte sowie den Computer-RAM scannen." + }, + { + "id": 7, + "question": "Wie bezeichnen Sie einen Internet-Enthusiasten und neue Technologien ?", + "propositions": [ + "Sammler", + "Hacker", + "Kein Leben", + "Geek" + ], + "réponse": "Geek", + "anecdote": "Aufgrund seiner verschiedenen Leidenschaften und seines fundierten Wissens wird der Geek manchmal als zu zerebral wahrgenommen." + }, + { + "id": 8, + "question": "Mit welchen Tools können Sie eine Webadresse speichern, um zu dieser zurückzukehren ?", + "propositions": [ + "Adressen", + "Tabs", + "Erweiterungen", + "Favoriten" + ], + "réponse": "Favoriten", + "anecdote": "Die Favoriten finden sich hauptsächlich in Textverarbeitungssoftware oder beim Surfen im Internet." + }, + { + "id": 9, + "question": "Wie heißt ein Sofort-Chat im Internet im Allgemeinen ?", + "propositions": [ + "Spam", + "Cookie", + "Katze", + "Scherz" + ], + "réponse": "Katze", + "anecdote": "Im Gegensatz zur E-Mail ermöglicht dieses Kommunikationsmittel einen interaktiven Dialog." + }, + { + "id": 10, + "question": "Mit welcher drahtlosen Verbindung können Sie einfacher im Internet surfen ?", + "propositions": [ + "ISDN", + "Wi-Fi", + "ADSL", + "Faser" + ], + "réponse": "Wi-Fi", + "anecdote": "Die WLAN-Reichweite beträgt in Innenräumen mehrere zehn Meter (in der Regel zwischen zwanzig und fünfzig Metern)." + } + ], + "confirmé": [ + { + "id": 11, + "question": "Welche Box ist mit Ihrem Computer verbunden, um eine Verbindung zum Internet herzustellen ?", + "propositions": [ + "Server", + "Router", + "Modem", + "Wi-Fi" + ], + "réponse": "Modem", + "anecdote": "Technisch wird das Gerät verwendet, um digitale Daten vom Computer in ein moduliertes Signal umzuwandeln, das als analog bezeichnet wird." + }, + { + "id": 12, + "question": "Welches französische Wort wird jetzt verwendet, um das Wort E-Mail zu übersetzen ?", + "propositions": [ + "Umschlag", + "Browser", + "E-Mail", + "Softwarepaket" + ], + "réponse": "E-Mail", + "anecdote": "Die Regeln für die ordnungsgemäße Verwendung von E-Mail sind in einem Referenzdokument namens Netiquette beschrieben." + }, + { + "id": 13, + "question": "Auf welchen Medien werden die Websites, die Sie von Ihrem Computer aus besuchen, aufgezeichnet ?", + "propositions": [ + "Server", + "Wi-Fi", + "Modem", + "CD-ROM" + ], + "réponse": "Server", + "anecdote": "Die Anzahl der Websites im Internet stieg in den Jahren 2005 und 2006 dank der wachsenden Beliebtheit des Bloggens rapide an." + }, + { + "id": 14, + "question": "Was bedeutet das zweite w von www, das in Website-Adressen verwendet wird ?", + "propositions": [ + "Schlimmer", + "Web", + "Wide", + "Welt" + ], + "réponse": "Wide", + "anecdote": "Das Web ist nur eine der Internetanwendungen, die sich von E-Mail, Instant Messaging oder Dateifreigabe unterscheidet." + }, + { + "id": 15, + "question": "Wie viele Megabyte benötigen Sie, um ein Gigabyte zu erhalten ?", + "propositions": [ + "10.000", + "100", + "49", + "1.024" + ], + "réponse": "1.024", + "anecdote": "Binäre Präfixe werden häufig verwendet, wenn große Mengen von Bytes verarbeitet werden." + }, + { + "id": 16, + "question": "Wie hieß der vorherige Internetbrowser, der zu « Microsoft Edge » wurde ?", + "propositions": [ + "Internet Explorer", + "Safari", + "Chrome", + "Firefox" + ], + "réponse": "Internet Explorer", + "anecdote": "Version 11 des Browsers « Internet Explorer » ist vor dem schrittweisen Übergang zu « Microsoft Edge » weiterhin in Windows 10 vorhanden." + }, + { + "id": 17, + "question": "Was bedeutet die .com-Erweiterung im Internet, die in einer Webadresse enthalten ist ?", + "propositions": [ + "Kommunikation", + "Gedenken", + "Kommerziell", + "Gemeinschaft" + ], + "réponse": "Kommerziell", + "anecdote": "Die .com-Domain wurde ursprünglich vom US-Verteidigungsministerium verwaltet und wird jetzt von der Firma Verisign betrieben." + }, + { + "id": 18, + "question": "Mit welchem dieser Tools können Sie keine Webseiten anzeigen ?", + "propositions": [ + "Google Chrome", + "Internet Explorer", + "Mozilla Firefox", + "Acrobat Reader" + ], + "réponse": "Acrobat Reader", + "anecdote": "Adobe ändert regelmäßig den Namen der Produkte der Acrobat-Familie, indem das Sortiment unterteilt wird." + }, + { + "id": 19, + "question": "Wie heißt eine unerwünschte E-Mail aus dem Internet ?", + "propositions": [ + "Cookie", + "Scherz", + "Spam", + "Bug" + ], + "réponse": "Spam", + "anecdote": "Spam bezieht sich im Allgemeinen auf große Mengen, die zu Werbezwecken gesendet werden." + }, + { + "id": 20, + "question": "Welcher Informatiker kann fast jede Website hacken ?", + "propositions": [ + "Cracker", + "Fahrer", + "Surfer", + "Hacker" + ], + "réponse": "Hacker", + "anecdote": "Hacker werden nach ihren Zielen, ihrer Kompetenz und der Rechtmäßigkeit ihrer Handlungen in verschiedene Kategorien eingeteilt." + } + ], + "expert": [ + { + "id": 21, + "question": "Wie lassen sich alle Computer im Internet mehr oder weniger leicht erkennen ?", + "propositions": [ + "Bildschirm", + "IP-Adresse", + "Antivirus", + "Abgrenzung" + ], + "réponse": "IP-Adresse", + "anecdote": "Die IP-Adresse ist die Basis des Routing-Systems (Routing) von Nachrichten im Internet." + }, + { + "id": 22, + "question": "Welche Erweiterung, die Ihrem bevorzugten Internetbrowser hinzugefügt wurde, erweitert dessen Möglichkeiten ?", + "propositions": [ + "Spule", + "Byte", + "Plug-in", + "Backup" + ], + "réponse": "Plug-in", + "anecdote": "Einige Plug-Ins können auch als vollständige Software verwendet werden." + }, + { + "id": 23, + "question": "Wie nennen wir Hoaxes, die per E-Mail oder Internet übertragen werden ?", + "propositions": [ + "Virus", + "Cookie", + "Scherz", + "Bug" + ], + "réponse": "Scherz", + "anecdote": "Diese Hoaxes sollen glaubwürdig und echt erscheinen und manchmal einen böswilligen Zweck haben." + }, + { + "id": 24, + "question": "Immer mehr Websites speichern ein passierendes Cookie auf Ihrem Computer mit dem Namen...", + "propositions": [ + "Spam", + "Cookie", + "Modem", + "Cupcake" + ], + "réponse": "Cookie", + "anecdote": "Cookies bestehen seit über 20 Jahren und ermöglichen es Website-Entwicklern, Benutzerdaten zu speichern." + }, + { + "id": 25, + "question": "In welchem Jahr wurde die allererste E-Mail oder E-Mail gesendet ?", + "propositions": [ + "1971", + "1981", + "1991", + "1961" + ], + "réponse": "1971", + "anecdote": "Sie müssen über eine E-Mail-Adresse und einen E-Mail-Client verfügen, die den Zugriff auf Nachrichten über einen Browser ermöglichen." + }, + { + "id": 26, + "question": "Welcher illegale Computerbetrieb besteht darin, eine Website auf Ihren Computer zu kopieren ?", + "propositions": [ + "Kopieren", + "Backup", + "Aspiration", + "Gravur" + ], + "réponse": "Aspiration", + "anecdote": "Eine Website ist eine Sammlung von Seiten, auf die über Hyperlinks auf der Website selbst zugegriffen werden kann." + }, + { + "id": 27, + "question": "Mit welcher Abkürzung wird eine Website-Adresse bezeichnet ?", + "propositions": [ + "KBD", + "TCP", + "MP3", + "URL" + ], + "réponse": "URL", + "anecdote": "In Frankreich kann die URL laut dem Amtsblatt vom 16. März 1999 nach Netzadresse oder Universaladresse übersetzt werden." + }, + { + "id": 28, + "question": "Welchen Geburtstag hat das World Wide Web 2014 gefeiert ?", + "propositions": [ + "Seine 35 Jahre", + "Seine 25 Jahre", + "Seine 15 Jahre", + "Seine 45 Jahre" + ], + "réponse": "Seine 25 Jahre", + "anecdote": "Im September 2014 hat das Internet eine Milliarde Websites für fast drei Milliarden Internetnutzer überschritten." + }, + { + "id": 29, + "question": "Welches Protokoll ist für die Übertragung von Dateien im Internet vorgesehen ?", + "propositions": [ + "TCP / IP", + "HTTP", + "FTP", + "IPX / SPX" + ], + "réponse": "FTP", + "anecdote": "Dieser Kopiermechanismus wird häufig verwendet, um eine von Dritten gehostete Website zu füttern." + }, + { + "id": 30, + "question": "Welcher Begriff bezeichnet den Verhaltenskodex im Internet ?", + "propositions": [ + "Phishing", + "Phishing", + "Netiquette", + "Neustart" + ], + "réponse": "Netiquette", + "anecdote": "Netiquette vereint Versuche, einen bestimmten Gesellschaftsvertrag für das Internet zu formalisieren." + } + ] + }, + "es": { + "débutant": [ + { + "id": 1, + "question": "¿Cómo se llama a una persona que usa Internet para visitar sitios web ?", + "propositions": [ + "Usuario de Internet", + "Forager", + "Navegador", + "Webmaster" + ], + "réponse": "Usuario de Internet", + "anecdote": "Se considera que el porcentaje de usuarios de Internet en relación a la población es un índice de desarrollo económico." + }, + { + "id": 2, + "question": "En Internet, « Google », « Bing » y « Yahoo » son ejemplos de motores de búsqueda...", + "propositions": [ + "Navegación", + "Correo", + "Investigación", + "Copia de seguridad" + ], + "réponse": "Investigación", + "anecdote": "Algunos sitios ofrecen un motor como funcionalidad principal, por lo que el sitio en sí se denomina motor de búsqueda." + }, + { + "id": 3, + "question": "¿Qué símbolo tipográfico está siempre representado en las direcciones de correo electrónico ?", + "propositions": [ + "Al firmar", + "Asterisk", + "Cruz", + "Ampersand" + ], + "réponse": "Al firmar", + "anecdote": "Una opinión común sería que la palabra arobase proviene de la contracción del término tipográfico a round low." + }, + { + "id": 4, + "question": "¿Qué enciclopedia colaborativa es actualmente la más utilizada en Internet ?", + "propositions": [ + "Framasoft", + "Netalya", + "Wikipedia", + "Pandocreon" + ], + "réponse": "Wikipedia", + "anecdote": "En Wikipedia, cualquiera que pueda acceder al sitio puede modificar casi todos sus artículos, sujeto a moderación." + }, + { + "id": 5, + "question": "¿Qué son « Google Chrome », « Internet Explorer » y « Mozilla Firefox » ?", + "propositions": [ + "Enrutadores", + "Motores", + "Enciclopedias", + "Navegadores" + ], + "réponse": "Navegadores", + "anecdote": "El término navegador está inspirado en Netscape Navigator, el navegador insignia utilizado principalmente en 1995 y 1996." + }, + { + "id": 6, + "question": "¿Qué software es esencial para proteger su computadora en Internet ?", + "propositions": [ + "Antivirus", + "Mensajería", + "Navegador", + "Gato" + ], + "réponse": "Antivirus", + "anecdote": "Los programas antivirus pueden escanear el contenido de un disco duro y la RAM de la computadora." + }, + { + "id": 7, + "question": "¿Cómo se designa a un entusiasta de Internet y las nuevas tecnologías ?", + "propositions": [ + "No hay vida", + "Forager", + "Hacker", + "Geek" + ], + "réponse": "Geek", + "anecdote": "Debido a sus diversas pasiones y su profundo conocimiento, el friki a veces se percibe como demasiado cerebral." + }, + { + "id": 8, + "question": "¿Qué herramientas le permiten almacenar una dirección web para volver a ella ?", + "propositions": [ + "Favoritos", + "Pestañas", + "Direcciones", + "Extensiones" + ], + "réponse": "Favoritos", + "anecdote": "Los favoritos se encuentran principalmente en software de procesamiento de textos o para navegar por Internet." + }, + { + "id": 9, + "question": "¿Cómo se suele llamar un chat instantáneo en Internet ?", + "propositions": [ + "Cookie", + "Engaño", + "Spam", + "Gato" + ], + "réponse": "Gato", + "anecdote": "A diferencia del correo electrónico, este medio de comunicación permite un diálogo interactivo." + }, + { + "id": 10, + "question": "¿Qué conexión inalámbrica puede utilizar para navegar por Internet más fácilmente ?", + "propositions": [ + "RDSI", + "Fibra", + "Wi-Fi", + "ADSL" + ], + "réponse": "Wi-Fi", + "anecdote": "El alcance de Wi-Fi alcanza varias decenas de metros en interiores (generalmente entre veinte y cincuenta metros)." + } + ], + "confirmé": [ + { + "id": 11, + "question": "¿Qué caja está conectada a su computadora para conectarse a Internet ?", + "propositions": [ + "Módem", + "Servidor", + "Wi-Fi", + "Enrutador" + ], + "réponse": "Módem", + "anecdote": "Técnicamente, el dispositivo se utiliza para convertir datos digitales de la computadora en una señal modulada, llamada analógica." + }, + { + "id": 12, + "question": "¿Qué palabra francesa se usa ahora para traducir la palabra correo electrónico ?", + "propositions": [ + "Navegador", + "Paquete de software", + "Sobre", + "Correo electrónico" + ], + "réponse": "Correo electrónico", + "anecdote": "Las reglas para el uso adecuado del correo electrónico se describen en un documento de referencia denominado netiquette." + }, + { + "id": 13, + "question": "¿En qué medios están grabados los sitios web que visita desde su computadora ?", + "propositions": [ + "Wi-Fi", + "CD-ROM", + "Servidor", + "Módem" + ], + "réponse": "Servidor", + "anecdote": "El número de sitios en Internet creció rápidamente en 2005 y 2006 gracias a la creciente popularidad de los blogs." + }, + { + "id": 14, + "question": "¿Qué significa la segunda w de www utilizada en las direcciones de sitios web ?", + "propositions": [ + "Mundo", + "Ancho", + "Web", + "Peor" + ], + "réponse": "Ancho", + "anecdote": "La Web es solo una de las aplicaciones de Internet, distinta del correo electrónico, la mensajería instantánea o el intercambio de archivos." + }, + { + "id": 15, + "question": "¿Cuántos megabytes necesitas para obtener un gigabyte ?", + "propositions": [ + "1.024", + "100", + "10,000", + "49" + ], + "réponse": "1.024", + "anecdote": "Los prefijos binarios se utilizan a menudo cuando se trata de grandes cantidades de bytes." + }, + { + "id": 16, + "question": "¿Cuál era el nombre del navegador de Internet anterior que se convirtió en « Microsoft Edge » ?", + "propositions": [ + "Firefox", + "Safari", + "Chrome", + "Internet Explorer" + ], + "réponse": "Internet Explorer", + "anecdote": "La versión 11 del navegador « Internet Explorer » seguirá estando presente en Windows 10 antes de la transición gradual a « Microsoft Edge »." + }, + { + "id": 17, + "question": "En Internet, ¿qué significa la extensión .com que se puede encontrar en una dirección web ?", + "propositions": [ + "Conmemoración", + "Comunidad", + "Comunicación", + "Comercial" + ], + "réponse": "Comercial", + "anecdote": "Inicialmente administrado por el Departamento de Defensa de los Estados Unidos, el dominio .com ahora es operado por la empresa Verisign." + }, + { + "id": 18, + "question": "¿Cuál de estas herramientas no le permite ver páginas web ?", + "propositions": [ + "Internet Explorer", + "Google Chrome", + "Acrobat Reader", + "Mozilla Firefox" + ], + "réponse": "Acrobat Reader", + "anecdote": "Adobe cambia regularmente el nombre de los productos de la familia Acrobat y esto subdividiendo su gama." + }, + { + "id": 19, + "question": "¿Cómo se llama un correo electrónico no solicitado recibido de Internet ?", + "propositions": [ + "Spam", + "Bug", + "Engaño", + "Cookie" + ], + "réponse": "Spam", + "anecdote": "El spam generalmente se refiere a grandes cantidades enviadas con fines publicitarios." + }, + { + "id": 20, + "question": "¿Qué informático puede piratear casi cualquier sitio web ?", + "propositions": [ + "Hacker", + "Surfista", + "Conductor", + "Cracker" + ], + "réponse": "Hacker", + "anecdote": "Los piratas informáticos se clasifican en varias categorías según sus objetivos, su competencia y la legalidad de sus acciones." + } + ], + "expert": [ + { + "id": 21, + "question": "¿Cómo se detectan más o menos fácilmente todas las computadoras en Internet ?", + "propositions": [ + "Dirección IP", + "Pantalla", + "Antivirus", + "Demarcación" + ], + "réponse": "Dirección IP", + "anecdote": "La dirección IP es la base del sistema de enrutamiento (enrutamiento) de los mensajes en Internet." + }, + { + "id": 22, + "question": "¿Qué extensión agregada a su navegador de Internet favorito mejora sus posibilidades ?", + "propositions": [ + "Plug-in", + "Byte", + "Copia de seguridad", + "Carrete" + ], + "réponse": "Plug-in", + "anecdote": "Algunos complementos también se pueden utilizar como software completo, decimos que son independientes." + }, + { + "id": 23, + "question": "¿A qué llamamos engaños transmitidos por correo electrónico o Internet ?", + "propositions": [ + "Engaño", + "Virus", + "Bug", + "Cookie" + ], + "réponse": "Engaño", + "anecdote": "Diseñados para parecer creíbles y genuinos, estos engaños a veces pueden tener un propósito malicioso." + }, + { + "id": 24, + "question": "Cada vez más sitios guardan una cookie de paso en su computadora llamada...", + "propositions": [ + "Cookie", + "Módem", + "Spam", + "Magdalena" + ], + "réponse": "Cookie", + "anecdote": "Con más de 20 años de existencia, las cookies permiten a los desarrolladores de sitios web almacenar datos de usuarios." + }, + { + "id": 25, + "question": "¿En qué año se envió el primer correo electrónico o correo electrónico ?", + "propositions": [ + "1991", + "1961", + "1971", + "1981" + ], + "réponse": "1971", + "anecdote": "Debe tener una dirección de correo electrónico y un cliente de correo electrónico que permita el acceso a los mensajes a través de un navegador." + }, + { + "id": 26, + "question": "¿Qué operación informática ilegal consiste en copiar un sitio web en su computadora ?", + "propositions": [ + "Grabado", + "Copiar", + "Aspiración", + "Copia de seguridad" + ], + "réponse": "Aspiración", + "anecdote": "Un sitio web es una colección de páginas a las que se puede acceder siguiendo hipervínculos dentro del propio sitio." + }, + { + "id": 27, + "question": "¿Qué abreviatura se utiliza para indicar la dirección de un sitio web ?", + "propositions": [ + "TCP", + "MP3", + "URL", + "KBD" + ], + "réponse": "URL", + "anecdote": "En Francia, según el Diario Oficial del 16 de marzo de 1999, la URL se puede traducir por dirección reticular o dirección universal." + }, + { + "id": 28, + "question": "¿Qué cumpleaños celebró la World Wide Web en 2014 ?", + "propositions": [ + "Sus 45 años", + "Sus 15 años", + "Sus 35 años", + "Sus 25 años" + ], + "réponse": "Sus 25 años", + "anecdote": "En septiembre de 2014, Internet superó los mil millones de sitios en línea para casi tres mil millones de usuarios de Internet." + }, + { + "id": 29, + "question": "¿Qué protocolo está dedicado a la transmisión de archivos en Internet ?", + "propositions": [ + "FTP", + "IPX / SPX", + "TCP / IP", + "HTTP" + ], + "réponse": "FTP", + "anecdote": "Este mecanismo de copia se utiliza a menudo para alimentar un sitio web alojado por un tercero." + }, + { + "id": 30, + "question": "¿Qué término designa el código de conducta en Internet ?", + "propositions": [ + "Phishing", + "Phishing", + "Netiquette", + "Reiniciar" + ], + "réponse": "Netiquette", + "anecdote": "Netiquette reúne intentos de formalizar un determinado contrato social para Internet." + } + ] + }, + "it": { + "débutant": [ + { + "id": 1, + "question": "Come si chiama una persona che utilizza Internet per visitare siti Web ?", + "propositions": [ + "Utente Internet", + "Forager", + "Webmaster", + "Browser" + ], + "réponse": "Utente Internet", + "anecdote": "Si ritiene che la percentuale di utenti di Internet rispetto alla popolazione sia un indice di sviluppo economico." + }, + { + "id": 2, + "question": "Su Internet, « Google », « Bing » e « Yahoo » sono esempi di motori di ricerca...", + "propositions": [ + "Navigazione", + "Cerca", + "Backup", + "Posta" + ], + "réponse": "Cerca", + "anecdote": "Alcuni siti offrono un motore come funzionalità principale, quindi il sito stesso è chiamato motore di ricerca." + }, + { + "id": 3, + "question": "Quale simbolo tipografico è sempre rappresentato negli indirizzi e-mail ?", + "propositions": [ + "Al segno", + "Croce", + "Asterisco", + "E commerciale" + ], + "réponse": "Al segno", + "anecdote": "Un'opinione comune sarebbe che la parola arobase derivi dalla contrazione del termine tipografico a tondo basso." + }, + { + "id": 4, + "question": "Quale enciclopedia collaborativa è attualmente la più utilizzata su Internet ?", + "propositions": [ + "Wikipedia", + "Framasoft", + "Pandocreon", + "Netalya" + ], + "réponse": "Wikipedia", + "anecdote": "Su Wikipedia, chiunque possa accedere al sito può modificare la quasi totalità dei suoi articoli, previa moderazione." + }, + { + "id": 5, + "question": "Cosa sono « Google Chrome », « Internet Explorer » e « Mozilla Firefox » ?", + "propositions": [ + "Router", + "Motori", + "Enciclopedie", + "Browser" + ], + "réponse": "Browser", + "anecdote": "Il termine browser è ispirato a Netscape Navigator, il browser di punta utilizzato principalmente nel 1995 e nel 1996." + }, + { + "id": 6, + "question": "Quale software è essenziale per proteggere il tuo computer su Internet ?", + "propositions": [ + "Browser", + "Antivirus", + "Gatto", + "Messaggistica" + ], + "réponse": "Antivirus", + "anecdote": "I programmi antivirus possono eseguire la scansione del contenuto di un disco rigido e della RAM del computer." + }, + { + "id": 7, + "question": "Come designate un appassionato di Internet e le nuove tecnologie ?", + "propositions": [ + "Geek", + "Nessuna vita", + "Hacker", + "Forager" + ], + "réponse": "Geek", + "anecdote": "A causa delle sue varie passioni e della sua conoscenza approfondita, il geek a volte è percepito come troppo cerebrale." + }, + { + "id": 8, + "question": "Quali strumenti ti consentono di memorizzare un indirizzo web per ritornarvi ?", + "propositions": [ + "Indirizzi", + "Estensioni", + "Preferiti", + "Schede" + ], + "réponse": "Preferiti", + "anecdote": "I preferiti si trovano principalmente nei software di elaborazione testi o per la navigazione in Internet." + }, + { + "id": 9, + "question": "Come si chiama generalmente una chat istantanea su Internet ?", + "propositions": [ + "Hoax", + "Gatto", + "Spam", + "Cookie" + ], + "réponse": "Gatto", + "anecdote": "A differenza della posta elettronica, questo mezzo di comunicazione consente un dialogo interattivo." + }, + { + "id": 10, + "question": "Quale connessione wireless puoi utilizzare per navigare in Internet più facilmente ?", + "propositions": [ + "ADSL", + "Fibra", + "Wi-Fi", + "ISDN" + ], + "réponse": "Wi-Fi", + "anecdote": "La portata del Wi-Fi raggiunge diverse decine di metri al chiuso (generalmente tra venti e cinquanta metri)." + } + ], + "confirmé": [ + { + "id": 11, + "question": "Quale box è connesso al tuo computer per connettersi a Internet ?", + "propositions": [ + "Modem", + "Router", + "Wi-Fi", + "Server" + ], + "réponse": "Modem", + "anecdote": "Tecnicamente, il dispositivo viene utilizzato per convertire i dati digitali dal computer in un segnale modulato, chiamato analogico." + }, + { + "id": 12, + "question": "Quale parola francese viene ora utilizzata per tradurre la parola e-mail ?", + "propositions": [ + "Busta", + "Browser", + "Pacchetto software", + "E-mail" + ], + "réponse": "E-mail", + "anecdote": "Le regole per il corretto utilizzo della posta elettronica sono descritte in un documento di riferimento chiamato netiquette." + }, + { + "id": 13, + "question": "Su quali supporti vengono registrati i siti Web visitati dal computer ?", + "propositions": [ + "CD-ROM", + "Modem", + "Server", + "Wi-Fi" + ], + "réponse": "Server", + "anecdote": "Il numero di siti su Internet è cresciuto rapidamente nel 2005 e nel 2006 grazie alla crescente popolarità dei blog." + }, + { + "id": 14, + "question": "Cosa significa la seconda w di www usata negli indirizzi dei siti web ?", + "propositions": [ + "Largo", + "Web", + "Peggio ancora", + "Mondo" + ], + "réponse": "Largo", + "anecdote": "Il Web è solo una delle applicazioni Internet, distinte da e-mail, messaggistica istantanea o condivisione di file." + }, + { + "id": 15, + "question": "Di quanti megabyte hai bisogno per ottenere un gigabyte ?", + "propositions": [ + "49", + "1.024", + "10.000", + "100" + ], + "réponse": "1.024", + "anecdote": "I prefissi binari vengono spesso utilizzati quando si tratta di grandi quantità di byte." + }, + { + "id": 16, + "question": "Qual era il nome del browser Internet precedente che divenne « Microsoft Edge » ?", + "propositions": [ + "Internet Explorer", + "Safari", + "Firefox", + "Chrome" + ], + "réponse": "Internet Explorer", + "anecdote": "La versione 11 del browser « Internet Explorer » sarà ancora presente in Windows 10 prima della transizione graduale a « Microsoft Edge »." + }, + { + "id": 17, + "question": "Su Internet, cosa significa l'estensione .com che si trova in un indirizzo web ?", + "propositions": [ + "Commerciale", + "Commemorazione", + "Comunicazione", + "Comunità" + ], + "réponse": "Commerciale", + "anecdote": "Gestito inizialmente dal Dipartimento della Difesa degli Stati Uniti, il dominio .com è ora gestito dalla società Verisign." + }, + { + "id": 18, + "question": "Quale di questi strumenti non ti consente di visualizzare le pagine web ?", + "propositions": [ + "Acrobat Reader", + "Mozilla Firefox", + "Internet Explorer", + "Google Chrome" + ], + "réponse": "Acrobat Reader", + "anecdote": "Adobe cambia regolarmente il nome dei prodotti della famiglia Acrobat e questo suddividendone la gamma." + }, + { + "id": 19, + "question": "Come viene chiamata un'e-mail non richiesta ricevuta da Internet ?", + "propositions": [ + "Bug", + "Cookie", + "Hoax", + "Spam" + ], + "réponse": "Spam", + "anecdote": "Lo spam generalmente si riferisce a grandi quantità inviate per scopi pubblicitari." + }, + { + "id": 20, + "question": "Quale scienziato informatico può hackerare quasi tutti i siti web ?", + "propositions": [ + "Hacker", + "Cracker", + "Driver", + "Surfer" + ], + "réponse": "Hacker", + "anecdote": "Gli hacker sono classificati in diverse categorie in base ai loro obiettivi, alla loro competenza e alla legalità delle loro azioni." + } + ], + "expert": [ + { + "id": 21, + "question": "Come vengono individuati più o meno facilmente tutti i computer su Internet ?", + "propositions": [ + "Indirizzo IP", + "Antivirus", + "Demarcazione", + "Schermo" + ], + "réponse": "Indirizzo IP", + "anecdote": "L'indirizzo IP è la base del sistema di routing (routing) dei messaggi su Internet." + }, + { + "id": 22, + "question": "Quale estensione aggiunta al tuo browser Internet preferito ne migliora le possibilità ?", + "propositions": [ + "Bobina", + "Byte", + "Backup", + "Plug-in" + ], + "réponse": "Plug-in", + "anecdote": "Alcuni plug-in possono essere utilizzati anche come software completo, diciamo che sono autonomi." + }, + { + "id": 23, + "question": "Cosa chiamiamo bufale trasmesse via e-mail o Internet ?", + "propositions": [ + "Virus", + "Cookie", + "Hoax", + "Bug" + ], + "réponse": "Hoax", + "anecdote": "Progettate per apparire credibili e genuine, queste bufale a volte possono avere uno scopo dannoso." + }, + { + "id": 24, + "question": "Sempre più siti stanno salvando un cookie di passaggio sul tuo computer chiamato...", + "propositions": [ + "Cookie", + "Spam", + "Cupcake", + "Modem" + ], + "réponse": "Cookie", + "anecdote": "I cookie esistono da oltre 20 anni, consentono agli sviluppatori di siti web di memorizzare i dati degli utenti." + }, + { + "id": 25, + "question": "In che anno è stata inviata la prima e-mail o e-mail ?", + "propositions": [ + "1961", + "1971", + "1991", + "1981" + ], + "réponse": "1971", + "anecdote": "È necessario disporre di un indirizzo di posta elettronica e di un client di posta elettronica che consenta l'accesso ai messaggi tramite un browser." + }, + { + "id": 26, + "question": "Quale operazione illegale del computer consiste nel copiare un sito Web sul tuo computer ?", + "propositions": [ + "Backup", + "Aspirazione", + "Incisione", + "Copia" + ], + "réponse": "Aspirazione", + "anecdote": "Un sito Web è una raccolta di pagine a cui è possibile accedere seguendo i collegamenti ipertestuali all'interno del sito stesso." + }, + { + "id": 27, + "question": "Quale abbreviazione viene utilizzata per indicare l'indirizzo di un sito Web ?", + "propositions": [ + "URL", + "KBD", + "TCP", + "MP3" + ], + "réponse": "URL", + "anecdote": "In Francia, secondo la Gazzetta ufficiale del 16 marzo 1999, l'URL può essere tradotto con indirizzo reticolare o indirizzo universale." + }, + { + "id": 28, + "question": "Quale compleanno ha festeggiato il World Wide Web nel 2014 ?", + "propositions": [ + "I suoi 45 anni", + "I suoi 15 anni", + "I suoi 35 anni", + "I suoi 25 anni" + ], + "réponse": "I suoi 25 anni", + "anecdote": "Nel settembre 2014, Internet ha superato il miliardo di siti online per quasi tre miliardi di utenti Internet." + }, + { + "id": 29, + "question": "Quale protocollo è dedicato alla trasmissione di file su Internet ?", + "propositions": [ + "HTTP", + "FTP", + "IPX / SPX", + "TCP / IP" + ], + "réponse": "FTP", + "anecdote": "Questo meccanismo di copia viene spesso utilizzato per alimentare un sito Web ospitato da una terza parte." + }, + { + "id": 30, + "question": "Quale termine designa il codice di condotta su Internet ?", + "propositions": [ + "Phishing", + "Riavvia", + "Netiquette", + "Phishing" + ], + "réponse": "Netiquette", + "anecdote": "La netiquette riunisce i tentativi di formalizzare un certo contratto sociale per Internet." + } + ] + }, + "nl": { + "débutant": [ + { + "id": 1, + "question": "Hoe noem je iemand die internet gebruikt om websites te bezoeken ?", + "propositions": [ + "Internetgebruiker", + "Browser", + "Forager", + "Webmaster" + ], + "réponse": "Internetgebruiker", + "anecdote": "Aangenomen wordt dat het percentage internetgebruikers in verhouding tot de bevolking een index is van economische ontwikkeling." + }, + { + "id": 2, + "question": "Op internet zijn « Google », « Bing » en « Yahoo » voorbeelden van zoekmachines...", + "propositions": [ + "E-mail", + "Back-up", + "Zoeken", + "Navigatie" + ], + "réponse": "Zoeken", + "anecdote": "Sommige sites bieden een engine als de belangrijkste functionaliteit, dus de site zelf wordt de zoekmachine genoemd." + }, + { + "id": 3, + "question": "Welk typografisch symbool wordt altijd weergegeven in e-mailadressen ?", + "propositions": [ + "Apenstaartje", + "Asterisk", + "Kruis", + "Ampersand" + ], + "réponse": "Apenstaartje", + "anecdote": "Een algemene mening zou zijn dat het woord arobase komt van de samentrekking van de typografische term een rond laag." + }, + { + "id": 4, + "question": "Welke samenwerkende encyclopedie wordt momenteel het meest gebruikt op internet ?", + "propositions": [ + "Framasoft", + "Netalya", + "Pandocreon", + "Wikipedia" + ], + "réponse": "Wikipedia", + "anecdote": "Op Wikipedia kan iedereen die toegang heeft tot de site, bijna al zijn artikelen wijzigen, onder voorbehoud van moderatie." + }, + { + "id": 5, + "question": "Wat zijn « Google Chrome », « Internet Explorer » en « Mozilla Firefox » ?", + "propositions": [ + "Routers", + "Browsers", + "Encyclopedieën", + "Motoren" + ], + "réponse": "Browsers", + "anecdote": "De term browser is geïnspireerd op Netscape Navigator, de vlaggenschipbrowser die voornamelijk in 1995 en 1996 werd gebruikt." + }, + { + "id": 6, + "question": "Welke software is essentieel om uw computer op internet te beschermen ?", + "propositions": [ + "Berichten", + "Antivirus", + "Browser", + "Kat" + ], + "réponse": "Antivirus", + "anecdote": "Antivirusprogramma's kunnen zowel de inhoud van een harde schijf als computer-RAM scannen." + }, + { + "id": 7, + "question": "Hoe duid je een internetliefhebber en nieuwe technologieën aan ?", + "propositions": [ + "Hacker", + "Geek", + "Geen leven", + "Forager" + ], + "réponse": "Geek", + "anecdote": "Vanwege zijn verschillende passies en zijn diepgaande kennis, wordt de nerd soms als te cerebraal ervaren." + }, + { + "id": 8, + "question": "Met welke tools kun je een webadres opslaan om ernaar terug te keren ?", + "propositions": [ + "Tabbladen", + "Extensies", + "Favorieten", + "Adressen" + ], + "réponse": "Favorieten", + "anecdote": "De favorieten zijn vooral te vinden in tekstverwerkingssoftware of voor surfen op internet." + }, + { + "id": 9, + "question": "Hoe wordt een instantchat op internet in het algemeen genoemd ?", + "propositions": [ + "Koekje", + "Hoax", + "Spam", + "Kat" + ], + "réponse": "Kat", + "anecdote": "In tegenstelling tot elektronische post maakt dit communicatiemiddel een interactieve dialoog mogelijk." + }, + { + "id": 10, + "question": "Welke draadloze verbinding kunt u gebruiken om gemakkelijker op internet te surfen ?", + "propositions": [ + "ADSL", + "Vezel", + "ISDN", + "Wi-Fi" + ], + "réponse": "Wi-Fi", + "anecdote": "Het bereik van wifi bereikt binnenshuis enkele tientallen meters (doorgaans tussen de twintig en vijftig meter)." + } + ], + "confirmé": [ + { + "id": 11, + "question": "Welke box is op uw computer aangesloten om verbinding te maken met internet ?", + "propositions": [ + "Modem", + "Server", + "Router", + "Wi-Fi" + ], + "réponse": "Modem", + "anecdote": "Technisch gezien wordt het apparaat gebruikt om digitale gegevens van de computer om te zetten in een gemoduleerd signaal, analoog genaamd." + }, + { + "id": 12, + "question": "Welk Frans woord wordt nu gebruikt om het woord e-mail te vertalen ?", + "propositions": [ + "E-mail", + "Softwarepakket", + "Envelop", + "Browser" + ], + "réponse": "E-mail", + "anecdote": "De regels voor het juiste gebruik van elektronische post worden beschreven in een referentiedocument genaamd netiquette." + }, + { + "id": 13, + "question": "Op welke media zijn de websites die u vanaf uw computer bezoekt, opgenomen ?", + "propositions": [ + "Wi-Fi", + "Modem", + "Server", + "Cd-rom" + ], + "réponse": "Server", + "anecdote": "Het aantal sites op internet groeide in 2005 en 2006 snel dankzij de groeiende populariteit van bloggen." + }, + { + "id": 14, + "question": "Wat betekent de tweede w van www die in websiteadressen wordt gebruikt ?", + "propositions": [ + "Erger nog", + "Wereld", + "Breed", + "Web" + ], + "réponse": "Breed", + "anecdote": "Het internet is slechts een van de internettoepassingen, anders dan e-mail, instant messaging of het delen van bestanden." + }, + { + "id": 15, + "question": "Hoeveel megabytes heb je nodig om een gigabyte te krijgen ?", + "propositions": [ + "49", + "100", + "1,024", + "10.000" + ], + "réponse": "1,024", + "anecdote": "Binaire prefixen worden vaak gebruikt bij het omgaan met grote hoeveelheden bytes." + }, + { + "id": 16, + "question": "Wat was de naam van de vorige internetbrowser die « Microsoft Edge » werd ?", + "propositions": [ + "Internet Explorer", + "Firefox", + "Safari", + "Chrome" + ], + "réponse": "Internet Explorer", + "anecdote": "Versie 11 van de « Internet Explorer » -browser zal nog steeds aanwezig zijn in Windows 10 vóór de geleidelijke overgang naar « Microsoft Edge »." + }, + { + "id": 17, + "question": "Wat betekent de extensie .com op internet die u in een webadres kunt vinden ?", + "propositions": [ + "Gemeenschap", + "Herdenking", + "Communicatie", + "Commercieel" + ], + "réponse": "Commercieel", + "anecdote": "Oorspronkelijk beheerd door het Amerikaanse ministerie van Defensie, wordt het .com-domein nu beheerd door het bedrijf Verisign." + }, + { + "id": 18, + "question": "Met welke van deze tools kunt u webpagina's niet bekijken ?", + "propositions": [ + "Acrobat Reader", + "Mozilla Firefox", + "Google Chrome", + "Internet Explorer" + ], + "réponse": "Acrobat Reader", + "anecdote": "Adobe verandert regelmatig de naam van de producten van de Acrobat-familie en dit door het assortiment onder te verdelen." + }, + { + "id": 19, + "question": "Hoe heet een ongevraagde e-mail die van internet wordt ontvangen ?", + "propositions": [ + "Koekje", + "Hoax", + "Bug", + "Spam" + ], + "réponse": "Spam", + "anecdote": "Spam verwijst doorgaans naar grote hoeveelheden die voor reclamedoeleinden worden verzonden." + }, + { + "id": 20, + "question": "Welke computerwetenschapper kan bijna elke website hacken ?", + "propositions": [ + "Bestuurder", + "Surfer", + "Cracker", + "Hacker" + ], + "réponse": "Hacker", + "anecdote": "Hackers worden ingedeeld in verschillende categorieën op basis van hun doelstellingen, hun competentie en de wettigheid van hun acties." + } + ], + "expert": [ + { + "id": 21, + "question": "Hoe worden alle computers op internet min of meer gemakkelijk opgemerkt ?", + "propositions": [ + "Scherm", + "IP-adres", + "Afbakening", + "Antivirus" + ], + "réponse": "IP-adres", + "anecdote": "Het IP-adres vormt de basis van het routeringssysteem (routering) van berichten op internet." + }, + { + "id": 22, + "question": "Welke extensie toegevoegd aan uw favoriete internetbrowser vergroot de mogelijkheden ervan ?", + "propositions": [ + "Plug-in", + "Byte", + "Back-up", + "Spoel" + ], + "réponse": "Plug-in", + "anecdote": "Sommige plug-ins kunnen ook als volledige software worden gebruikt, we zeggen dat ze op zichzelf staan." + }, + { + "id": 23, + "question": "Hoe noemen we hoaxes die via e-mail of internet worden verzonden ?", + "propositions": [ + "Bug", + "Koekje", + "Hoax", + "Virus" + ], + "réponse": "Hoax", + "anecdote": "Deze hoaxes zijn ontworpen om geloofwaardig en oprecht te lijken en kunnen soms een kwaadaardig doel hebben." + }, + { + "id": 24, + "question": "Steeds meer sites bewaren een passerende cookie op uw computer met de naam...", + "propositions": [ + "Koekje", + "Spam", + "Cupcake", + "Modem" + ], + "réponse": "Koekje", + "anecdote": "Cookies bestaan al meer dan 20 jaar en stellen website-ontwikkelaars in staat gebruikersgegevens op te slaan." + }, + { + "id": 25, + "question": "In welk jaar is de allereerste e-mail of e-mail verzonden ?", + "propositions": [ + "1971", + "1981", + "1991", + "1961" + ], + "réponse": "1971", + "anecdote": "U moet een e-mailadres hebben en een e-mailclient die toegang geeft tot berichten via een browser." + }, + { + "id": 26, + "question": "Welke illegale computerbewerking bestaat uit het kopiëren van een website naar uw computer ?", + "propositions": [ + "Kopiëren", + "Graveren", + "Back-up", + "Aspiratie" + ], + "réponse": "Aspiratie", + "anecdote": "Een website is een verzameling pagina's die toegankelijk zijn via hyperlinks op de site zelf." + }, + { + "id": 27, + "question": "Welke afkorting wordt gebruikt om een websiteadres aan te duiden ?", + "propositions": [ + "MP3", + "KBD", + "TCP", + "URL" + ], + "réponse": "URL", + "anecdote": "In Frankrijk kan de URL volgens het Publicatieblad van 16 maart 1999 worden vertaald met een reticulair adres of een universeel adres." + }, + { + "id": 28, + "question": "Welke verjaardag vierde het World Wide Web in 2014 ?", + "propositions": [ + "Zijn 25 jaar", + "Zijn 35 jaar", + "Zijn 15 jaar", + "Zijn 45 jaar" + ], + "réponse": "Zijn 25 jaar", + "anecdote": "In september 2014 telde internet meer dan een miljard sites online voor bijna drie miljard internetgebruikers." + }, + { + "id": 29, + "question": "Welk protocol is bedoeld voor het verzenden van bestanden op internet ?", + "propositions": [ + "HTTP", + "FTP", + "TCP / IP", + "IPX / SPX" + ], + "réponse": "FTP", + "anecdote": "Dit kopieermechanisme wordt vaak gebruikt om een \u200b\u200bwebsite te voeden die door een derde partij wordt gehost." + }, + { + "id": 30, + "question": "Welke term duidt de gedragscode op internet aan ?", + "propositions": [ + "Herstart", + "Phishing", + "Netiquette", + "Phishing" + ], + "réponse": "Netiquette", + "anecdote": "Netiquette brengt pogingen samen om een \u200b\u200bbepaald sociaal contract voor internet te formaliseren." + } + ] + } + } +} \ No newline at end of file