Home > JMETER, JSON > JMeter – Working with JSON – Extract JSON response

JMeter – Working with JSON – Extract JSON response


Ok,

like i promised in a previous post of mine, talking about working with JSON and JMeter, i will discuss using the JSON response for extracting specific values, to be further used in the test script.

Now, there is no rocket science in this. Sending an HTTP Request with a JSON string as payload, will return a JSON string also, built on the same convention as already discussed. Now, the only thing you need is to extract the information you need from this response. I consider the Regular Expression Extractor to be the best  option (actually i haven’t even given any other try :) )

So, let us suppose you get the following JSON formatted response:

{ “books” { “name”:”Starwars”,”pages”:500},{“name”:”Lord of the rings”,”pages”:1500}}

and you need to extract the book names, and use them one by one in a For Each Controller.

The For Each Controller works perfectly with the regular expression extractor, in a sense that it will loop through the values that the regular expression extractor returned.

Let’s start with the regular expression extractor.

Select the HTTP Request that you just used for sending the request, with the JSON payload. Add a new regular expression extractor (Post Processors) As you are interested in the book names, you will search for the following regular expression:

“name”:”(.+?)”

The special characters above are:

( and ) – these enclose the portion of the match string to be returned ; . – match any character. + – one or more times. ? – don’t be greedy, i.e. stop when first match succeeds

Note: without the ?, the .+ would continue past the first ” until it found the last possible ” – probably not what was intended.

Use -1 as match number for instructing JMETER to store all results in an array, in order to be further used with a ForEachController

Use $1$ as template, as you are extracting only one item from the response ( if you were interested in extracting also the pages, you would use $1$$2$, and also change the regular expression to “name”:”(.+?),”pages”:(.+?) )

Your jmeter  regular expression extractor should look something like this:

JMeter Regular Expression Extractor

JMeter Regular Expression Extractor

Now, you would use the BOOKS variable as input in the for each controller.

JMeter Regular expression in for each controller

JMeter Regular expression in for each controller

Bookname will now be your output variable, that you can further on use in the http requests contained in your for each controller, as ${BOOKNAME}

JMeter Http Request

JMeter Http Request

Addressing a specific element in the results array can be done also, but you would have to give up on your for each controller (of course), and modify your regular expression. JMeter documentation has pretty good tips on doing that.

Basically, extracting specific values from  a JSON string is nothing else but extracting values from any server response, be it xml, plain html, json ,etc.. You just need to dig in a little on the regular expression subject. That’s pretty much it. Hope this helps.

Cheers,

Alex

About these ads
Categories: JMETER, JSON Tags: , ,
  1. juan
    September 28, 2009 at 4:47 pm | #1

    thx a lot alex, i was struggling with this issue a lot of time. Good job

  2. Alex Ersenie
    September 30, 2009 at 4:59 pm | #2

    glad to be of help.

  3. Babak
    December 15, 2009 at 12:30 pm | #3

    Thanks for your useful post. Actually I want to do the same as you with JMeter but have some problems with that. I want to extract the value of item_id in the following response as use it as variable for the next request:

    {“programs”: [
    {
    "item_id": "49990415200912151320",
    "channel_id": "TRT 1",
    "title": "Hava Durumu",
    "language": "tr-TR",
    "description_short": "Trkiye ile dnyann.",
    "start_time": "2009-12-15T13:20:00+02:00",
    "end_time": "2009-12-15T13:30:00+02:00",
    "credits": {"producer": [{"name": "TRT"}]},
    “genre”: [{"name": "Hava Durumu"}]
    },
    {
    “item_id”: “88101815200912152350″,
    “channel_id”: “TRT 1″,
    “title”: “Naslsnz?”,
    “language”: “tr-TR”,
    “description_short”: “Tayfun Talipolunun.”,
    “start_time”: “2009-12-15T23:50:00+02:00″,
    “end_time”: “2009-12-16T00:40:00+02:00″,
    “credits”: {“director”: [{"name": "Ayhan Arabac"}]},
    “genre”: [{"name": "Aktalite Program"}]
    }
    ]}

    But can’t find the right regex to extract the number of item_id. Actually its the same as your JSON text but it doesn’t work with your supposed regex “item_id”:”(.+?)”

    Do you have any idea?

    Thanks in advance!
    Babak

  4. Alex Ersenie
    December 15, 2009 at 1:37 pm | #4

    Hi Babak,
    are you trying to use the values in a foreach controller?
    How about doing a little bit of debugging, and instead of “-1″ for the match number, setting “1″ ? This should return the first occurence from the array of values. You can then test to see if the regex has worked at all, using your output variable, and see if the problem is somewhere else.

    I double checked it once again in my script. I am also extracting a unique id, and it looks like this:

    Reference name : MYSESSION
    Regular Expression : “sessionID”:”(.+?)”
    Template: $1
    Match no: 5 ( i am interested specifically on this id)
    Default Value: REGEX_FAILED (you should see this as output value if the regex above failed)

    Let me know if it worked for you. Otherwise i can double check your testplan.
    Rgds,
    Alex

  5. Yudi
    December 22, 2009 at 8:31 am | #5

    First of all great Post!

    I think I am a step further but I have been struggling with a JSON with some properties.

    For example, I have JSON of the followings.

    { “books” { “name”:”Starwars”,”rating”:”good”,”pages”:500},{“name”:”Lord of the rings”,”rating”:”very good”, ”pages”:1500}{ “name”:”Starwars 2″,”rating”:”superb”, “pages”:500},{ “name”:”Lord of the rings 2″,”rating”:”excellent”, “pages”:1500}}

    I am trying to get names of the book with 500 pages, i would think that my regex looks like:

    “name”:(.*).*”pages”:500

    but ended up matching these strings:

    “name”:”Starwars”,”rating”:”good”,”pages”:500},{“name”:”Lord of the rings”,”rating”:”very good”, ”pages”:1500}{ “name”:”Starwars 2″,”rating”:”superb”, “pages”:500

    was hoping that I could get these:
    “name”:”Starwars”
    “name”:”Starwars 2”

    So I can pass them in my for each controller.

    However, seems like I couldn’t get a lazy match that would match the shortest “name”.

    Let me know if you have any idea how to do that.

    Thanks! :>

  6. Alex Ersenie
    December 23, 2009 at 12:43 am | #6

    hi yudi, i will answer your post as soon as i can. kind of accesing my net from an ipod right now. sorry about that.
    i will come back asap
    cheers,
    alex

  7. Arvid
    February 2, 2010 at 2:02 pm | #7

    Hi,
    why bother with Regexp PostProcessor for JSON result parsing?

    It is much easier to use a BSF PostProcessor with javascript to extract what you need.

    {code}
    var o = eval(“(” + prev.getResponseDataAsString()+ “)”);
    var bookNames = new Array(30);

    for(var i=0; i<o.books.length; i++) {
    bookNames[i] = o.books[i].name;
    }
    vars.put("BOOOKNAME", bookNames);

    {code}

    brg
    /arvid

  8. Suresh
    August 11, 2010 at 12:06 pm | #8

    Hi Alex,

    I am trying to use regular extractor to extract the room id from a response message.
    The response typically looks like this-
    {“result”:{“stayEndDate”:”2010\/10\/06″,”extraDetailsList”:[{"hidden":null,"parameters":[],”name”:”Room Cancellation Insurance”,”displayOrder”:1,”extraOptions”:[{"value":"0","name":"No Room Cancellation Insurance","id":1,"displayOrder":1,"description":null,"preSelected":null},{"value":"1.5","name":"Room Cancellation Insurance ","id":2,"displayOrder":2,"description":null,"preSelected":true}],”helpURL”:null,”parameterised”:null,”altDescription”:null,”rooms”:[{"name":null,"id":30001955}],”id”:1,”subDescription”:null,”description”:”Cost: \u00a31.50 per stay\r\nPrice includes Insurance Premium Tax at current rate.\r\nNote: Room Cancellation Insurance is available to UK Residents only.”,”userInputRequired”:null,”showWithRoom”:null},{“hidden”:null,”parameters”:[],”name”:”Breakfast Bag”,”displayOrder”:2,”extraOptions”:[{"value":"0","name":"No Breakfast Bag","id":14,"displayOrder":1,"description":null,"preSelected":true},{"value":"4.05","name":"Breakfast Bag","id":15,"displayOrder":2,"description":null,"preSelected":null}],”helpURL”:null,”parameterised”:null,”altDescription”:null,”rooms”:[{"name":null,"id":30001955}],”id”:6,”subDescription”:null,”description”:”Fancy a delicious breakfast to go? Our handy Breakfast Bag includes a cereal pot and milk, a muffin, croissant, jam portion and a fruit juice – which counts toward 1 of your 5 a day!”,”userInputRequired”:null,”showWithRoom”:null},{“hidden”:null,”parameters”:[],”name”:”WiFi”,”displayOrder”:6,”extraOptions”:[{"value":"0","name":"No Wi-Fi","id":3,"displayOrder":1,"description":null,"preSelected":true},{"value":"5","name":"1: Wi-Fi Access 60 minutes","id":4,"displayOrder":2,"description":null,"preSelected":null},{"value":"10","name":"2: Wi-Fi Access 24 hours","id":5,"displayOrder":3,"description":null,"preSelected":null},{"value":"20","name":"3: Wi-Fi Access 1 week","id":6,"displayOrder":4,"description":null,"preSelected":null},{"value":"30","name":"4: Wi-Fi Access 1 month","id":7,"displayOrder":5,"description":null,"preSelected":null}],”helpURL”:null,”parameterised”:null,”altDescription”:null,”rooms”:[{"name":null,"id":30001955}],”id”:2,”subDescription”:null,”description”:”To many people, the internet is now as essential as a comfy bed in their hotel room. So, when you choose WiFi access, your confirmation email will include a non-refundable personalised WiFi voucher. You\u2019ll need this when you get to the hotel \u2013 reception will help you get set up. And it\u2019s valid for 12 months, so if you have time left on your voucher you can use it stay after stay after stay.”,”userInputRequired”:null,”showWithRoom”:null},{“hidden”:null,”parameters”:[{"type":0,"name":"Mobile Number"}],”name”:”SMS”,”displayOrder”:7,”extraOptions”:[{"value":"0","name":"No SMS","id":20,"displayOrder":1,"description":null,"preSelected":true},{"value":"0.15","name":"SMS Confirmation required","id":21,"displayOrder":2,"description":null,"preSelected":null}],”helpURL”:null,”parameterised”:null,”altDescription”:null,”rooms”:[{"name":null,"id":30001955}],”id”:9,”subDescription”:null,”description”:”We will send you a text with details of your stay (Hotel, date of arrival, number of nights, booking reference etc). “,”userInputRequired”:null,”showWithRoom”:null},{“hidden”:true,”parameters”:[],”name”:”Pets”,”displayOrder”:8,”extraOptions”:[{"value":"0","name":"No Pets","id":8,"displayOrder":1,"description":null,"preSelected":true},{"value":"20","name":"1 Domestic Pet","id":9,"displayOrder":2,"description":null,"preSelected":null},{"value":"40","name":"2 Domestic Pets","id":24,"displayOrder":3,"description":null,"preSelected":null}],”helpURL”:null,”parameterised”:null,”altDescription”:”They\u2019re as much a part of the family as anyone else, so why not bring them along? Click here to find out more (it\u2019s a pop up, so you won\u2019t lose this page).”,”rooms”:[{"name":null,"id":30001955}],”id”:3,”subDescription”:”They\u2019re as much a part of the family as anyone else, so why not bring them along? Click here to find out more (it\u2019s a pop up, so you won\u2019t lose this page).”,”description”:”You can bring up to 2 pets with you on your stay. For now, we can only accommodate domestic cats and dogs (but you can be sure they\u2019ll get a good night\u2019s sleep too). Of course, Guide Dogs and Hearing Dogs are exempt from this charge.”,”userInputRequired”:null,”showWithRoom”:null}],”currency”:”£”,”outRoomBookingDetails”:null,”totalStayRoomCost”:null,”stayHotelName”:”Aberdeen Airport”,”stayStartDate”:”2010\/10\/05″,”rooms”:[{"name":"Double Room","id":30001955}],”totalRoomPrice”:”62.50″,”stayRooms”:”1″}}

    I need to extarct id from this string “rooms”:[{"name":null,"id":30001955}].

    I have used this regular expression
    Reference name: Roominfo,BookingRoomId
    Regular expression: “rooms”:(.*),”id”:(.+[^\W])
    Template: $1$$2$
    Match no: 0

    But, this is not working.
    Can you please help me in extracting the id please?

    Thanks in advance,
    -Suresh

  9. Harini
    September 3, 2010 at 8:54 am | #9

    Hi Alex,

    appreciate your help with this one. I get a json response say {“p”:[{"x1":[{"a11":...,"b11":...,"c11":...},{"a12":...,"b12":...,"c12":...}]},{“x2″:[{"a21":...,"b21":...,"c21":...}]},…]} . From this json object of json arrays, I need to extract “x”.

    -Im unable to extract x ie,. x1 or x2.

    Further I actually need to perform a foreach operation on x within which I perform another foreach operation on a ie., a1, a12..

    Thank you.

  10. September 3, 2010 at 2:51 pm | #10

    Hi Harini,
    that’s a harder (nice) one to crack.
    I’ll try to sort it out when i have some free time in the week-end…
    Alex

  11. Ravikanth
    April 11, 2011 at 5:28 am | #11

    am getting the following json exception while tryin to login using jmeter,,, plss help..invalid json string… and the values that recorded in jmeter are
    {“userName”:”user8404″,”password”:”sfqatest”,”validationCode”:”prws6″}.. pls help

    • April 11, 2011 at 3:09 pm | #12

      You need to check the exception on the server side, not on the client side. There is a reason why the server says that your json string is not valid.

  12. Jim
    April 19, 2011 at 4:41 pm | #13

    you mentioned:( if you were interested in extracting also the pages, you would use $1$$2$, and also change the regular expression to “name”:”(.+?),”pages”:(.+?) )

    But I am having trouble trying to figure out how to access the variables. When my template is just $1$ I dont have any problems, but with a template of $1$$2$ I dont know how to access the variables in the do while loop. Please help.

    I use http://jakarta.apache.org/oro/demo.html to make sure my regular expression is correct.

    • April 20, 2011 at 1:46 pm | #14

      Right. By changing the regular expression to name”:”(.+?),”pages”:(.+?) you now have a “double result”.
      Let’s suppose you store the result in a variable called “MYRESULT” That means, if the regular expression result is:
      test 1
      then the result will be stored in the “MYRESULT” variable as “test1″
      If you want to refer to the value “text”, then you use ${MYRESULT_g1}
      If you want to refer to the value “1″, then you use ${MYRESULT_g2}

      Quote:”If the match number is set to a non-negative number, and a match occurs, the variables are set as follows:
      refName – the value of the template
      refName_gn, where n=0,1,2 – the groups for the match
      refName_g – the number of groups in the Regex (excluding 0)”

      Try extracting the value of the variable first, and go on from there.
      let me know if you get any results.

      • Jim
        April 20, 2011 at 4:59 pm | #15

        I think I figured it out now. I put a debug thing to dump the variables and this is how JMeter has them stored:

        MYRESULT_?_g?

        MYRESULT_1_g1 = book1name
        MYRESULT_1_g2 = book1pages
        MYRESULT_2_g1 = book2name
        MYRESULT_2_g2 = book2pages
        MYRESULT_3_g1 = book3name
        MYRESULT_3_g2 = book3pages

        Thanks for your help.

  13. ABCD
    September 30, 2011 at 10:10 pm | #16

    Hi Alex,

    Any idea how to extract a value from an array, e.g. [0,0,0,0,0,12,0,0,0,456,0,33,3,[],34,1234,0,0,0,0,0,0] THX

  14. February 13, 2012 at 7:26 am | #17

    Thanks, it really helps me alot to me.

  15. sreepal
    April 21, 2012 at 2:47 am | #18

    Your blog is so great:
    My JSON response is:
    [
    : {
    : : "type":"rpc",
    : : "tid":6,
    : : "action":"campaignController",
    : : "method":"create",
    : : "result":
    : : {
    : : : "success":true,
    : : : "total":1,
    : : : "records":
    : : : [
    : : : : {
    : : : : : "id":"CPGN-079570-11864256-437",
    : : : : : "version":0,
    : : : : : "name":"0!Create Sreepal Load Test Camp 500",
    : : : : : "sequenceIds":null,
    : : : : : "parentId":"CNVS-079532-15306089-005",
    : : : : : "description":"",
    : : : : : "referenceId":null,
    : : : : : "status":"NEW",
    : : : : : "startTime":0
    : : : : }
    : : : ],
    : : : “message”:”Campaign created successfully”
    : : }
    : }
    ]

    if use following expression:

    Match count: 1
    Match[1][0]=”id”:”CPGN-079570-11864256-437″
    Match[1][1]=CPGN-079570-11864256-437

    I am getting above results: If use id_g1 i am able to pass CPGN-079570-11864256-437

    But i have to pass with quotations

    could you please advise me the expression for my requirement

  16. May 2, 2012 at 11:01 am | #19

    Hi Sreepal,
    been on holliday for a couple of weeks. Sorry for the late reply. May i see the reg expression you are using?

  17. sreeepal
    May 3, 2012 at 5:00 pm | #20

    Hi Alex,

    How was your holiday. I hope it was great. I am able to solve the above issue by using “id”:(……………………..+?) expression.

    • Jaypal
      May 24, 2012 at 4:15 pm | #21

      sreeepal :
      Hi Alex,
      How was your holiday. I hope it was great. I am able to solve the above issue by using “id”:(……………………..+?) expression.

      Could you please send the expression that your using.
      My JSON Response is
      {
      “code”: “200″,
      “description”: “Ok”,
      “categoryTree”: {
      “categories”: [
      {
      "categoryId": 3,
      "parentId": 1,
      "name": "Root Catalog",
      "isActive": 1,
      "includeInMenu": 0,
      "position": 3,
      "level": 1,
      "children": [
      {
      "categoryId": 45,
      "parentId": 3,
      "name": "Featured",
      "isActive": 1,
      "includeInMenu": 0,
      "position": 2,
      "level": 2,
      "children": []
      },
      {
      “categoryId”: 42,
      “parentId”: 3,
      “name”: “Main Page”,
      “isActive”: 1,
      “includeInMenu”: 0,
      “position”: 3,
      “level”: 2,
      “children”: []
      },
      {
      “categoryId”: 46,
      “parentId”: 3,
      “name”: “Might Like”,
      “isActive”: 1,
      “includeInMenu”: 0,
      “position”: 4,
      “level”: 2,
      “children”: []
      },
      {
      “categoryId”: 47,
      “parentId”: 3,
      “name”: “Recent Additions”,
      “isActive”: 1,
      “includeInMenu”: 0,
      “position”: 5,
      “level”: 2,
      “children”: []
      },
      {
      “categoryId”: 48,
      “parentId”: 3,
      “name”: “Hero Products”,
      “isActive”: 1,
      “includeInMenu”: 0,
      “position”: 6,
      “level”: 2,
      “children”: []
      }
      ]
      },

      I need retrieve categoryId using Regular Expression Extractor and use it ForEach controller.

      I am using below expression
      store1
      “categoryId”:”(.+?)”
      $1$
      1
      3

  18. Tam Norris
    June 7, 2012 at 9:20 pm | #22

    Hi guys

    I am trying to create a JMeter script for an online car insurance application that creates a repair booking for a claim. The following JSON response returns the available and unavailable time slots that can be used for the repair booking ..

    {“7″:{“45″:0,”30″:0},”8″:{“45″:0,”30″:0,”15″:1,”00″:1},”9″:{“45″:0,”30″:1,”15″:1,”00″:1},”10″:{“45″:0,”30″:1,”15″:1,”00″:1}}

    I want to select the hour value that has a free time slot. In this case it would be ’8′ because time slots 8:15 and 8:00 are free (indicated by the ’1′). Hour 7 does not have any free time slots as there is a 0 against slots 7:45 and 7:30.

    I can extract the minute value separately by using regex <>. I’m just not sure how to extract the hour value. Not sure if I can use a regex extractor or if I have to use a bean shell post processor. Any advice would be greatly appreciated.

    Thanks.

    Tam.

  19. baba@yahoo.com
    July 1, 2012 at 1:39 am | #23

    Hi Alex,
    Great post!

    I was wondering if first calling the regex processor, then the ForEach controller is the only way. Can I call ForEach first, then Regex?
    Thanks,

  20. mb
    September 3, 2012 at 8:06 am | #24

    Hi,
    Maybe you have an idea why I cannot get JSON response in JMeter at all? All other request give correct responses but the troublesome one that should return data in JSON format is completely blank. The request format is good I suppose, the same as in Firebug, and when I paste that particular request directly into the browser address bar it gives correct result, that is data in JSON format are shown in browser. Maybe you’ve expected similar problem before? Should I set some additional parameters in jmeter.properties file? I’d be very grateful for any help.

  21. garima
    December 8, 2012 at 5:53 pm | #25

    First of all good informative article. Thanks for sharing knowledge.

    By using For Each controller, I am able to pass one customer id in one request.
    However, I require to pass array values (extracted from reg exp – match number = -1) in a single request instead of multiple requests using for each.

    I have extracted all the “customer_Id” using reg exp (with match no. = -1) and set the ref name as customer_id
    But
    Now I have to pass all customer ids in one request to set the preferences of customers after shuffle the customer ids with comma separated values.

    Also, Count of customer id is not fixed.

    like:
    custPref – 9768,7651,3215,….

    Hoping for early response.
    Thanks!!

    • Tehmina
      December 25, 2012 at 8:51 am | #26

      i am also facing this problem please reply solution to this post as soon as possible.

  22. December 13, 2012 at 6:26 am | #27

    hi,
    i have to extract guid & videoid from this json response, in this i have to use this values in iterative way like first guid & videoid for 1st que, second for second & so on ,so how can i do this, can u help me out.

    {
    “status”: “success”,
    “totalNoOfQnAssign”: 10,
    “title”: “Tens and Ones”,
    “totalNoOfQn”: 10,
    “qnlist”: [
    {
    "answer": "In this problem, we need to find the value of digit in the number 46.\r\n \r\nTo find the value of a digit in a number, use place value.\r\n \r\nPlace value refers to the place of a digit in a number. Starting from the right most digit, place values are ones, tens, and so on.\r\n\r\nThe value of a digit in a number depends on its place.\r\n \r\nIn the number 46, the place value of 6 is ones and place value of 4 is tens.\r\n \r\nThe value of 6 is 6 ones, or 6.\r\n \r\nThe value of 4 is 4 tens, or 40.\r\n \r\nFor the number 46,\r\n \r\nSo, the value of the digit 4 in 46 is 40.",
    "answer1": "40",
    "answer2": "60",
    "answer3": "4",
    "answer4": "6",
    "checked": false,
    "correctAnswer": 1,
    "count": 0,
    "createdBy": "",
    "createdOn": null,
    "deleted": false,
    "difficultyLevel": "Easy",
    "disabled": false,
    "distractorList": [],
    “guid”: “069245ca-41ed-4dbc-bc7e-ba295c42c151″,
    “hintList”: [],
    “hoverText”: “”,
    “isNonMcq”: 0,
    “isQuizQn”: 0,
    “mark”: 1,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “qnTime”: 0,
    “question”: “Find the place value of the underlined digit.\r\n \r\n46″,
    “questionN”: 0,
    “questionNo”: 20,
    “solution”: “”,
    “status”: “A”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoId”: “23ee3f0f-978f-4383-94d1-5f53ecc334be”,
    “videoModel”: {
    “answer”: “”,
    “archived”: false,
    “binaryId”: “e031995f-52a9-4170-aa05-c1b75f4ff61f”,
    “binaryModel”: {
    “archived”: false,
    “baseUrl”: “binary/vid/track”,
    “baseUrlMpFour”: “binary/vid/trackmp4″,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “description”: “”,
    “disabled”: false,
    “fileName”: “M211-2.flv”,
    “fileNameMpFour”: “M211-2.mp4″,
    “guid”: “e031995f-52a9-4170-aa05-c1b75f4ff61f”,
    “hiver”: “”,
    “hover”: “”,
    “lastModifiedOn”: null,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “title”: “Its Video..”,
    “trackId”: “”
    },
    “createdBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “createdOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 44,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 48,
    “time”: 1313649888000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “deleted”: false,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “23ee3f0f-978f-4383-94d1-5f53ecc334be”,
    “lastModifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 45,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 51,
    “time”: 1313649951000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “mistakeList”: [],
    “modifiedBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “modifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 45,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 51,
    “time”: 1313649951000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “question”: “”,
    “sequence”: 2,
    “tipList”: [],
    “title”: “Place Value”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoPostText”: “”,
    “videoPreText”: “”
    }
    },
    {
    “answer”: “In this problem, we need to write how many ones and tens are shown in the figure.\r\n \r\nEach small cube represents a one, and a column of 10 ones represents a ten.\r\n\r\n\r\nRemember:\r\n10 ones = 1 ten\r\n \r\nWe have to find the number of ones and tens in the figure.\r\n \r\nTo find the number of ones, count the number of cubes on the left.\r\nThere are 60 cubes, or 60 ones.\r\n \r\nTo find the number of tens, use 10 ones = 1 ten.\r\n \r\nSo,\r\n60 ones = 6 tens\r\n \r\nThe above figure shows 6 tens.\r\n ”,
    “answer1″: “30; 3″,
    “answer2″: “60; 6″,
    “answer3″: “40; 4″,
    “answer4″: “50; 5″,
    “checked”: false,
    “correctAnswer”: 2,
    “count”: 0,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “difficultyLevel”: “Medium”,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “2de51c16-8261-4d53-a193-8034ff889a37″,
    “hintList”: [],
    “hoverText”: “”,
    “isNonMcq”: 0,
    “isQuizQn”: 0,
    “mark”: 1,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “qnTime”: 0,
    “question”: “Write how many tens and ones.\r\n\r\n___ Ones = ___ Tens”,
    “questionN”: 0,
    “questionNo”: 3,
    “solution”: “”,
    “status”: “A”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoId”: “0e9a5137-5b5e-4671-b78a-526d54402ec6″,
    “videoModel”: {
    “answer”: “”,
    “archived”: false,
    “binaryId”: “2b8501f5-57a2-4e68-b7b6-8d26d7501297″,
    “binaryModel”: {
    “archived”: false,
    “baseUrl”: “binary/vid/track”,
    “baseUrlMpFour”: “binary/vid/trackmp4″,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “description”: “”,
    “disabled”: false,
    “fileName”: “M211-1.flv”,
    “fileNameMpFour”: “M211-1.mp4″,
    “guid”: “2b8501f5-57a2-4e68-b7b6-8d26d7501297″,
    “hiver”: “”,
    “hover”: “”,
    “lastModifiedOn”: null,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “title”: “Its Video..”,
    “trackId”: “”
    },
    “createdBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “createdOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 43,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 30,
    “time”: 1313649810000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “deleted”: false,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “0e9a5137-5b5e-4671-b78a-526d54402ec6″,
    “lastModifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 44,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 43,
    “time”: 1313649883000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “mistakeList”: [],
    “modifiedBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “modifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 44,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 43,
    “time”: 1313649883000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “question”: “”,
    “sequence”: 1,
    “tipList”: [],
    “title”: “Grouping Ones to Make Tens”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoPostText”: “”,
    “videoPreText”: “”
    }
    },
    {
    “answer”: “In this problem, we need to write how many ones and tens are shown in the figure.\r\n \r\nEach small cube represents a one, and a column of 10 ones represents a ten.\r\n\r\n\r\nRemember:\r\n10 ones = 1 ten\r\n \r\nWe have to find the number of ones and tens in the figure.\r\n \r\n \r\nTo find the number of ones, count the number of cubes on the left.\r\nThere are 80 cubes, or 80 ones.\r\n \r\nTo find the number of tens, use 10 ones = 1 ten.\r\n \r\nSo,\r\n80 ones = 8 tens\r\n \r\nThe above figure shows 80 ones= 8 tens.“,
    “answer1″: “80; 8″,
    “answer2″: “60; 6″,
    “answer3″: “50; 5″,
    “answer4″: “40; 4″,
    “checked”: false,
    “correctAnswer”: 1,
    “count”: 0,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “difficultyLevel”: “Medium”,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “1a1a76ea-10de-4aa8-81cd-930441b9899c”,
    “hintList”: [],
    “hoverText”: “”,
    “isNonMcq”: 0,
    “isQuizQn”: 0,
    “mark”: 1,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “qnTime”: 0,
    “question”: “Write how many tens and ones.\r\n\r\n___ Ones = ___ Tens”,
    “questionN”: 0,
    “questionNo”: 5,
    “solution”: “”,
    “status”: “A”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoId”: “0e9a5137-5b5e-4671-b78a-526d54402ec6″,
    “videoModel”: {
    “answer”: “”,
    “archived”: false,
    “binaryId”: “2b8501f5-57a2-4e68-b7b6-8d26d7501297″,
    “binaryModel”: {
    “archived”: false,
    “baseUrl”: “binary/vid/track”,
    “baseUrlMpFour”: “binary/vid/trackmp4″,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “description”: “”,
    “disabled”: false,
    “fileName”: “M211-1.flv”,
    “fileNameMpFour”: “M211-1.mp4″,
    “guid”: “2b8501f5-57a2-4e68-b7b6-8d26d7501297″,
    “hiver”: “”,
    “hover”: “”,
    “lastModifiedOn”: null,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “title”: “Its Video..”,
    “trackId”: “”
    },
    “createdBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “createdOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 43,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 30,
    “time”: 1313649810000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “deleted”: false,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “0e9a5137-5b5e-4671-b78a-526d54402ec6″,
    “lastModifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 44,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 43,
    “time”: 1313649883000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “mistakeList”: [],
    “modifiedBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “modifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 44,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 43,
    “time”: 1313649883000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “question”: “”,
    “sequence”: 1,
    “tipList”: [],
    “title”: “Grouping Ones to Make Tens”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoPostText”: “”,
    “videoPreText”: “”
    }
    },
    {
    “answer”: “In this problem, we need to write how many ones and tens are shown in the figure.\r\n \r\nEach small cube represents a one, and a column of 10 ones represents a ten.\r\n\r\n\r\nRemember:\r\n10 ones = 1 ten\r\n\r\nWe have to find the number of ones and tens in the figure.\r\n \r\nTo find the number of ones, count the number of cubes on the left.\r\nThere are 30 cubes, or 30 ones.\r\n \r\nTo find the number of tens, use 10 ones = 1 ten.\r\n \r\nSo,\r\n30 ones = 3 tens\r\n \r\nThe above figure shows 30 ones = 3 tens.“,
    “answer1″: “30; 3″,
    “answer2″: “20; 2″,
    “answer3″: “40; 4″,
    “answer4″: “50; 5″,
    “checked”: false,
    “correctAnswer”: 1,
    “count”: 0,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “difficultyLevel”: “Medium”,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “fefa2571-40f3-4d79-b659-780f518cc876″,
    “hintList”: [],
    “hoverText”: “”,
    “isNonMcq”: 0,
    “isQuizQn”: 0,
    “mark”: 1,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “qnTime”: 0,
    “question”: “Write how many tens and ones.\r\n\r\n___ Ones = ___ Tens”,
    “questionN”: 0,
    “questionNo”: 1,
    “solution”: “”,
    “status”: “A”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoId”: “0e9a5137-5b5e-4671-b78a-526d54402ec6″,
    “videoModel”: {
    “answer”: “”,
    “archived”: false,
    “binaryId”: “2b8501f5-57a2-4e68-b7b6-8d26d7501297″,
    “binaryModel”: {
    “archived”: false,
    “baseUrl”: “binary/vid/track”,
    “baseUrlMpFour”: “binary/vid/trackmp4″,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “description”: “”,
    “disabled”: false,
    “fileName”: “M211-1.flv”,
    “fileNameMpFour”: “M211-1.mp4″,
    “guid”: “2b8501f5-57a2-4e68-b7b6-8d26d7501297″,
    “hiver”: “”,
    “hover”: “”,
    “lastModifiedOn”: null,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “title”: “Its Video..”,
    “trackId”: “”
    },
    “createdBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “createdOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 43,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 30,
    “time”: 1313649810000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “deleted”: false,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “0e9a5137-5b5e-4671-b78a-526d54402ec6″,
    “lastModifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 44,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 43,
    “time”: 1313649883000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “mistakeList”: [],
    “modifiedBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “modifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 44,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 43,
    “time”: 1313649883000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “question”: “”,
    “sequence”: 1,
    “tipList”: [],
    “title”: “Grouping Ones to Make Tens”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoPostText”: “”,
    “videoPreText”: “”
    }
    },
    {
    “answer”: “In this problem, we need to find the value of digit in the number 75.\r\n \r\nTo find the value of a digit in a number, use place value.\r\n \r\nPlace value refers to the place of a digit in a number. Starting from the right most digit, place values are ones, tens, and so on.\r\n\r\nThe value of a digit in a number depends on its place.\r\n \r\nIn the number 75, the place value of 5 is ones and place value of 7 is tens.\r\n \r\nThe value of 5 is 5 ones, or 5.\r\n \r\nThe value of 7 is 7 tens, or 70.\r\n \r\nFor the number 75,\r\n \r\nSo, value of the digit 5 in 75 is 5.“,
    “answer1″: “70″,
    “answer2″: “50″,
    “answer3″: “7″,
    “answer4″: “5″,
    “checked”: false,
    “correctAnswer”: 4,
    “count”: 0,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “difficultyLevel”: “Easy”,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “7abdb177-358a-4ea0-9de2-87bcb370b3a8″,
    “hintList”: [],
    “hoverText”: “”,
    “isNonMcq”: 0,
    “isQuizQn”: 0,
    “mark”: 1,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “qnTime”: 0,
    “question”: “Find the place value of the underlined digit.\r\n \r\n75“,
    “questionN”: 0,
    “questionNo”: 18,
    “solution”: “”,
    “status”: “A”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoId”: “23ee3f0f-978f-4383-94d1-5f53ecc334be”,
    “videoModel”: {
    “answer”: “”,
    “archived”: false,
    “binaryId”: “e031995f-52a9-4170-aa05-c1b75f4ff61f”,
    “binaryModel”: {
    “archived”: false,
    “baseUrl”: “binary/vid/track”,
    “baseUrlMpFour”: “binary/vid/trackmp4″,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “description”: “”,
    “disabled”: false,
    “fileName”: “M211-2.flv”,
    “fileNameMpFour”: “M211-2.mp4″,
    “guid”: “e031995f-52a9-4170-aa05-c1b75f4ff61f”,
    “hiver”: “”,
    “hover”: “”,
    “lastModifiedOn”: null,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “title”: “Its Video..”,
    “trackId”: “”
    },
    “createdBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “createdOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 44,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 48,
    “time”: 1313649888000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “deleted”: false,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “23ee3f0f-978f-4383-94d1-5f53ecc334be”,
    “lastModifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 45,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 51,
    “time”: 1313649951000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “mistakeList”: [],
    “modifiedBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “modifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 45,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 51,
    “time”: 1313649951000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “question”: “”,
    “sequence”: 2,
    “tipList”: [],
    “title”: “Place Value”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoPostText”: “”,
    “videoPreText”: “”
    }
    },
    {
    “answer”: “In this problem, we need to write how many ones and tens are shown in the figure.\r\n \r\nEach small cube represents a one, and a column of 10 ones represents a ten.\r\n \r\n\r\nRemember:\r\n10 ones = 1 ten\r\n \r\nWe need to find the number of ones and tens in the figure.\r\n \r\nTo find the number of ones, count the number of cubes on the left.\r\nThere are 60 cubes + 2 cubes, or 60 ones + 2 ones.\r\n \r\nTo find the number of tens, use 10 ones = 1 ten.\r\n \r\nSo,\r\n60 ones = 6 tens\r\n \r\nThe above figure shows 60 ones + 2 ones = 6 tens + 2 ones.\r\n \r\nSo, the above figure shows 6 tens and 2 ones.\r\n \r\nNow, we have to find the number.\r\n6 tens + 2 ones = 60 + 2\r\n \r\nIn order to find 60 + 2, just replace 0 by 2.\r\n60 + 2 = 62\r\n \r\nSo, the number is 62.“,
    “answer1″: “2 tens and 5 ones; 25″,
    “answer2″: “3 tens and 3 ones; 33″,
    “answer3″: “6 tens and 2 ones; 62″,
    “answer4″: “1 ten and 4 ones; 14″,
    “checked”: false,
    “correctAnswer”: 3,
    “count”: 0,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “difficultyLevel”: “Medium”,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “b311e148-f8c2-4737-a5b6-64d8df3494cb”,
    “hintList”: [],
    “hoverText”: “”,
    “isNonMcq”: 0,
    “isQuizQn”: 0,
    “mark”: 1,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “qnTime”: 0,
    “question”: “Write how many tens and ones. Write the number.\r\n \r\n___ Tens and ___ Ones”,
    “questionN”: 0,
    “questionNo”: 14,
    “solution”: “”,
    “status”: “A”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoId”: “0e9a5137-5b5e-4671-b78a-526d54402ec6″,
    “videoModel”: {
    “answer”: “”,
    “archived”: false,
    “binaryId”: “2b8501f5-57a2-4e68-b7b6-8d26d7501297″,
    “binaryModel”: {
    “archived”: false,
    “baseUrl”: “binary/vid/track”,
    “baseUrlMpFour”: “binary/vid/trackmp4″,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “description”: “”,
    “disabled”: false,
    “fileName”: “M211-1.flv”,
    “fileNameMpFour”: “M211-1.mp4″,
    “guid”: “2b8501f5-57a2-4e68-b7b6-8d26d7501297″,
    “hiver”: “”,
    “hover”: “”,
    “lastModifiedOn”: null,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “title”: “Its Video..”,
    “trackId”: “”
    },
    “createdBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “createdOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 43,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 30,
    “time”: 1313649810000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “deleted”: false,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “0e9a5137-5b5e-4671-b78a-526d54402ec6″,
    “lastModifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 44,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 43,
    “time”: 1313649883000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “mistakeList”: [],
    “modifiedBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “modifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 44,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 43,
    “time”: 1313649883000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “question”: “”,
    “sequence”: 1,
    “tipList”: [],
    “title”: “Grouping Ones to Make Tens”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoPostText”: “”,
    “videoPreText”: “”
    }
    },
    {
    “answer”: “In this problem, we need to write how many ones and tens are shown in the figure.\r\n \r\nEach small cube represents a one, and a column of 10 ones represents a ten.\r\n \r\n\r\nRemember:\r\n10 ones = 1 ten\r\n \r\nWe have to find the number of ones and tens in the figure.\r\n \r\nTo find the number of ones, count the number of cubes on the left.\r\nThere are 40 cubes + 5 cubes, or 40 ones + 5 ones.\r\n \r\nTo find the number of tens, use 10 ones = 1 ten.\r\n \r\nSo,\r\n40 ones = 4 tens\r\n \r\nThe above figure shows 40 ones + 5 ones = 4 tens + 5 ones.\r\n \r\nSo, the above figure shows 4 tens and 5 ones.\r\n \r\nNow, we need to find the number.\r\n4 tens + 5 ones = 40 + 5\r\n \r\nIn order to find 40 + 5, just replace 0 by 5.\r\n40 + 5 = 45\r\nSo, the number is 45.“,
    “answer1″: “2 tens and 5 ones; 25″,
    “answer2″: “3 tens and 3 ones; 33″,
    “answer3″: “2 tens and 3 ones; 23″,
    “answer4″: “4 tens and 5 ones; 45″,
    “checked”: false,
    “correctAnswer”: 4,
    “count”: 0,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “difficultyLevel”: “Medium”,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “13b29c6f-68be-48f4-92ca-88b318f555ec”,
    “hintList”: [],
    “hoverText”: “”,
    “isNonMcq”: 0,
    “isQuizQn”: 0,
    “mark”: 1,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “qnTime”: 0,
    “question”: “Write how many tens and ones. Write the number.\r\n \r\n___ Tens and ___ Ones”,
    “questionN”: 0,
    “questionNo”: 11,
    “solution”: “”,
    “status”: “A”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoId”: “0e9a5137-5b5e-4671-b78a-526d54402ec6″,
    “videoModel”: {
    “answer”: “”,
    “archived”: false,
    “binaryId”: “2b8501f5-57a2-4e68-b7b6-8d26d7501297″,
    “binaryModel”: {
    “archived”: false,
    “baseUrl”: “binary/vid/track”,
    “baseUrlMpFour”: “binary/vid/trackmp4″,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “description”: “”,
    “disabled”: false,
    “fileName”: “M211-1.flv”,
    “fileNameMpFour”: “M211-1.mp4″,
    “guid”: “2b8501f5-57a2-4e68-b7b6-8d26d7501297″,
    “hiver”: “”,
    “hover”: “”,
    “lastModifiedOn”: null,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “title”: “Its Video..”,
    “trackId”: “”
    },
    “createdBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “createdOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 43,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 30,
    “time”: 1313649810000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “deleted”: false,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “0e9a5137-5b5e-4671-b78a-526d54402ec6″,
    “lastModifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 44,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 43,
    “time”: 1313649883000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “mistakeList”: [],
    “modifiedBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “modifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 44,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 43,
    “time”: 1313649883000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “question”: “”,
    “sequence”: 1,
    “tipList”: [],
    “title”: “Grouping Ones to Make Tens”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoPostText”: “”,
    “videoPreText”: “”
    }
    },
    {
    “answer”: “In this problem, we need to find the value of digit in the number 21.\r\n \r\nTo find the value of a digit in a number, use place value.\r\n \r\nPlace value refers to the place of a digit in a number. Starting from the right most digit, place values are ones, tens, and so on.\r\n\r\nThe value of a digit in a number depends on its place.\r\n \r\nIn the number 21, the place value of 1 is ones and place value of 2 is tens.\r\n \r\nThe value of 1 is 1 one, or 1.\r\n \r\nThe value of 2 is 2 tens, or 20.\r\n \r\nFor the number 21,\r\n \r\nSo, the value of the digit 1 in 21 is 1.“,
    “answer1″: “20″,
    “answer2″: “10″,
    “answer3″: “2″,
    “answer4″: “1″,
    “checked”: false,
    “correctAnswer”: 4,
    “count”: 0,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “difficultyLevel”: “Easy”,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “a215b786-7360-44b8-a799-43c57122df07″,
    “hintList”: [],
    “hoverText”: “”,
    “isNonMcq”: 0,
    “isQuizQn”: 0,
    “mark”: 1,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “qnTime”: 0,
    “question”: “Find the place value of the underlined digit.\r\n \r\n21“,
    “questionN”: 0,
    “questionNo”: 19,
    “solution”: “”,
    “status”: “A”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoId”: “23ee3f0f-978f-4383-94d1-5f53ecc334be”,
    “videoModel”: {
    “answer”: “”,
    “archived”: false,
    “binaryId”: “e031995f-52a9-4170-aa05-c1b75f4ff61f”,
    “binaryModel”: {
    “archived”: false,
    “baseUrl”: “binary/vid/track”,
    “baseUrlMpFour”: “binary/vid/trackmp4″,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “description”: “”,
    “disabled”: false,
    “fileName”: “M211-2.flv”,
    “fileNameMpFour”: “M211-2.mp4″,
    “guid”: “e031995f-52a9-4170-aa05-c1b75f4ff61f”,
    “hiver”: “”,
    “hover”: “”,
    “lastModifiedOn”: null,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “title”: “Its Video..”,
    “trackId”: “”
    },
    “createdBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “createdOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 44,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 48,
    “time”: 1313649888000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “deleted”: false,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “23ee3f0f-978f-4383-94d1-5f53ecc334be”,
    “lastModifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 45,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 51,
    “time”: 1313649951000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “mistakeList”: [],
    “modifiedBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “modifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 45,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 51,
    “time”: 1313649951000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “question”: “”,
    “sequence”: 2,
    “tipList”: [],
    “title”: “Place Value”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoPostText”: “”,
    “videoPreText”: “”
    }
    },
    {
    “answer”: “In this problem, we need to find the value of digit 5 in the number 54.\r\n \r\nTo find the value of a digit in a number, use place value.\r\n \r\nPlace value refers to the place of a digit in a number. Starting from the right most digit, place values are ones, tens, and so on.\r\n\r\nThe value of a digit in a number depends on its place.\r\n \r\nIn the number 54, the place value of 5 is tens and place value of 4 is ones.\r\n \r\nThe value of 4 is 4 ones, or 4.\r\n \r\nThe value of 5 is 5 tens, or 50.\r\n \r\nFor the number 54,\r\n\r\nSo, value of the digit 5 in 54 is 50.“,
    “answer1″: “20″,
    “answer2″: “50″,
    “answer3″: “4″,
    “answer4″: “5″,
    “checked”: false,
    “correctAnswer”: 2,
    “count”: 0,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “difficultyLevel”: “Easy”,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “3a03a998-a838-4cce-b0e5-016fb9523c79″,
    “hintList”: [],
    “hoverText”: “”,
    “isNonMcq”: 0,
    “isQuizQn”: 0,
    “mark”: 1,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “qnTime”: 0,
    “question”: “Find the place value of the underlined digit.\r\n \r\n54″,
    “questionN”: 0,
    “questionNo”: 17,
    “solution”: “”,
    “status”: “A”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoId”: “23ee3f0f-978f-4383-94d1-5f53ecc334be”,
    “videoModel”: {
    “answer”: “”,
    “archived”: false,
    “binaryId”: “e031995f-52a9-4170-aa05-c1b75f4ff61f”,
    “binaryModel”: {
    “archived”: false,
    “baseUrl”: “binary/vid/track”,
    “baseUrlMpFour”: “binary/vid/trackmp4″,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “description”: “”,
    “disabled”: false,
    “fileName”: “M211-2.flv”,
    “fileNameMpFour”: “M211-2.mp4″,
    “guid”: “e031995f-52a9-4170-aa05-c1b75f4ff61f”,
    “hiver”: “”,
    “hover”: “”,
    “lastModifiedOn”: null,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “title”: “Its Video..”,
    “trackId”: “”
    },
    “createdBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “createdOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 44,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 48,
    “time”: 1313649888000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “deleted”: false,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “23ee3f0f-978f-4383-94d1-5f53ecc334be”,
    “lastModifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 45,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 51,
    “time”: 1313649951000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “mistakeList”: [],
    “modifiedBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “modifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 45,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 51,
    “time”: 1313649951000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “question”: “”,
    “sequence”: 2,
    “tipList”: [],
    “title”: “Place Value”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoPostText”: “”,
    “videoPreText”: “”
    }
    },
    {
    “answer”: “In this problem, we need to write how many ones and tens are shown in the figure.\r\n \r\nEach small cube represents a one, and a column of 10 ones represents a ten.\r\n \r\n\r\nRemember:\r\n10 ones = 1 ten\r\n \r\nWe have to find the number of ones and tens in the figure.\r\n \r\nTo find the number of ones, count the number of cubes on the left.\r\nThere are 70 cubes, or 70 ones.\r\n \r\nTo find the number of tens, use 10 ones = 1 ten.\r\n \r\nSo,\r\n70 ones = 7 tens\r\n \r\nThe above figure shows 70 ones= 7 tens.“,
    “answer1″: “80; 8″,
    “answer2″: “60; 6″,
    “answer3″: “70; 7″,
    “answer4″: “40; 4″,
    “checked”: false,
    “correctAnswer”: 3,
    “count”: 0,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “difficultyLevel”: “Medium”,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “cc3f0642-f507-4376-8a86-b4d134184104″,
    “hintList”: [],
    “hoverText”: “”,
    “isNonMcq”: 0,
    “isQuizQn”: 0,
    “mark”: 1,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “qnTime”: 0,
    “question”: “Write how many tens and ones.\r\n \r\n___ Ones = ___ Tens”,
    “questionN”: 0,
    “questionNo”: 7,
    “solution”: “”,
    “status”: “A”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoId”: “0e9a5137-5b5e-4671-b78a-526d54402ec6″,
    “videoModel”: {
    “answer”: “”,
    “archived”: false,
    “binaryId”: “2b8501f5-57a2-4e68-b7b6-8d26d7501297″,
    “binaryModel”: {
    “archived”: false,
    “baseUrl”: “binary/vid/track”,
    “baseUrlMpFour”: “binary/vid/trackmp4″,
    “createdBy”: “”,
    “createdOn”: null,
    “deleted”: false,
    “description”: “”,
    “disabled”: false,
    “fileName”: “M211-1.flv”,
    “fileNameMpFour”: “M211-1.mp4″,
    “guid”: “2b8501f5-57a2-4e68-b7b6-8d26d7501297″,
    “hiver”: “”,
    “hover”: “”,
    “lastModifiedOn”: null,
    “modifiedBy”: “”,
    “modifiedOn”: null,
    “title”: “Its Video..”,
    “trackId”: “”
    },
    “createdBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “createdOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 43,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 30,
    “time”: 1313649810000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “deleted”: false,
    “disabled”: false,
    “distractorList”: [],
    “guid”: “0e9a5137-5b5e-4671-b78a-526d54402ec6″,
    “lastModifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 44,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 43,
    “time”: 1313649883000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “mistakeList”: [],
    “modifiedBy”: “9a42b2f8-fdbe-402a-80e8-746547577a78″,
    “modifiedOn”: {
    “date”: 18,
    “day”: 4,
    “hours”: 2,
    “minutes”: 44,
    “month”: 7,
    “nanos”: 0,
    “seconds”: 43,
    “time”: 1313649883000,
    “timezoneOffset”: 240,
    “year”: 111
    },
    “question”: “”,
    “sequence”: 1,
    “tipList”: [],
    “title”: “Grouping Ones to Make Tens”,
    “trackId”: “2f20674c-367b-4a34-a123-6e3013487ac8″,
    “videoPostText”: “”,
    “videoPreText”: “”
    }
    }
    ]
    }

  1. No trackbacks yet.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.

%d bloggers like this: