Warning, /education/gcompris/src/activities/guesscount/resource/3/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 three operators.") 0015 difficulty: 5 0016 0017 data: [ 0018 { 0019 "dataItems": [ [ 0020 [['+','-','*'],[ [[1,4,3,5],10] , [[1,3,3,5],5] ,[[5,4,3,5],30] ,[[1,2,6,5],25] ]], 0021 [['-','*','/'],[ [[1,4,3,3],3] ,[[3,4,3,3],1] ,[[7,4,2,1],6] ,[[8,4,2,4],2] ,[[9,4,5,3],3] ]], 0022 [['*','/','+'],[ [[1,8,4,3],5] , [[10,8,9,3],5] ,[[9,1,3,3],6] ,[[5,8,4,3],13] ]], 0023 [['/','+','-'],[ [[2,8,2,3],3] , [[10,2,9,3],11] ,[[9,3,3,2],4] ,[[5,5,4,3],6] ]] 0024 ] ], 0025 "levelSchema": [3,3,3,3], 0026 "defaultOperators": [['+','-','*'],['-','*','/'],['*','/','+'],['/','+','-']] 0027 } 0028 0029 ] 0030 }