How to create a multiple choice test?

I am baffeled that iWorks on iOS, iCloud and even OS X doesn't have a List Style that works like a normal multiple choice exam question as follows:
1. Exam question
     a. answer one
     b. answer two
     c. answer three
     d. answer four
All I am seeing in my options is somethings that looks like this:
Exam question
answer one
answer two
etc... oddly enough that is the only choice in this form also.
Does anyone have a solution for this? I normally work on a MacBook Pro and an iPad for teaching so an answer that works with both would be helpful.
Thank you.

I thought i had it but the lettered portion went on to D and E in the next question.
please go to www.apple.com/feedback and let them know what you would like to see.
Jason

Similar Messages

  • Hi.  I´d like to create my own multiple choice test, can you help?  Thanks!!  Kate, Hi.  I´d like to create my own multiple choice test, can you help?  Thanks!!  Kate

    I´d like it to have automated response.....how do I do that?  Thanks heaps

    Take a look at Jotform.com.  Withn it you can create some multiple choice questions with radio buttons or checkboxes. An example of Jotform is on this demo page: Embedding Forms & Encoding Email Addresses
    As far as after June of next year just get yourself a new hosting service and move your sites to it.  These tutorials might be of interest to you once you do get a new hosting service:
    #25 - Easily Transfer Website Folders From MobileMe to a 3rd Party Server
    #26 - Modify iWeb So Popup Slideshows Will Work After MobileMe is Discontinued
    #10 - Redirect Every Web Page of a MobileMe Site to the Same Page on a New Host Server.
    This might be of some interest also:
    It is now apparent that iWeb, and iDVD, will no longer be supported by Apple. This is evidenced by the fact that new Macs are shipping with iLife 11 installed but without iWeb and iDVD.  iWeb will still continue to work but without the following:
    Features No Longer Available Once MobileMe is Discontinued:
    ◼ Password protection
    ◼ Blog and photo comments
    ◼ Blog search
    ◼ Hit counter
    All of these issues can be replaced with 3rd party solutions.
    I found that if I published my site to a folder on my hard drive and then uploaded with a 3rd party FTP client subscriptions to slideshows and the RSS feed were broken.  If I published directly from iWeb to the FPT server those two features continued to work correctly.
    There's another problem and that's with iWeb's popup slideshows.  Once the MMe servers are no longer online the popup slideshow buttons will not display their images.
    Click to view full size
    However, Roddy McKay and I have figured out a way to modify existing sites with those slideshows and iWeb itself so that those images will display as expected once MobileMe servers are gone.  How to is described in this tutorial: #26 - How to Modify iWeb So Popup Slideshows Will Work After MobileMe is Discontinued.
    Apple has announced that iLife is now an unsupported product and those iApps will only be available thru the App Store from now on.  However, the boxed iLife 11 at the online Apple Store (Store button at the top of the page) and those still on the shelves of retailers will include iWeb and iDVD.  Those two apps were listed in small, gray text on the iLife 11 box that I bought. Personally, if I already didn't have a copy I would purchase one to have it for reinstallation purposes if ever needed.
    OT

  • Creating a multiple choice quiz with rollover answers

    Hello, I am trying to create a multiple choice quiz question where the answer does not appear until the user mouses over the appropriate letter. I have been working on the multiple choice question slide for Captivate, but it appears I can only use text captions with static text.  If anyone knows of a workaround, or a way to add multiple choice question functionality to a blank slide I would appreciate it.  Thanks.

    Thanks I see the pictures now.  That helps a lot.  You have a great writeup on the advanced actions to make this work so I think I'll be good with that portion. I do have a couple of stylistic questions though:
    Unfortunately, having any sort of highlight color will not work with the theme I need to use.  Do you know how to remove highlighting, or make it transparent?
    I have three questions, and was able to get the three choice bubbles lined up by reshaping the widget.  Do you know of any way to increase/decrease space between the selection bubbles without reshaping the widget?  I'm concerned that when we review the course the project sponsor may ask for spacing that I can not create by reshaping the widget.

  • How to create the multiple desktops

    Hi,
    Can anybody help me out how to create the multiple desktops in weblogic portal.After creating the desktops how to run them.Can you provide me the any document or send me the solution for it. I will be waiting for the reply.Thanks in advance..
    Thanks & Regards
    Kalyan Kurmam

    Hi Kalyan
    Please see a post of mine with the info you want and some additional information on what exactly Desktops and Portals are. Hope this helps.
    Re: Portals vs Desktop
    Thanks
    Ravi Jegga

  • How to create a multiple-line TextBox in a jfx script?

    How to create a multiple-line TextBox in a jfx script?
    Or
    How to use the Swing component JTextArea in a jfx script?
    Please post a brief code segment.
    Thanks,
    Asghar

    This supports two way binding between JavaFX and Java and also cut and paste.
    Enjoy.
      * MyTextArea.fx
      * Created on Dec 14, 2008, 7:23:49 AM
    package twifxer.components;
    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    import java.awt.Font;
    import javafx.ext.swing.SwingComponent;
    import javax.swing.JComponent;
    import javax.swing.JTextArea;
    import java.awt.Color;
      * @author Steven Herod
    public class TweetTextComponent extends SwingComponent{
         var myComponent: JTextArea;
         public var length: Integer;
         public var readText:String;
         public var text: String on replace{
             myComponent.setText(text);
         public var toolTipText: String on replace{
             myComponent.setToolTipText(toolTipText);
         public override function createJComponent():JComponent{
             translateX = 15;
             translateY = 5;
             var f:Font = new Font("sanserif",Font.PLAIN, 11);
             myComponent = new JTextArea(4, 33);
             myComponent.setOpaque(false);
             myComponent.setFont(f);
             myComponent.setWrapStyleWord(true);
             myComponent.setLineWrap(true);
             myComponent.addKeyListener( KeyListener{
                 public override function
                 keyPressed(keyEvent:KeyEvent) {
                     if (keyEvent.VK_PASTE == keyEvent.getKeyCode())
                         myComponent.paste();
                 public override function
                 keyReleased( keyEvent:KeyEvent) {
                     var pos = myComponent.getCaretPosition();
                     text = myComponent.getText();
                     myComponent.setCaretPosition(pos);
                 public override function
                 keyTyped(keyEvent:KeyEvent) {
                     length = myComponent.getDocument().getLength();
             return myComponent;
    }

  • Does anyone has multiple choice test about oop?

    Hi all.
    Do you have multiple choice test or questions require to give the result or find the errors in a code about oop in java?
    If you do, please shaze me!
    Thanks!!!!!!!!!

    Ah, i want to have questions that check the knowledge about Object Oriented Programming in Java.
    For example:
    Find the result :
    class Msg{
    Msg(){
    System.out.println("Hello");
    void say(){
    System.out.println("Say");
    public class Test3 extends Msg{
    public Test3(){
    System.out.println("Java");
    void say(){
    System.out.println("Adios");
    public static void main(String args[]){
    Msg msg1 = new Msg();
    Msg msg2 = new Test3();
    msg1.say();
    msg2.say();
    } or find the errors
    interface Action{
    public void drive(){
    public void drop(){
    class Vehicle extends Action{
    private int id;
    Vehicle(int a_id){
    id = a_id;
    public class Car extends Vehicle{
    protected float load;
    public void Car(int a_id, float lo){
    load = lo;
    super(a_id);
    public void drive(){
    public void drop(){
    }So, if you have test like that, please share me!
    That's what i mean :">
    Regards,

  • How To create a message Choice for a page?

    Hi,
    I need to create a message choice for a page and on selection of that it should navigate me to next page..like
    ex:
    If iam havng 10 locations like Delhi,Hyderabad,Chennai....
    I need to select one of them and it should be navigated to next page based on the above selection...These values are to be retrieved from database...
    Can u gimme any idea..how to proceed?

    Maybe something like this will help.
    On your <af:selectOneChoice/> component configure a valueChangeListener and set autosubmit to true.
    In your valueChangeListener change the current view like :
    public void handleValueChanged(ValueChangeEvent valueChangeEvent) {
    // Add event code here...
    if (!PhaseId.INVOKE_APPLICATION.equals(valueChangeEvent.getPhaseId())) {
    valueChangeEvent.setPhaseId(PhaseId.INVOKE_APPLICATION);
    valueChangeEvent.queue();
    } else {
    // add additiional app functionality here
    ControllerContext controllerContext = ControllerContext.getInstance();
    ViewPortContext viewPortContext = controllerContext.getCurrentViewPort();
    viewPortContext.setViewId("test");
    Regards,
    Kenneth
    The deferred execution of ValueChangeEvent is necessary as the ViewID can only be changed in INVOKE_APPLICATION phase.

  • How to create the multiple spool requests for a single report.

    Hi gurus,
                     I have one requirement to be completed , i need to send the out put of the report via mail in pdf format. for that what i did was, iam executing report in background and creating spool request and converting it to pdf and sending the file.
    now the problem is, its a customer ledger report, for each customer i need to create a new spool request and send mail to that particular customer, now my dought is how to create multiple spool requests for a single pro and how i need to go about it.
    And one more question is can we create a spool request for a report which is running in online.
    waiting for inputs frm gurus.

    Hello,
    As per my knowledge for creating new spool id you will have to set
    output_options-tdnewid = 'X'.
    and then using
    job_output_info-spoolids
    create a pdf using
    call function 'CONVERT_OTFSPOOLJOB_2_PDF'
    Rachana.

  • How can I place multiple choice boxes on the same line instead of in a column?

    I know it is possible to place multiple fields on the same line, using drag and drop.
    But to save space, I would like to have 3 or 4 multiple choice boxes next to each other on one line. 
    Is this possible, and if so, how?
    Thanks
    Peter

    You may click on the "+" button to the right of the first multiple choice box to add more in the same line. When you hover over the button, the tooltip says "insert item beside".

  • How to create or generate sample / test data (mass data for tables) ?

    Hello,
    I'm playing around a little with some SQL-functions, but actually I have only a small number of rows in my sample table and I would like to have "big, filled tables". :-)
    Is there an easy way to generate mass data for tables, e.g. for testing the performance of SQL-statements when a table is full of data.
    For example:
    How can I generate lets say 50.000 or 100.000 rows into a table with two columns? Is there a ready-to-use command to generate this mass of data?
    How do you create random data for testing?
    Thanks a lot in advance for your help!
    Best regards
    FireFighter

    First, thanks for the quick and great answer! It looks exactly what I'm looking for. How could I forget to look at Tom's site for such a script. ;-)
    But.....
    ...unfortunately, it doesn't seem to work. :-( And since I'm not so experienced in PL/SQL until now (looking forward to a course end of year...) I don't know what the error is. Is it not meant to use within 10g ??
    So, here is what i do:
    1. Log in to SQL*plus and generate the procedure with "@gen_data.sql"
    2. Then I try to execute the procedure by using "exec gen_data('mytesttable',500);"
    Then I get the following error output:
    SQL*plus> exec gen_data( 'mytable', 50 );
    BEGIN gen_data( 'mytable', 50 ); END;
    ERROR at line 1:
    ORA-00936: missing expression
    ORA-06512: at "SYS.GEN_DATA", line 34
    ORA-06512: at line 1
    And here is the code that I have used:
    01 create or replace procedure gen_data( p_tname in varchar2, p_records in number )
    02 authid current_user
    03 as
    04 l_insert long;
    05 l_rows number default 0;
    06 begin
    07
    08 dbms_application_info.set_client_info( 'gen_data ' || p_tname );
    09 l_insert := 'insert /*+ append */ into ' || p_tname ||
    10 ' select ';
    11
    12 for x in ( select data_type, data_length,
    13 nvl(rpad( '9',data_precision,'9')/power(10,data_scale),9999999999) maxval
    14 from user_tab_columns
    15 where table_name = upper(p_tname)
    16 order by column_id )
    17 loop
    18 if ( x.data_type in ('NUMBER', 'FLOAT' ))
    19 then
    20 l_insert := l_insert || 'dbms_random.value(1,' || x.maxval || '),';
    21 elsif ( x.data_type = 'DATE' )
    22 then
    23 l_insert := l_insert ||
    24 'sysdate+dbms_random.value+dbms_random.value(1,1000),';
    25 else
    26 l_insert := l_insert || 'dbms_random.string(''A'',' ||
    27 x.data_length || '),';
    28 end if;
    29 end loop;
    30 l_insert := rtrim(l_insert,',') ||
    31 ' from all_objects where rownum <= :n';
    32
    33 loop
    34 execute immediate l_insert using p_records - l_rows;
    35 l_rows := l_rows + sql%rowcount;
    36 commit;
    37 dbms_application_info.set_module
    38 ( l_rows || ' rows of ' || p_records, '' );
    39 exit when ( l_rows >= p_records );
    40 end loop;
    41 end;
    42 /
    Does anybody know what my error i have in here?
    Thanks again for you help in advance!
    Rgds
    FF
    Message was edited by:
    FireFighter

  • How to create a multiple existing users in exch 2013

    Hi 
    Do you know how to add a multiple existing users in Exchange 2013,only permits add one user at time. I need add 200 users.
    In exchange 2007 and 2010 this feature is possible through the management console
    It´s possible in Exchange 2013?

    On Fri, 1 Mar 2013 19:01:36 +0000, serch diaz wrote:
    >This is the only way? i have many OU´s
    No, it's not the only way. Prepare a CSV file with the necessary
    information and use it to drive the process
    Something like this:
    import-csv | foreach {
    get-user $_ | enable-mailbox
    Rich Matheisen
    MCSE+I, Exchange MVP
    --- Rich Matheisen MCSE+I, Exchange MVP

  • How to create a multiple line label?

    Hi,
    I need to set a multiple line label. If I enter the following code:
    strTitle = "<html><body><b><font color=red>The first line,<br>";
    strTitle = strTitle + "the second line.</font></b></body></html>";
    jLabelTitle.setText( strTitle );
    I can see a two line label. However, with such code, if I go to the UI editor for that frame, the jdev immediately crashed. I am using jdev 9i_902. If I go to UI editor for any other frames without such code, everything is fine, no problem at all.
    Can anybody explain why? Is there other way to create a multiple line label?
    Thanks!
    Harvey

    Harvey - I have reproduced this in the production and the latest build. I have logged bug 2446385 but have found a work around. If
    you code:
    strTitle = "<html><body><b><font color=red>The first line,<br>"+"the second line.</font></b></body></html>";
    jLabel1.setText(strTitle);
    It seems to work ok.
    Hpoe this helps and thanks for posting this.
    Regards
    Grant Ronald
    Product Management

  • How to create a multiple PDF-form outputs into one PDF?

    Hi,
    I`d like to create a PDF document with a few pages in it, build from different PDF-forms using many form-function calls. Where each PDF-form can use its own interface.
    I`ve made a simple programme, but as the result I have a few separated documents with scrolling tab instead of one document with all pages in it.
    What am I doing wrong?
    *& Report  ZZ_TEST_PDF_MULTY
    REPORT  zz_test_pdf_multy.
    PARAMETERS:
      p_page TYPE i DEFAULT 2,
      p_row TYPE i DEFAULT 4.
    END-OF-SELECTION.
      DATA:
        tb_itf TYPE tsftext,
        s_itf TYPE tline.
      DATA:
        c_fmname TYPE rs38l_fnam,
        s_outputparams TYPE sfpoutputparams,
        s_docparams TYPE sfpdocparams,
        s_formoutput TYPE fpformoutput,
        s_sfpjoboutput TYPE sfpjoboutput,
        c_page TYPE string,
        c_row TYPE string.
      CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
        EXPORTING
          i_name     = 'FP_TEST_00'
        IMPORTING
          e_funcname = c_fmname.
      s_outputparams-nodialog = 'X'.
      s_outputparams-device   = 'PRINTER'.
      s_outputparams-preview  = 'X'.
      s_outputparams-dest     = 'PDF'.
      s_outputparams-getpdf   = ' '.
      s_outputparams-title    = sy-title.
    *  s_outputparams-bumode   = 'M'.
      CALL FUNCTION 'FP_JOB_OPEN'
        CHANGING
          ie_outputparams = s_outputparams
        EXCEPTIONS
          cancel          = 1
          usage_error     = 2
          system_error    = 3
          internal_error  = 4
          OTHERS          = 5.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      s_docparams-langu   = 'R'.
      s_docparams-country = 'RU'.
      DO p_page TIMES.
        MOVE sy-index TO c_page.
        REFRESH tb_itf.
        DO p_row TIMES.
          MOVE sy-index TO c_row.
          c_row = sy-index.
          CONCATENATE
              'page' c_page 'row' c_row
            INTO s_itf-tdline SEPARATED BY space.
          APPEND s_itf TO tb_itf.
        ENDDO.
        CALL FUNCTION c_fmname
          EXPORTING
            /1bcdwb/docparams  = s_docparams
            textlines          = tb_itf
          IMPORTING
            /1bcdwb/formoutput = s_formoutput
          EXCEPTIONS
            usage_error        = 1
            system_error       = 2
            internal_error     = 3.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ENDDO.
      CALL FUNCTION 'FP_JOB_CLOSE'
        IMPORTING
          e_result       = s_sfpjoboutput
        EXCEPTIONS
          usage_error    = 1
          system_error   = 2
          internal_error = 3
          OTHERS         = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.

    Sorry, but making single PDF from many smartforms is not what I want to achieve. I wold like to know how to get one PDF document made by ALC-forms.
    In my example I have many PDF documents. So, how to get (or put) them all in one PDF?
    ps: the way to get one PDF from smartforms is also here:
    "Combining Multiple Smartform Outputs Into One PDF file"
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/62ae7fcd-0b01-0010-3e9d-a54f26944450

  • How to create/simulate multiple mouse devices (in dev manager) in windows 8.1 and above?

    Is their any way to install/enable multiple mouse devices in windows 8.1 and above and simulate input to them? I would write a driver if their is no other way. If I need to write a device driver does anyone have any good pointer tutorials that would
    get me started?
    I found this for communicating with an already installed device which is hooked up to the computer.
    https://msdn.microsoft.com/en-us/library/windows/apps/windows.devices.humaninterfacedevice.aspx?f=255&MSPPError=-2147217396
    I wonder if installing something that's already in the driver store using DiInstallDriver and enabling it (possibly via CM_Enable_DevNode) would work?
    My goal was to create/install 4 mouse devices and communicate with them via the windows.devices.humaninterfacedevice library. Would this be possible?
    Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - "Sherlock holmes" "speak softly and carry a big stick" - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to suffering
    - Yoda. Blog - http://www.computerprofessions.co.nr

    you need to write your own driver. you will need to write a HID miniport. from that one miniport you can describe as many HIDs as you want. you can write the HID miniport driver in UMDF if you want to stay in user mode.
    the namespace you link to above will not create HIDs and the normal rules about not allowing you to open a keyboard or mouse HID from user mode still applies.
    d -- This posting is provided "AS IS" with no warranties, and confers no rights.
    That almost an answer. I was wondering if this is good example of what you were talking about:
    https://code.msdn.microsoft.com/windowshardware/WudfVhidmini-Sample-b304f83a/sourcecode?fileId=42918&pathId=556204534
    If so, does that mean I need to use direct calls to HID.dll or other libraries in order to read from the custom mouse device? I have seen many implementations of filters which end up poorly (maybe not everyone but the multiple device ones mostly) and
    I am not for sure about the miniport drivers.
    Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - "Sherlock holmes" "speak softly and carry a big stick" - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to
    suffering - Yoda. Blog - http://www.computerprofessions.co.nr

  • How to create a page that tests and then creates a valid DB LINK connection

    The problem is that I'd like to create a page that has all the necessary fields (name, host, port, etc) to create a database link just like the one in the SQL workshop - I'd prefer to have it done this way so as to limit the users from using SQL workshop. But i'd also like the DB Link tested before created.
    I've tinkered around a bit and was able to create the database link using a page process that calls an execute immediate statement to add the database link using items in the form section, however I'm confused as to how I would test the connection before hand.

    but rather the concept of a page that reads from table (maybe a "report?") to provide a result set of data which the user can click on a result to direct to another page.You are on the right track with the idea of an initial page with a report region listing your reports as links. Not sure from the provided information if this out of the box capability will meet your actual requirement, but try the Create Page wizard > New page > Form > Form on a Table with Report as a first approximation.
    instead of creating unique individual pages for each of the 100 Oracle Reports, featuring the report's attributes (parameters, etc), what do I need to do just have one APEX page that dynamically reads from the table and builds the Region and its Items based on what's in the table?If this can't be handled using the built-in Form on a Table with Report design pattern, it sounds like it will be possible using a dynamic form generated using the [APEX_ITEM API|http://download.oracle.com/docs/cd/B28359_01/appdev.111/b32258/api.htm#BGBHDGAI] either as another report region or a PL/SQL Dynamic Content region.
    Also, any reference books that you guys recommend on the ins/outs of APEX? [Pro Oracle Application Express|http://www.amazon.co.uk/gp/reader/159059827X/ref=sib_dp_pt#reader-link], the authors of which are active voices on this forum, is a good book. The forum itself is an unbelievable resource, as is the hosted service for learning and experiment at [apex.oracle.com|http://apex.oracle.com/i/index.html].

Maybe you are looking for

  • Ghost Rental in my IPOD Video Library...there's a video that I rented that won't go away...how to remove?

    I rented a video on my ipod, watched it, and now it won't go away.  I can't rewatch it either.  When I sync, it is not on the computer as far as rentals.  Can anyone help me remove this?

  • Multivalue DB

    Hi there. I have a multivalue DB (http://en.wikipedia.org/wiki/MultiValue) Pick system. I want to make my reports on CR. But I have a big problem, Pick DB uses multivalue fields. With a MultiValue database schema, also known as an account, a dictiona

  • Why is there a Question Mark in my Finder Window?

    This question mark has recently appeared in my finder windows on my 21" iMac (2010), any ideas why? http://www.flickr.com/photos/dtsdesigns/6311994946/

  • Problem in co01 workcenter upload

    Hi experts, I have a doubt in my bdc, in my bdc i am going to create production order in CO01. its working properly but after entered the date i want to click operation overview and change one particular routing workcenter. But all the workcenter hav

  • Dynamic Safety Stock - Custom logic

    Hi, Are there any exits / enhancements where we can build customer specific logic to periodically update Safety Stock values in the Material Master (MRP Area)? Thanks. Raj