Posts

Image
Tutorial 10 – Client-side development 1 - jQuery 1. Is jQuery a framework or a library? Discuss.  jQuery: It's a library, not a framework Is jQuery a JavaScript library? jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. 2. Explain the features provided by jQuery?  JQuery Features Simple and easy : It have predefined method using you can perform any task easily compare to JavaScript. And it is easy to learn. Lightweight : It is very lightweight library - about 19KB in size ( Minified and gzipped ). CSS manipulation : It have predefined css() method for manipulate style for any Html elements. Html manipulation : The jQuery made it easy to select DOM elements, traverse them and modifying their content. Cross browser support : It support all modern web-browser including IE-6...

Programming applications and frameworks

Image
1. What are the main elements of client-side application components of distributed systems?  Views – what users see (mainly GUIs)  Controllers – contain event handers for the Views  Client-model – Business logic and data        2. Discuss the Views development technologies for the browser-based client-components of web-based applications  3. Discuss the Controller development technologies for the browser-based client-components of web-based applications  Model–View–Controller (usually known as MVC) is an architectural pattern commonly used for developing user interfaces that divides an application into three interconnected parts. This is done to separate internal representations of information from the ways information is presented to and accepted from the user.[1][2] The MVC design pattern decouples these major components allowing for efficient code reuse and parallel development. Traditionally used for desktop graphical user in...