Monday, 17 September 2018

JSP

What is JSP?

  • Java Server Pages (JSP) is a technology which is used to develop web pages by inserting Java code into the HTML pages by making special JSP tags. The JSP tags which allow java code to be included into it are <% ----java code----%>.
  • It can consist of either HTML or XML (combination of both is also possible) with JSP actions and commands.
  • It can be used as HTML page, which can be used in forms and registration pages with the dynamic content into it.
  • Dynamic content includes some fields like dropdown, checkboxes, etc. whose value will be fetched from the database.
  • This can also be used to access JavaBeans objects.
  • We can share information across pages using request and response objects.
  • JSP can be used for separation of the view layer with the business logic in the web application.

Here is what we cover in the Course

 TutorialJSP Life Cycle
 TutorialInstall JSP with Jboss Server & Java
 TutorialJSP Elements - JSP Declaration, JSP Syntax, JSP Expression, JSP Comments
 TutorialJSP Directives: Page Include & Taglib Complete Tutorial
 TutorialJSP Implicit Objects: Complete Tutorial
 TutorialJsp Action Tags: useBean, include, forward
 TutorialJSP Expression Language (EL)
 TutorialJSP Exception Handling - Checked Exception, Runtime Exception, Errors Exception
 TutorialJSP MVC
 TutorialJSP Tag Library - JSTL Core & JSP Custom Tags
 TutorialJSP Client Request, Server Response & HTTP Status Codes
 TutorialJSP Cookies Handling with Example
 TutorialJSP Form Processing Using getParameter()
 TutorialJSP Filter Mapping in Web.xml
 TutorialJSP Current Date and Time
 TutorialJSP database connection
 TutorialJSP Program Examples: Registration & Login Form
 TutorialJSP Program Examples: File Upload and Download
 TutorialDebug JSP Using Java Logger, Println statements & Debugging tools

Python Tutorial for Beginners: Learn Programming in 7 Days

Python is an object-oriented programming language created by Guido Rossum in 1989. It is ideally designed for rapid prototyping of complex applications. It has interfaces to many OS system calls and libraries and is extensible to C or C++. Many large companies use the Python programming language include NASA, Google, YouTube, BitTorrent, etc.
Python is widely used in Artificial Intelligence, Natural Language Generation, Neural Networks and other advanced fields of Computer Science. Python had deep focus on code readability & this class will teach you python from basics.

Here is what we cover in the Course

 TutorialHow to Install Python on Windows with Pycharm IDE
 TutorialHello World: Creat your First Python Program
 TutorialPython Main Function with Examples: Understand __main__
 TutorialPython Variables: Declare, Concatenate, Global & Local
 TutorialPython Strings: Replace, Join, Split, Reverse, Uppercase & Lowercase
 TutorialPython TUPLE - Pack, Unpack, Compare, Slicing, Delete, Key
 TutorialPython Dictionary(Dict): Update, Cmp, Len, Sort, Copy, Items, str Example
 TutorialPython Operators: Arithmetic, Logical, Comparison, Assignment, Bitwise & Precedence
 TutorialPython Functions Examples: Call, Indentation, Arguments & Return Values
 TutorialPython IF, ELSE, ELIF, Nested IF & Switch Case Statement
 TutorialPython For & While Loops: Enumerate, Break, Continue Statement
 TutorialPython OOPs: Class, Object, Inheritance and Constructor with Example
 TutorialPython Regex Tutorial: re.match(),re.search(), re.findall(), re.split()
 TutorialPython DateTime, TimeDelta, Strftime(Format) with Examples
 TutorialPython CALENDAR Tutorial with Example
 TutorialPython File Handling: Create, Open, Append, Read, Write
 TutorialPython Check If File or Directory Exists
 TutorialPython COPY File using shutil.copy(), shutil.copystat()
 TutorialPython Rename File and Directory using os.rename()
 TutorialPython ZIP file with Example
 TutorialPython Internet Access using Urllib.Request and urlopen()
 TutorialPython XML Parser Tutorial: Read xml file example(Minidom, ElementTree)
 TutorialPython vs JAVA vs PHP vs PERL vs Ruby vs JavaScript vs C++ vs TCL
 TutorialTop 40 Python Interview Questions & Answers