Help Required CLAD test questions

Hi,
I need help with these questions immediately. this is the last set of questions for mwhich i could not find answers anywhre. if someone from NI can help me to tell the correct answers i shall be really grateful.
Since i dont get the wrong question numbers after the test I am not sure about these answers.
Please its urgent I have my test in 10 hours from now.
Thanks everyone
Regards
CLAD
Using Labview 5.1,6.1,7.1.8.0

Ooops
just now i have scored 39 out of 40 and i guessed on few questions so dont know which went wrong
And these are common questions from all the tests that i gave whose answer I am not sure and in the last test i changed few answers and got 39 correct.
now i dont know if i should be happy or sad.....
Message Edited by labviewmission on 11-30-2006 12:39 AM
CLAD
Using Labview 5.1,6.1,7.1.8.0
Attachments:
Ques2.doc ‏4869 KB

Similar Messages

  • Help required in Index Question

    Hi,
    This is an interview question that i faced.
    Theres a table Statistics having more than 300 columns. It has normal indexes on say five columns col1, col2, col3, col4, col5.
    Queries involving the first four columns give excellent performance but the query involving col5 gives poor performance.
    COL5 has around 5 million data and 1 normal index ix created on it and theres just one value in it say 'STATS'.(He said the query can be simple select queries or join queries, the queries may select all the rows of few rows may be 5%, 10% etc).
    The question was what could be the possible reason?
    I was unable to answer it but i think BITMAP index might be useful in this scenario.
    Any help or suggestions will be highly appreciated.

    Is it a good idea to creat a normal index on a column that have just one value as 'STATS' and the total no of rows is more than 5 million??
    No
    See the I/O
    SQL> CREATE TABLE bitmap_table AS SELECT ROWNUM rn FROM all_objects
      2  /
    Table created.
    SQL> ALTER TABLE bitmap_table ADD (status VARCHAR2(1))
      2  /
    Table altered.
    SQL> SELECT COUNT(*) FROM bitmap_table
      2  /
    COUNT(*)
        64177
    SQL> UPDATE bitmap_table SET status='Y'
      2  /
    64177 rows updated.
    SQL> COMMIT
      2  /
    Commit complete.
    SQL> CREATE TABLE btree_table AS SELECT * FROM bitmap_table
      2  /
    Table created.
    SQL> CREATE BITMAP INDEX bitmap_table_idx ON bitmap_table (status)
      2  /
    Index created.
    SQL> CREATE INDEX btree_table_idx ON btree_table (status)
      2  /
    Index created.
    SQL> EXEC DBMS_STATS.GATHER_TABLE_STATS('SCOTT','BITMAP_TABLE')
    PL/SQL procedure successfully completed.
    SQL> EXEC DBMS_STATS.GATHER_INDEX_STATS('SCOTT','BITMAP_TABLE_IDX')
    PL/SQL procedure successfully completed.
    SQL> EXEC DBMS_STATS.GATHER_TABLE_STATS('SCOTT','BTREE_TABLE')
    PL/SQL procedure successfully completed.
    SQL> EXEC DBMS_STATS.GATHER_INDEX_STATS('SCOTT','BTREE_TABLE_IDX')
    PL/SQL procedure successfully completed.
    SQL> SET AUTOTRACE TRACEONLY
    SQL> SELECT status
      2    FROM bitmap_table
      3   WHERE status='Y'
      4  /
    64177 rows selected.
    Execution Plan
       0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=2 Card=64177 Bytes
              =128354)
       1    0   BITMAP CONVERSION (TO ROWIDS) (Cost=2 Card=64177 Bytes=128
              354)
       2    1     BITMAP INDEX (FAST FULL SCAN) OF 'BITMAP_TABLE_IDX' (IND
              EX (BITMAP))
    Statistics
            171  recursive calls
              0  db block gets
             31  consistent gets
              0  physical reads
              0  redo size
         804546  bytes sent via SQL*Net to client
         475281  bytes received via SQL*Net from client
           4280  SQL*Net roundtrips to/from client
              4  sorts (memory)
              0  sorts (disk)
          64177  rows processed
    SQL> DROP INDEX BITMAP_TABLE_IDX
      2  /
    Index dropped.
    SQL> EXEC DBMS_STATS.GATHER_TABLE_STATS('SCOTT','BITMAP_TABLE')
    PL/SQL procedure successfully completed.
    SQL> SET AUTOTRACE TRACEONLY
    SQL> SELECT status
      2    FROM bitmap_table
      3   WHERE status='Y'
      4  /
    64177 rows selected.
    Execution Plan
       0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=26 Card=64202 Byte
              s=128404)
       1    0   TABLE ACCESS (FULL) OF 'BITMAP_TABLE' (TABLE) (Cost=26 Car
              d=64202 Bytes=128404)
    Statistics
            192  recursive calls
              0  db block gets
           4405  consistent gets
              0  physical reads
              0  redo size
         804546  bytes sent via SQL*Net to client
         475281  bytes received via SQL*Net from client
           4280  SQL*Net roundtrips to/from client
              4  sorts (memory)
              0  sorts (disk)
          64177  rows processed
    SQL> SELECT status
      2    FROM btree_table
      3   WHERE status='Y'
      4  /
    64177 rows selected.
    Execution Plan
       0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=27 Card=64177 Byte
              s=128354)
       1    0   INDEX (FAST FULL SCAN) OF 'BTREE_TABLE_IDX' (INDEX) (Cost=
              27 Card=64177 Bytes=128354)
    Statistics
            171  recursive calls
              0  db block gets
           4429  consistent gets
              0  physical reads
              0  redo size
         804546  bytes sent via SQL*Net to client
         475281  bytes received via SQL*Net from client
           4280  SQL*Net roundtrips to/from client
              4  sorts (memory)
              0  sorts (disk)
          64177  rows processed
    SQL> SELECT index_name,blevel,num_rows
      2    FROM user_indexes
      3   WHERE index_name='BTREE_TABLE_IDX'
      4  /
    INDEX_NAME                        BLEVEL  NUM_ROWS
    BTREE_TABLE_IDX                        1     64177
    SQL> SELECT index_name,blevel,num_rows
      2    FROM user_indexes
      3*  WHERE index_name='BITMAP_TABLE_IDX'
    SQL> /
    INDEX_NAME                        BLEVEL  NUM_ROWS
    BITMAP_TABLE_IDX                       1         3Khurram

  • I have a question takig the CLAD test wed

    A Waveform Cluseter contains each of the following elements.  A.  t0, dt, Y  B. X, Y, dt  C. X, Y, t0, D. none of the above.  Chose A, B , C, or D please

    Thanks people for your help.  I do not how tgo use labview help, b ut not to answer these sorts of questions. Also, the test does not have questions on how to use labviuew help, from the examples i have seen.
    So here is another, if someone could tell me how to use help top actaully find these answers that would be great.  I do not think help is setup to answer test questions
    here is anotrher
    All of the following statements regarding SubVIs are true except.
    A.  They require less memory
    B.  They allow for easier debugging
    C   They allow yopu to use the same code for many future applications
    D.  All of the above are true.
    I say answer is B  makes debugging more difficult?

  • HT5699 Im from another country and ive lost the answers to my security questions. Help required

    Hi
    Im from another country and ive lost the answers to my security questions. Help required
    Thanks

    You need to contact Apple, either as described in that article or by filling out and submitting this form.
    (90034)

  • Clarity required on these questions pls help?

    HI ,
    Need your help in solving these questions, these are questions asked in during interviews
    a) Dyamic actions, how to create a customer specific dynamic action , specify configured fields and rules?
    b) how to create Customer specific infotype, , please explain with any example with which are the fields you have created
    c)    Msn 10, 20, 30
    d) Revision  infotypes
    e) What are the  infotypes which cannot be enhanced
    f) What is log, How can we cancel and edit it?
    g) What is Ap/b
    h) Which is Default feature for wage types
    i) What are Infosets
    Thanks and Regards
    j) Define Benefit area

    You can do as suggested already and use interface nodes and cross component mapping; but that is all really not necessary.  It creates a situation where you calling application is too dependent upon the freely programmed input help.  You want to try to avoid the situation where the calling application needs code or mappings to communicate with the input help.
    That is easy to do because the framework passes all the information you need into the freely programmed input help via the value_help_listener object. 
    Part of the Freeley Programmed Input Help Component should be the component interface IWD_VALUE_HELP.  This comes with a component controller method called SET_VALUE_HELP_LISTENER.  This allows your freely programmed value help to capture this object called listener of type IF_WD_VALUE_HELP_LISTENER. I generally just store it awa into a component controller attribute.
    With this listerner object you have direct access to the context attribute in the calling component. You can query information about the calling UI element and of course set values directly back into it.  The listener is a hugely helpful object and should be the way you interact with the calling component whenever possible.  Here is small example:
      set single attribute
      wd_this->value_help_listener->f4_context_element->set_attribute(
      exporting
        name = wd_this->value_help_listener->f4_attribute_info-name
        value = l_time

  • [Java and all else] Requirements tracking, testing, and versioning

    Hello,
    as a semi-experimental subject, I am considering managing requirements and test documents in the same version control system as the code.
    For some reasons, this versioning policy doesn't seem mainstream, so I'd like to have your opinion on that.
    +N.B.: the prefix "java and all else" refers to the fact that I'm using this area to post a message that is related not only to Java but also to other topics (people, processes, tools,...) that help program in Java - so this post is not really off-topic either. For the record, I filed a suggestion to open a dedicated forums to discuss topics like that, although it hasn't received enthusiastic support so far :o(...+
    Here is how I had imagined to proceed:
    - requirements document gets edited and stored as text in the VCS
    - test plan (basically a matrix of which tests cover which requirements) goes into the VCS as well, text or binary
    - test instructions (detailed steps, actions, expected results) are stored as text in the VCS
    - test results - I do'nt know yet, but I planned to store them as text (lists of testId=result) in the VCS (I'm not sure indeed, that those would go into the VCS)
    The advantage of versioning those as text is that all VCS clients support easy-as-a-click history browsing and diff capabilities.
    Diffs and logs are useful to trace when and why a requirement has appeared, evolved, obsolated,... Especially in long-lived systems whose maintenance crew rarely embeds "historical" pioneers who developed the original systems.
    My questions:
    1) Is it good practice to version such docs in the same repository as the code?
    I've never seen this done.
    - In half of the shops I've been these docs are not really versioned (the PM considered it enough that the latest applicable version of the docs was available)
    - The other half has used versioning systems ranging from ad-hoc (shared folder acting as repository of all versions) to "document management systems". I found such tools to be developer-unfriendly (poor diff capability, poor text searching), and developers to be office-document-reluctant (mostly because of the shortcomings of the doc format and doc management systems).
    - The third half <wink to aficionados of French cinema> used dedicated softwares (Test Director, RQM,...) to manage requiremetns, test plans, test cases, test results,... The drawback is that the developers were hardly involved in using such tools, and even when they were, were not trained to use the administrative and metadata capabilities (who modified the test steps, when and why?).
    On the contrary, developers would easily and gladly browse histiry, check diffs, etc... on text documents versioned using their daily-used source control system.
    2) Are there "standard", preferrably text-based, formats, for the documents listed above?
    Each and every organization I've seen had its own format, but most items have equivalents in all organizations, even if disguised under different terminologies. I have no formal education or training in quality assurance, but I guess some ISO or CMM norms define those recurring items, and I expect some abstract XML format might exist
    3) Are there tools already that cover edition and exploitation of such formats, or why not, of the versioning of such formats (naive example, graphing the pass rate of tests over time)?
    A pet project of mine is to develop and open-source some Swing UI to do this, but existing tools would save me the trouble.
    I'm looking forward to reading about your own experience.
    Best regards,
    Jerome.
    Edited by: jduprez on Jun 4, 2010 10:33 PM
    Fixed link.

    I don't have data on comparative bug rates because we did not do studies focused on that. This stuff was mostly driven by convenience #) considerations.
    Subjectively, yes it seemed to have lower bug rate compared to maintaining documents in, say, pdf format (like our doc writers did with User/Dev guides). BTW doc writers are another kind of guys who dislike plain text.
    As for using test results history the way you describe - agree, that makes some sense. Now that you mention it I recall using it myself that way, in one of the projects where testers managed to establish really convenient way to assess test execution history. After I figured how easy it was, I began using it. Quite helpful indeed.
    Regarding "tool or format that mapped tests to specific requirements" in your original post - did you consider Polarion? IIRC it supports mapping requirements to test descriptions. Telelogic DOORS are maybe also capable of that but I am not completely certain.
    #) convenience -- BTW we maintained test descriptions not in plain text but in simple HTML (you know few tags one can use in javadocs). With limited line length, it is almost as VCS friendly as plain text, even with tables:
    <!DOCTYPE "stuff to make HTML validator happy">
    <html><title>test description</title>
    <body>
    <table>
      <tr>
        <td>test id</td>
        <td>synchronized.10988343</td>
      </tr>
      <tr>
        <td>instructions</td>
        <td>
          <ul>
            <li>sacrifice a goat
              <ul><li>under the full moon</li></ul>
            </li>
            <li>twirl counterclockwise
              <ul><li>until you barf</li></ul>
            </li>
        </td>
      </tr>
      <tr>
        <td>pass criteria</td>
        <td>
          <ul>
            <li><b>pass</b> if method is synchronized</li>
            <li><b>fail</b> otherwise</li>
          </ul>
        </td>
      </tr>
      <tr>
        <td>comments</td>
        <td>
           <a href="http://forums.sun.com/thread.jspa?messageID=10988343#10988343">
           click here for details</a>
        </td>
      </tr>
    </table>
    </body>
    </html>
    {code}
    We were also using [HTML validator|http://validator.w3.org/|tool] tool to automatically catch simple syntax mistakes like missing tags.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Pre and Post test Questions

    I have a project that requires a pre-test, post-test and
    knowledge reviews throughout the course. I have created 10 question
    slides (I did not use question pools). I am having two issues occur
    within the course. First I do not want to track or score the
    pre-test questions or the questions embedded within the course what
    I will refer to as Knowledge reviews.
    I do want the user to go through and receive feedback on each
    question answered incorrectly but I do not want a score to be
    collected/tracked or tallied as part of the sum total for the
    course. The post-test questions need to be the only tracked/scored
    questions with that value being submitted to the LMS.
    Currently all the questions are being tallied in the course.
    (i.e test results show 30 questions with a score when there should
    only be 10). What is the best way to include mutiple questions
    within my course (as pre-test and Knowledge reviews) but not have a
    score tracked until the user takes a post test.
    To correct this should I change the pre-test and knowledge
    reviews to a survey type question? Or should I leave the question
    as graded but set the point value to 0. I inially left the pre-test
    and knowldge reviews as graded questions but I deselected Report
    Answers under the reporting tab thinking this would prevent the
    passing of a score, which is not the case.
    If anyone can offer some advice or point me to some
    documentaiton that discusses this I would greatly appreciate any
    help.
    The second issue I have is with the progress indicator within
    the course. Is there a way to revmove this from the quesiton pages.
    My client does not want to see this indicator. The current work
    around I am using is to reduce the font size of the indicator to
    5pt, setting the font color to match my background and then
    positioning the indicator in a set loation on the page. While this
    workaround works I would like to remove it in total if possible.
    Thanks in advance,

    The first part sounds very weird. I just made a project which
    included knowledge checks in the middle of the course and they are
    not tracked in the final test. I used Graded questions in my course
    and I initially set the score per question to 0 points. After I
    found out that they were counted in the question total I removed
    the reporting for each of the questions. Now the points are not
    being counted and also the questions are not being counted in the
    final assesment - I just have the 6 questions out of 6 in the
    post-test even though I have 4 knowledge checks inside the course
    it self.
    Try and click F9 to open up the advanced interaction panel
    and make sure that the answers are not being reported. I know it's
    obvious, but sometimes Captivate does some weird things.
    As for your second question regarding the progress indicator
    you can remove that by going to Quiz - Quiz Preferences - Settings
    and then unchecking the box "Show Progress".
    Best regards,
    Michael

  • XSLT mapping Help Required.

    XSLT mapping Help Required.
    Hi Experts,
    I am New to XSLT Mapping. I am practising the below Example:
    InputXML File:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" href="Persons111.xsl"?>
    <ns0:MT_XSLT_Source xmlns:ns0="http://XYZ.com/gen">
    <Person>
    <FirstName>Anshul</FirstName>
    <LastName>Chowdhary</LastName>
    <Gender>Male</Gender>
    <Address>
    <Street>2nd Main</Street>
    <Houseno>83/b</Houseno>
    <City>Mysore</City>
    </Address> </Person>
    </ns0:MT_XSLT_Source>
    XSL StyleSheet File:
    <?xml version='1.0' encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://XYZ.com/Gen"
    Xmlns:ns1=”http://XYZ.com/Test”>
    <xsl:template match="/">
    <ns1:MT_XSLT_Target>
    <Title> <xsl:value-of select="ns0:MT_XSLT_Source/Person/Gender"/> </Title>
    <Name> <xsl:value-of select="concat(concat(ns0:MT_XSLT_Source/Person/FirstName,' '), ns0:MT_XSLT_Source/Person/LastName)"/>
    </Name>
    <Street> <xsl:value-of select="concat(concat(ns0:Mt_XSLT_Source/Person/Address/Houseno,' '),
    ns0:Mt_XSLT_Source/Person/Address/Street)"/> </Street>
    <City> <xsl:value-of select="ns0:Mt_XSLT_Source/Person/Address/City"/> </City>
    </ns1:MT_XSLT_Target>
    </xsl:template>
    </xsl:stylesheet>
    The Desired Output shuold be:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns1:MT_XSLT_Target xmlns:ns1="http://XYZ.com/Test">
    <Title>Male</Title>
    <Name>Anshul Chowdhary</Name>
    <Street>83/b 2nd Main</Street>
    <City>Mysore</City>
    </ns1:MT_XSLT_Target>
    I have refered the xsl in xml and i am getting the below Oupt in a Single line like this:
    Anshul Chowdhary Male 2nd Main 83/b Mysore
    I am Unable to display in Target XML Fomrat as shown above. Please check and do the needful.
    Regards,
    GIRIDHAR

    Hi,
    I have used below for testing.
    Input xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" href="Persons111.xsl"?>
    <ns0:MT_XSLT_Source xmlns:ns0="http://XYZ.com/gen">
    <Person>
    <FirstName>Anshul</FirstName>
    <LastName>Chowdhary</LastName>
    <Gender>Male</Gender>
    <Address>
    <Street>2nd Main</Street>
    <Houseno>83/b</Houseno>
    <City>Mysore</City>
    </Address> </Person>
    </ns0:MT_XSLT_Source>
    xsl code:
    <?xml version='1.0' encoding="UTF-8"?> 
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="http://XYZ.com/gen" 
        xmlns:ns1="http://XYZ.com/Test"> 
        <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/> 
        <xsl:template match="/"> 
            <ns1:MT_XSLT_Target> 
                <Title> <xsl:value-of select="ns0:MT_XSLT_Source/Person/Gender"/> </Title> 
                <Name> <xsl:value-of select="concat(concat(ns0:MT_XSLT_Source/Person/FirstName,' '), ns0:MT_XSLT_Source/Person/LastName)"/> 
                </Name> 
                <Street> <xsl:value-of select="concat(concat(/ns0:MT_XSLT_Source/Person/Address/Houseno,' '), 
                    /ns0:MT_XSLT_Source/Person/Address/Street)"/> </Street> 
                <City> <xsl:value-of select="/ns0:MT_XSLT_Source/Person/Address/City"/> </City> 
            </ns1:MT_XSLT_Target> 
        </xsl:template> 
    </xsl:stylesheet>
    For testing in PI ,change the extension from .txt to .xsl and zip it and upload into PI as an imported archive .
    Regards
    Venkat

  • Urgent help required: Query regarding LC Variables

    Hi All
    Sometime earlier I was working on a performance issue raised by a customer. It was shell script that was taking almost 8-9 hrs to complete. During my research I came across a fact that there were some variables which were not set, the LC variables were impacting the sort funnel operations because of which the script was taking a long time to execute.
    I asked them to export the following commands, after which the program went on smoothly and finished in a couple of mins:
    export LC_COLLATE=en_US.ISO8859-1
    export LC_MESSAGES=C
    export LC_MONETARY=en_US.ISO8859-1
    export LC_MONETARY=en_US.ISO8859-1
    export HZ=100
    export LC_CTYPE=en_US.ISO8859-1
    export LANG=en_US.UTF-8
    Later I did recover that setting the LC_COLLATE to C, is not helping and the program was again taking a lot of time. Few questions that I want to ask are:
    1. Can someone please tell me, what each of these variable mean and how these values make a difference.
    2. When I exported LC_COLLATE=en_US.ISO8859-1, it worked fine, but when i tried with the defalut value LC_COLLATE=C, then why the program didnt work.
    As this issue is still going on, hence I would request All to provide their valuable inputs and let me know as much as possible.
    Appreciate your help in this regard.
    Thanks
    Amit
    Hi All
    A new development in this regard. The customer has send us a screen shot in which they were trying to export the locale variable using the commands which I have pasted above. I can see in the screen shot that while exporting LC_COLLATE and LC_TYPE, they get a message that ""ksh: export: couldn't set locale correctly"".
    Request everyone to please give their inputs as it's a bit urgent.
    Thanks for all the help in advance.
    Thanks
    Amit
    Some help required please...
    Edited by: amitsinhaengg on Jul 22, 2009 2:03 AM
    Edited by: amitsinhaengg on Jul 22, 2009 2:06 AM

    LC_CTYPE
    Controls the behavior of character handling functions.
    LC_TIME
    Specifies date and time formats, including month names, days of the week, and common full and abbreviated representations.
    LC_MONETARY
    Specifies monetary formats, including the currency symbol for the locale, thousands separator, sign position, the number of fractional digits, and so forth.
    LC_NUMERIC
    Specifies the decimal delimiter (or radix character), the thousands separator, and the grouping.
    LC_COLLATE
    Specifies a collation order and regular expression definition for the locale.
    LC_MESSAGES
    Specifies the language in which the localized messages are written, and affirmative and negative responses of the locale (yes and no strings and expressions).
    You can use command
    # locale -k LC_CTYPE
    to see more detail about each type.

  • Search Help with in a serach help required in SRM 4.0

    Hi,                                                     
    Requirement: Search help required for Product Category field in the Search help for Product(BBPH_PRODUCT) in SRM portal.
    This search help is used in Create shopping Cart transaction. The hyper link on Internal Goods/Services leads to the search help BBPH_PRODUCT. 
    My analysis:           
    The field Product Category (CATEGORY_ID) has search help(COM_CAT_HIER) attached to its data element. When I single test the search help BBPH_PRODUCT in SAP GUI,I can see the search help for field product category in the selection dialogue box. However the same does not appear on the corresponding screen in HTML.
    Please let me know whether I need to do some thing to make the search help appear on the HTML screen?
    With Regards,         
    Prakash Kamath

    Hi Prakash,
    I have the same problem but with another field. Unloading point. Could you please tell me how did you solve this problem with displaying F4 help on html/ SRM portal?
    Thank you very much.
    Best regards,
    Danijela ZIvanovic

  • Help required in Weblogic 6 - Creation & Configuration of Web Application

    Forum Home > Enterprise JavaBeans[tm]
    Topic: Help required in Weblogic 6 - Creation & Configuration of Web Application
    Duke Dollars
    2 Duke Dollars assigned to this topic. Reward the best responses to your question
    using the icons below, or transfer additional Duke Dollars to this topic.
    Welcome moinshariff!
    Watching this topic.
    Previous Topic Next Topic
    This topic has 1 reply on 1 page (Most recent message: Jan 23, 2002 1:05 AM)
    Author: moinshariff Jan 22, 2002 4:55 AM
    Hi,
    I am using Weblogic 6. I have created a new Web
    Application called Web (I have not used the DefaultWebApp_myserver).
    And I have the following settings:
    Name : Web
    URI : Web
    and Path : C:\Web
    and placed my JSP files under c:\Web\
    I am able to access the first page, but after that I am not able to access the
    second page.
    I get "Error 404--Not Found" on the browser. Basically the class file is not getting
    created under /Web-inf/_tmp_war_myserver_myserver_Web/jsp_servlet/ folder .
    I tried a work around for this. I copied all my files under one more folder called
    web and placed this under C:\Web
    The it works. Now I have 2 copied off all the files, 1 copy under c:\web and another
    copy under c:\web\web\.
    If I have the files under DefaultWebApp_myserver and have the setting as
    Name: DefaultWebApp_myserver
    URI: DefaultWebApp_myserver
    Path: .\config\mydomain\applications
    everything works fine.
    Can any one please let me know if there is any configuration which has to be done
    so that I do not duplicate the code in 2 directories
    Thanks in advance.
    Regards,
    Moin

    Forum Home > Enterprise JavaBeans[tm]
    Topic: Help required in Weblogic 6 - Creation & Configuration of Web Application
    Duke Dollars
    2 Duke Dollars assigned to this topic. Reward the best responses to your question
    using the icons below, or transfer additional Duke Dollars to this topic.
    Welcome moinshariff!
    Watching this topic.
    Previous Topic Next Topic
    This topic has 1 reply on 1 page (Most recent message: Jan 23, 2002 1:05 AM)
    Author: moinshariff Jan 22, 2002 4:55 AM
    Hi,
    I am using Weblogic 6. I have created a new Web
    Application called Web (I have not used the DefaultWebApp_myserver).
    And I have the following settings:
    Name : Web
    URI : Web
    and Path : C:\Web
    and placed my JSP files under c:\Web\
    I am able to access the first page, but after that I am not able to access the
    second page.
    I get "Error 404--Not Found" on the browser. Basically the class file is not getting
    created under /Web-inf/_tmp_war_myserver_myserver_Web/jsp_servlet/ folder .
    I tried a work around for this. I copied all my files under one more folder called
    web and placed this under C:\Web
    The it works. Now I have 2 copied off all the files, 1 copy under c:\web and another
    copy under c:\web\web\.
    If I have the files under DefaultWebApp_myserver and have the setting as
    Name: DefaultWebApp_myserver
    URI: DefaultWebApp_myserver
    Path: .\config\mydomain\applications
    everything works fine.
    Can any one please let me know if there is any configuration which has to be done
    so that I do not duplicate the code in 2 directories
    Thanks in advance.
    Regards,
    Moin

  • VSTS load test QUESTION : While recording the webPerformanceTest, is it is possible to clear / force to clear cachewithout stopping or closing the IE on recorder?

    VSTS load test QUESTION : While recording the webPerformanceTest, is it is possible to clear / force to clear cache without stopping or closing the IE on recorder?
    I am facing issue, while recording the webtest, our application first time loading any screen calls some requests and 2nd time when browsed the same information if it is available at cache then it will not
    call the requests again.
    How can i force the VSTS to clear cache while recording, so that i can record those requests which gets called at the first time.
    Regards
    SatishK

    Hi SatishK,
    Thanks for your reply.
    >>but my question was while recording (During recording using web test recorder) i want to clear cache.
    Based on your issue,
     I did some research about it,
    but I still find the official document about it. Generally, I know that if we want to clear the web performance test by the
    Cashe Control properties, so I think that it is not possible to clear the cashes when we are recording the web performance.
    If you still want to this feature for web performance test, I suggest you could submit this feature request:
    http://visualstudio.uservoice.com/forums/121579-visual-studio. The Visual Studio product team is listening to user voice there. You
    can send your idea there and people can vote. If you submit this suggestion, I hope you could post that link here, I will help you vote it.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Setting a Conditional Action for Pre-Test questions: Skipping Content Slides

    OK boys and girls, let's see if this is even possible within one course SCO, or if this a multi-SCO solution (which means I'm toast, because we don't have the multi-SCO aggregator)?
    I want to set up a prescriptive pre-test. In my ideal world, answers to each individual question would either enable or disable the content slides connected to the question. If the user passes the pre-test, they could opt to skip the prescriptive stuff and complete the course. If the user fails the pretest, they would have to view the enabled content.
    Is this even possible in a single SCO world?
    Justenuf

    Jim belongs in that pantheon of good guys as well, so many here have pointed me in the right direction and helped me move forward with the capabilities of this software. And, in that spirit - here's my work around for the pretest/post test in a SCORM 1.2 environment:
    Created an entrance slide that allows opting totake the pretest or not - but only allows you to take it once.
    Created one test (take off the question x of x widget) split it and slide the content in between it. In this case, 10 questions with 5 in each set.
    Titled the first set of questions as a PreTest and the second set as a Post Test.
    Set my passing score at 4 correct. (the user only needs to get 4 out 5 on either set correct to pass - and I'm setting up an action that only allows the user to see the questions they missed if they fail the pretest.)
    Created variables for each "pretest" question and set them at 0. Created on Enter advanced actions on each slide following a question that toggled the variable to 1 if the question was answered correctly  if "CpQuizInfoLastSlidepointScored is equal to 1" then "Assign Question<x> with 1"
    Created an On Enter advanced action for each content area slide "Skip #" that allowed prescription:
    "If Question # is equal to 1 or cpQuizInfoPassFail is equal to 1, then Go to Next Slide"
    Only the content connected to the missed questions in the pretest is seen.
    Copied the same On Enter advanced action the Post test questions and renamed it "SkipPost #" that allowed prescription:
    "If Question # is equal to 1 or cpQuizInfoPassFail is equal to 1, then Go to Next Slide"
    Only the questions related to the reviewed content are seen
    The sum total of these activities is the following -
    The user can choose to take the pretest and complete the course by gettiong 4 or 5 questions correct and jump to the exit page.
         If the user takes the pretest and scores lower than 80%, the content for the missed questions is viewed and the user must answer the questions regarding
         that content. The user passes the course when he/she answers the fourth question correctly.
    The user can choose to view the content, take the post test and pass the course by answering 4 of 5 correctly.
    it's running right in preview, in web browser preview and on my LMS previewer, with one navigation error.
          the error: after failing the pretest, taking the prescribed content and anse wering the questions correctly, the course occasionally jumps to the results page
         and s displays a failure message, then freezes in place. it does NOT happen each time, which is why I am cy urrently scurrying back to my happy place to dwell
         on this mystery awhile.
    Justenuf

  • HT1711 i wanted to buy music from itune, but when i log in, it said i should answer my email test question, and i have already forgoting it. please what can i do?

    i wanted to buy music from itune, but when i log in, it said i should answer my email test question, and i have already forgoting it. please what can i do?

    If you've forgotten the answers to your security questions and you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then you can try going to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then see if this user tip helps : https://discussions.apple.com/docs/DOC-4551
    e.g. you can try contacting iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management , and then try Apple ID Account Security
    or try ringing Apple in your country and ask to talk to the Accounts Security Team : http://support.apple.com/kb/HE57

  • Help required - Sales order item is partially delivered but the item grayed

    I have a sales order 123 having say item10 with qty 1, item20 with qty 10 , item 30 qty 12
    Item 1 confirmed qty 1 and delivered qty is 1
    Item 2 confirmed qty 10 and delivered qty 10
    Item 3 confirmed qty 1 and delivered qty is 1
    Now the item3 still has open requirements of 11 to be delivered. But the item is GRAYED OUT already.
    even if I do ATP the qty is not confirming for the remaining 11 pieces.
    Why is that? How to make that item out from GRAY.
    How to confirm the remaining 11 qty for that item.
    Help required as early as possible.
    Appreciate ur help guys
    Radha

    hi Radha, how are you ?
         ---the partial deliveries in master data must have not been mentioned.
         ---the deliveries should be upto target quantity.
         ---check order type, item category and schedule line category.
         ---check unrestricted stock availability.
    thank you
    regards
    Khera.

Maybe you are looking for