A00-205  Exam

Exam # of questions Description  Update
A00-205 45 A00-205... 02/15/2011
[Practice Test]   [Download Study Guide(PDF)]  [Update Exam]

A00-205 - Exam Information
  • Description:Sas webaf server-side application development
  • Passing Score:75%
  • Practice Test - Number of questions:45 questions
  • Simulation Test - Number of questions:45 questions
  • Simulation Test Duration:90 minutes
  • Has explanations:No

Question of the day

The following code is part of a servlet that updates data: com.sas.rmi.Rocf rocf = new com.sas.rmi.Rocf(); com.sas.rmi.Connection con = new com.sas.rmi.Connection(); corn.sas.rmi.Connection .setServerArchitecture(con ?PC?); com.sas.sasserver.dataset.DataSetinterface dataset = null; try{ dataset = (com.sas.sasserver.dataset.DataSetlnterface) rocf.newlnstance( com.sas.sasserver.dataset.DataSetlnterface class, con); dataset.setDataSet(?sashelp class?); } catch (Exception ex) {} try { dataset.setCell(1, 1. ?Pete?); } catch (com.sas.table.TableExceptionte) String rnessage = te.getMessage(); out.println(rnessage); } What is the outcome of this servlet code being executed?

Answer(s)

  1. - The connection fails because ?PC? is not a supported server architecture.
  2. - The error rnessage ?Model is not opened in update mode? is written to the web page.
  3. - The table is not updated because the cormmitRow() method is not called on the model.
  4. - The value of the first cell in the SASHELP.CLASS table is updated with the value ?Pete?.
Correct Answer

- The error rnessage ?Model is not opened in update mode? is written to the web page.