Warning, /education/gcompris/src/activities/tens_complement_use/resource/1/Data.qml is written in an unsupported language. File is not indexed.

0001 /* GCompris - Data.qml
0002  *
0003  * SPDX-FileCopyrightText: 2022 Samarth Raj <mailforsamarth@gmail.com>
0004  * SPDX-FileCopyrightText: 2022 Johnny Jazeix <jazeix@gmail.com>
0005  * SPDX-License-Identifier: GPL-3.0-or-later
0006  */
0007 import GCompris 1.0
0008 
0009 /**
0010 Fixed dataset should have values like:
0011 data: [
0012     {
0013         "values": [
0014             {
0015                 numberValue: [4, 3, 6, 7, 2, 3],
0016                 questions: [ 
0017                 {
0018                     questionValue: [7, 9, 16],
0019                     splitValue: [7, "?", "?", 16]
0020                 },
0021                 {
0022                     questionValue: [6, 7, 13],
0023                     splitValue: [6, "?", "?", 13]
0024                 }
0025                 ]
0026             },
0027             {
0028                 numberValue: [5, 2, 4, 6, 1, 8],
0029                 questions: [ 
0030                 {
0031                     questionValue: [4, 8, 12],
0032                     splitValue: [4, "?", "?", 12]
0033                 },
0034                 {
0035                     questionValue: [5, 6, 11],
0036                     splitValue: [5, "?", "?", 11]
0037                 }
0038                 ]
0039             }
0040         ]
0041 */
0042 Data {
0043     objective: qsTr("Result between 11 and 19.")
0044     difficulty: 4
0045     data: [
0046         {
0047             randomValues: true,
0048             numberOfSublevels: 5,
0049             numberOfEquations: 2,
0050             numberOfNumbersInLeftContainer: 6,
0051             minResult: 11,
0052             maxResult: 19
0053         },
0054         {
0055             randomValues: true,
0056             numberOfSublevels: 5,
0057             numberOfEquations: 2,
0058             numberOfNumbersInLeftContainer: 6,
0059             minResult: 11,
0060             maxResult: 19
0061         }
0062     ]
0063 }