• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
projectsgeek

ProjectsGeek

Download Mini projects with Source Code, Java projects with Source Codes

  • Home
  • Java Projects
  • C++ Projects
  • VB Projects
  • PHP projects
  • .Net Projects
  • NodeJs Projects
  • Android Projects
    • Project Ideas
      • Final Year Project Ideas
      • JSP Projects
  • Assignment Codes
    • Fundamentals of Programming Language
    • Software Design Laboratory
    • Data Structure and Files Lab
    • Computer Graphics Lab
    • Object Oriented Programming Lab
    • Assembly Codes
  • School Projects
  • Forum

Software Development Tools Lab

Software Development Tools Lab TE(Sem-II) practical Assignments

July 1, 2012 by ProjectsGeek Leave a Comment

Software Development Tools Lab

Software Development Tools Lab TE(Sem-II) practical Assignments 1

Click the Assignment to visit the Page 
  • To perform String operations using java such as calculating length of string, lowercase and uppercase conversions, concatenation of strings, reverse the string etc. Accept the String from user(Core Java).
  • Design Notepad in Java with various Menus and Submenus(AWT or Swings).
    • Write a program in Java that enters student details (Roll No, Name etc) and retrieves information. Use Access as a database and write the application in JDBC(AWT or JFame).
    • Implement Chatting between two users using RMI(Advanced java – RMI).
    • Assignment to design form taking all student details and storing in a database using Servlets and JSP and display all stored data in above tables in JSP  (Advanced java – JSP).
    • Assignment to display data present in XML by using XML DSO(XML).
    • Write a program to accept two names as command line parameters. Check whether each of them exists in C:java, if it exists, display its name, size and contents of the file, else display the message that file not present. Further if the file name is .html, delete the file(Java IO).
    • Design an applet that displays the string “Hello College Name” moving from left to right. When it reaches to right, it scrolls back to left.
    • Write an Applet that crease a working version of “fifteen puzzle”. The puzzle contains a grid with 4 rows and 4 columns. The cells are filled with 1 to 15 leaving one cell empty. On clicking the mouse on a cell adjacent to the empty cell, the number in the cell moves to the empty cell. The puzzle is completed when the user arranges the numbers in the cells in ascending order(AWT and Applet).

      Other Projects to Try:

      1. Write an Applet that crease a Working Version of Fifteen Puzzle in Java
      2. To Perform File Handling in Java
      3. File Handling and IO Handling in Java Programming
      4. Software Design Laboratory Assignments
      5. Website Testing Tools

      Filed Under: Software Development Tools Lab

      Display data present in XML Assignment by using XML DSO.

      July 1, 2012 by ProjectsGeek Leave a Comment

      XML Assignment by using XML DSO

      AIM:

      Assignment to display data present in XML by using XML DSO.


      THEORY:

      Two types of markup languages are present. Specific Markup Language is used to generate code that is specific to a particular application. While Generalized markup language describes the structure & meaning of the text in a document. (Portable) HTML & RTF are used in web document & text document.


      XML is developed by W3C (W3 Consortium) to overcome shortcomings of HTML. It is defined as a set of standards to exchange & publish information in a structured manner.

      Difference Between HTML & XML

      HTML

      XML

      Used to display data and to focus on how data looks

      Used to describe data and to focus on what data is.

      HTML tags are predefined.

      XML tags are not predefined user have to define its own tags. XML uses DTD to describe the data.

      HTML is used to modify the look of web page & formatting of text.

      XML is used to store & send information.

      HTML is the foundation of the web

      XML is a common tool for all data manipulation & data transmission.

      Data is stored inside HTML files

      Data can be stored in separate XML files.


      vishal

      Manisha

      Reminder

      Do Not Forget to meet me at PremiGarden at 7 o’clock


      User have to write a software  to send it, receive it & display it.


      XML is free & extensible. XML is a complement to html. XML is not a replacement for html. XML is cross-platform software & hardware independent tool for transmitting information. XML is used to exchange data between systems ( computer systems & database contain data in incompatible formats) over the net. Converting the data to XML can greatly reduce this complexity & create data that can be read by many different types of applications.

      With XML financial information can be exchanged over the net.(B2B). XML is independent of Hardware, software & application, data can be available to more than only standard HTML browsers. Other clients & applications can access files as data sources like they are accessing databases. XML is the mother of WAP & WML. (Wireless Markup Language) WML is used to markup internet applications for handheld devices like mobile phones is written in XML. XML is plane text with just addition of some XML tags enclosed in angle brackets. Software that can handle plain text cal also handle XML.


      Rules For XML:

      • XML have a closing tag. XML can also use HTML tags but closing tags should be present.

      • XML tags are case-sensitive.

      • XML tags must be properly nested.

      • XML document must have a root tag. All other elements must be nested within the root element.

               

                                              

               


      Attributes values must be quoted.

      < note date=”12-11-2002”>


      With XML white space is preserved ( not truncated). With XML CR / LF is converted to LF. A new line is always stored as LF (line feed) ( windows: CR LF / Unix: LF) XML elements are extensible & they have relationships. XML elements have simple naming Rules.


               

                Introduction To XML

                                          

                                          


      book is the root element. Title & chapter are child elements. Title & chapter are siblings (sister elements) because they have same parent.

      Data Source Objects(DSO)