XML题

1、写一个方法实现下述功能,返回一个包含某一字符串中所有奇数位字符的字符串。  
        例如:ahbhchdheh       返回结果   abcde  
                    xaybz                 返回结果   xyz   
        
  for(int   i=0;i  {  
          if(i%2!=0)   
       out.println(str.charAt(i));   

  }
  2、数据库题:有一学生表student(student_id,student_name)和一张图书借阅表books_loaned(student_id,book_number),请通过sql语句查找出从未借过一本书的学生的列表(请使用not   exist关键字)   
    select   *   from   student   where   student_id   not   in(select   student_id   from   books_loaned
  3、html&javascript题:请在下面的html中添加一个文本输入框(age)和一个提交按钮,同时添加javascript判断:当输入age大于80时,给出javascript提示信息。  
   
   
   
   
   
   
   
 

 
   
   
   
 
 
   
   
   
  servlet题:  
  ⑴如果没有age参数给出,下面的语句会产生什么结果?  
  <%   String   s=request.getParameter("age");  
        out.println(s);   %>  
  A.NullpointerException   occurs  
  B.Page   compiles   but   there   is   no   output  
  c.ServletException   occurs  
  d.null   is   printed   on   screen  
   
  ⑵下面方法中哪几是servlet的生命周期方法()  
  A.init()  
  B.initial()  
  C.service()  
  D.delete()  
  E.destrey()  
   
  XML题:  
  ⑴结构良好的XML和有效的XML有什么不同?  
  ⑵SAX和DOM的主要区别是什么?  

http://topic.csdn.net/t/20041030/14/3505998.html#

你可能感兴趣的:(XML题)