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

0001 /* GCompris - Data.qml
0002  *
0003  * SPDX-FileCopyrightText: 2020 Deepak Kumar <deepakdk2431@gmail.com>
0004  *
0005  * Authors:
0006  *   Deepak Kumar <deepakdk2431@gmail.com>
0007  *
0008  *   SPDX-License-Identifier: GPL-3.0-or-later
0009  */
0010 
0011 import GCompris 1.0
0012 
0013 Data {
0014     objective: qsTr("Practice algebraic calculations with two operators.")
0015     difficulty: 4
0016 
0017     data: [
0018         {
0019             "dataItems": [
0020                 [
0021                     [['+','-'],[  [[1,2,4,5],5] , [[1,2,4,6],5] ,[[3,4,5,7],2] ,[[8,7,9,7],6] ,[[9,4,6,7],7] ,[[3,4,5,7],6] ,[[6,4,5,7],5]  ]],
0022                     [['+','*'],[  [[1,2,4,6],12] , [[1,2,4,7],9] ,[[3,4,5,8],35] ,[[2,7,9,3],23] ,[[1,4,6,5],30] ,[[2,4,5,6],13] ,[[3,6,5,3],23]  ]],
0023                     [['+','/'],[  [[1,2,4,2],6] , [[1,2,4,1],6] ,[[3,6,5,5],7] ,[[9,3,3,4],3] ,[[1,4,2,2],2] ,[[5,10,15,7],13] ]],
0024                     [['-','*'],[  [[1,2,4,3],4] , [[1,2,4,9],2] ,[[3,4,5,1],8] ,[[8,7,9,3],9] ,[[9,4,6,2],30]  ]],
0025                     [['-','/'],[  [[1,2,4,7],2] , [[1,2,5,2],3] ,[[1,10,5,3],1] ,[[1,3,9,5],2] ,[[12,2,5,1],1]  ]],
0026                     [['*','/'],[  [[1,2,4,3],8] , [[1,2,4,2],2] ,[[3,3,6,2],6] ,[[15,5,4,6],18] ,[[14,7,3,0],6]  ]]
0027                ],
0028          ],
0029             "levelSchema": [4,4,3,3,4,3],
0030             "defaultOperators": [['+','-'],['+','*'],['+','/'],['-','*'],['-','/'],['*','/']]
0031         }
0032 
0033     ]
0034 }