How do I get results from the LMS?

I have created an assessment with click boxes, and question slides in Captivate3.  I place the course on our LMS (CornerstoneOnDemand) and users can take the course, see their score at the end, and if they pass, the course is marked completed.  That is all working. 
What I want to know is how can I know which questions people are getting wrong?
In Captivate I noticed Objective ID and Interaction ID fields on the Reporting tab for the click boxes, so I am thinking I could put in an name/label that would make sense so I know which question (clickbox) is what.
Is a file created that stores all this information (user's input, selections, results)?  If so, what is that file, how do I access it, what is it called?
Please help.
Larena

I'm not using your LMS, but a LMS based on Blackboard. When the option 'Interactions and Score' is activated in CP-Quiz settings, the gradebook in Blackboard can be used to open for each student the file associated with his score. In this file you'll find all answers, but it helps if you use some meaningful identifiers for the items. It is also possible to download the result files for all the students. I believe this should be a functionality of the LMS/SCORM but cannot help you with the name of the file.
Lilybiri

Similar Messages

  • How can I get Data from the Sound cart in Labview? Does a VI exist?

    How can I get Data from the Sound cart in Labview? Does a VI exist?

    Yes, there are VIs for acquiring data from Sound cards. And examples too. If you don't have LabVIEW yet, do a search on NI's site for example VIs.
    Khalid

  • How do I get photos from the iPhoto import folder to the iPhoto library?  It uploaded, but hung while deleting from my camera, so no imported photos are in the iPhoto library.

    How do I get photos from the iPhoto import folder to the iPhoto library?  It uploaded, but hung while deleting from my camera, so no imported photos are in the iPhoto library.  I watched it upload about 400 photos, one by one.  They're somewhere, but they don't appear in the iPhoto library. As iPhoto was deleting them from my camera, it got hung up, then a message came "you should eject before disconnecting a device."  I hadn't touched the camera.  The message came by itself.  I couldn't get iPhoto to respond, so I disconnected the camera and did a Force Quit.  Opening it back up, the pictures were gone.  Can somebody help me? 

    What version of iPhoto are you running?  Assuming it's iPhoto 9 or later Apply the two fixes below in order as needed:
    Fix #1
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    2 - run Option #4 to rebuild the database.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button and select the library you want to add in the selection window..
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the Library ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Plz tell me how I can get back from the recovery mode to my normal mode without lossing data ... actually I was trying to update ios 7 in my 4s so then mobile stuck into recovery mode...plz help?

    plz tell me how I can get back from the recovery mode to my normal mode without lossining data...I stuck in this mode while I was try to update ios 7 in my 4s

    If it's in recovery mode, anything on the phone is already gone.  Restore the phone using iTunes, then restore it from your last backup. If you've been backing up on a regular basis as intended, you won't lose anything except what's changed since the last backup.

  • I just just got the new IPhone 5.  How do I get everything from "The Cloud" onto my new IPhone?  I have a LOT of complete music albums I purchased from ITunes

    I just just got the new IPhone 5.  How do I get everything from "The Cloud" onto my new IPhone?  I have a LOT of complete music albums I purchased from ITunes
    And would very much like to retrieve it. Help please & thank you everyone

    Transferring from old to new
    http://support.apple.com/kb/HT2109

  • Two statements, get results from the first statement?

    Ok maybe I made it sound a little harder than it is, but this is what I am trying to do. I have a result set from from a database call when I pass in the username and password . In the 1st call I get the Users info: User_ID, first_name, lastname, etc...
    But I either need to get info from the first statement, and pass it to the 2nd statement or just do two statement calls calling the same info and passing it to my user object? I dont know which if any is faster, or better. The only thing I need from the first statement is the user_id. In the 2nd statement I need the user_id to find out the user permissions.
    Here is the original code when It was getting the user info and permissions from the same table. try
               dba = new DbAccess();
               java.sql.Connection con = dba.getConnection();          
    java.sql.DriverManager.getConnection("jdbc:oracle:thin:@kares:1523:appd","user","pass");  
               ps = con.prepareStatement("SELECT USER_ID, LAST_NAME, FIRST_NAME, LOGIN, PASSWORD," +
               "X, Y, Z FROM RD_USERS WHERE LOGIN=? and PASSWORD=?");
               ps.setString(1, user);
               ps.setString(2, pass);
               rs = ps.executeQuery();
               // set the user attributes
               if ( rs.next() )
                  loginValid = true;
                  setUserId(rs.getInt("USER_ID"));
                  setLastName(rs.getString("LAST_NAME"));
                  setFirstName(rs.getString("FIRST_NAME"));
                  setLoginName(rs.getString("LOGIN"));
                  setPassword(rs.getString("PASSWORD"));   
                  X = rs.getBoolean("X");
                  setX(X);
                  Y = rs.getBoolean("Y");
                  setY(Y);
                  Z = rs.getBoolean("Z");
                  setZ(Z);
               else
                  setLastName(null);
                  setFirstName(null);
                  setLoginName(null);
                  setPassword(null);
                  setX(false);
                  setY(false);
                  setZ(false);
               rs.close(); rs = null;
               ps.close(); ps = null;
               //dba.close(); dba = null;
            } The code above gets the info from one table, I now need to get the X, Y, and Z from a different table, but I need the USER_ID first. So, the first table is set up with the user_id and user info, and the 2nd table is set up with the user_id and user permissions

    Thanks DrClap I started on the the query and I did it a little differently, but it should hopefull do the same thing. my tables are constructed as so:
    USER
         USER_ID
         FIRST_NAME
         LAST_NAME
         USER_NAME
         PASSWORD
         ETC....
    USER_PERMISSIONS
         USER_ID
         PERMISSION X
         PERMISSION Y
         PERMISSION Z
         ETC....
    My Select looks something like this
    ps = con.prepareStatement("SELECT a.USER_ID, a.LAST_NAME, a.FIRST_NAME, a.USER_NAME, a.USER_PASSWORD," +
               "b.X, b.Y, b.Z FROM RD_USERS a, RD_PERMISSIONS b WHERE USER_NAME=? and USER_PASSWORD=?");
    This is where I come to a crossroads, Can I add on another AND to say "WHERE a.USER_ID = b.USER_ID
    and do I use the =, or is it ==, or .equals(). Thanks in advance.
    orozcom

  • HT4859 My phone was stolen.  I synced with my computer and lost some pictures that are backed up on the cloud.  How do I get pics from the cloud that are not in my photostream?

    My phone was stolen.  I first backe up from the icloud but then synced with my computer and lost some pictures that are backed up on the cloud.  How do I get pics from my old phone which are backed up on the cloud but are not in my photostream?

    If you have an iCloud backup, restore it to your phone as explained here: https://support.apple.com/kb/ph12521.  If you have a backup on your computer instead, restore it to your phone by connecting your phone to your computer, opening iTunes and going to File>Devices>Restore from Backup.

  • How do i get something from the Input ( Keyboard ) - NOT an Applet

    something simple for u guys...im nea @ this...so which methods do i need to get something from the keyboard...i mean..console waits for you to write a line ( a String ) and after pressing Enter the program puts it in another String in my code...
    hope u get what im talking about...sorry for the bad english...thnx a lot!!!! :)

    this class has how to get from a file or from a String in your code but cant find something like get the String from the console ( like u do in C language ).
    here is the scan class : here

  • HT1879 how do i get music from the itunes store to my ipod

    How do i download music from the itunes store to the ipod shuffle. New computer and i dont have the software for the shuffle.

    Download to iTunes, then sync your device with iTunes.

  • How do I get downloads from the internet to open in something other then text edit?, How do I get downloads from the internet to open in something other then text edit?

    Lots of times when I download files from the internet like games or something they will open up in text edit.  When it comes up its just a bunch of letters and numbers, it won't actually run the application.  How do I get the file to open up correctly and actually run?

    Hi, do you have a link to one of these you downloaded that does this?
    Basically you, in the Finder, do a Get Info on it, look for Open With & choose the proper application, but might these be Windows® only games?

  • How do I get iPhoto from the app store for my OSX Lion 10.7.5 Macbook??

    Hello,
    I have an older macbook which I was able to install OSX Lion 10.7.5 onto, and it works good with this setup.
    However I wanted to have the iPhoto app from the App Store installed on my Macbook, but looking in the App Store it says that iPhoto is compatible with OSX 10.9 or later.
    How can I get a version of iPhoto that is compatible with my OSX Lion macbook??
    Thanks.

    Install it from the computer's original disks or an iLife DVD(check sources such as Amazon or eBay if needed).
    (105594)

  • How do i get albums from the iTunes store that i accidentally deleted from my library

    i accidentally deleted all of my albums from the offspring that i bought on iTunes, how do i get them back without having to buy them again?

    If you live in a Region that allows re-downloading Music...
    See Here  >  Download Past Purchases
    http://support.apple.com/kb/HT2519

  • How do i get input from the user?

    For example if i wanted to ask "Whats your favorite number" and then get the input from the user and assign it to a variable how would i go about doing that?

    hi,
    if you want to get input from your console your should work with io(input and output).The BufferedReader class, InputStreamReader class
    you should import "java.io.BufferedReader" and "java.io.InputStreamReader" package, and do something like this:
    BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
    String favoriteNumber;
    System.out.println("Whats your favorite number ");
    favoriteNumber = input.readLine();
    System.out.println ("Your favorite Number Is " + favoriteNumber);
    if its a gui you should import "javax.swing.JOptionPane" and do the following
    String favoriteNumber = JOptionPane.showInputDialog(null, "Enter your favorite Number", "Favorite Number", JOptionPane.INFORMATION_MESSAGE);
    anjiie([email protected]).

  • How do I get pictures from the iPhone to my Windows 7 PC?

    I am running Windows 7, and I have iTunes installed. When I connect my iPhone, iTunes opens automatically, but I can't access the pictures from Windows Explorer. It used to show up in Computer, but it suddenly stopped. I don't think anything has changed since then. How do I get the pictures onto my computer?

    The only way you can get pictures FROM your iPhone to your computer is if you took the pictures with your iPhone. The only other way you can move photos from the iPhone is to mail them to yourself ( which is very time consuming). If you are trying to get photos from your computer TO your iPhone...in iTunes, click on "Photos" and make sure you check the photos you want to sync.............then sync.If you're still having problems, let me know.

  • How to access getter/setters from the entity classes

    Let me brake my question to two:
    1. in My JSP page, I need to get an exception from either the entity or the view class if I insert a duplicate value into the associated table. How can I do that?
    2. How can I access the entity's getter/setter functions in the JSP page?
    Thank you

    Let me brake my question to two:
    1. in My JSP page, I need to get an exception from either the entity or the view class if I insert a duplicate value into the associated table. How can I do that?You can mark the attribute as unique key attribute and choose to implement the unique-key validation in the Bc4J side. See help on UniqueKey and how to establish such validation
    2. How can I access the entity's getter/setter functions in the JSP page?You cannot access entities directly. You have to expose the accessors via ViewObject Rows and use those Rows from the JSP/or any client side.
    Thank you

Maybe you are looking for