



Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
The doccument covers both frontend languages and frameworks
Typology: Lecture notes
1 / 7
This page cannot be seen from the preview
Don't miss anything!
1)List the properties of CSS Animation A) The properties of CSS Animation are:
Arrow function is one of the features introduced in the ES6 version of JavaScript. It allows you to create functions in a cleaner way compared to regular functions. The syntax of the arrow function is: let myFunction = (arg1, arg2, ...argN) => { statement(s) } Here, myFunction is the name of the function. arg1, arg2, ... argN are the function arguments. 4)What is the purpose of Statement class? A) The statement interface is used to create SQL basic statements in Java it provides methods to execute queries with the database. There are different types of statements that are used in JDBC as follows: Create Statement Prepared Statement Callable Statement 5)What is the purpose of XML parser? A) XML parser is a software library or a package that provides interface for client applications to work with XML documents. It checks for proper format of the XML document and may also validate the XML documents.
Methods: Public boolean next(): Used to move the cursor to the one row next from the current position. Public boolean previous(): Used to move the cursor to the one row previous from the current position. Public boolean first(): Used to move the cursor to the first row in result set object. Public boolean last(): Used to move the cursor to the last row in result set object. 10)What is well formed document in XML? A well formed document:
As a framework, Bootstrap includes the basics for responsive web development, so developers only need to insert the code into a pre-defined grid system. The Bootstrap framework is built on Hypertext Markup Language (HTML), cascading style sheets (CSS) and JavaScript. 13)Illustrate a few jQuery effects. animate() method performs a custom animation of a set of CSS properties. $(“button”).click(function(){ $(“#box”).animate({height: “300px”}); }); show() method shows the hidden, selected elements. $(“button”).click(function(){ $(“p”).show(); }); fadeIn() method gradually changes the opacity, for selected elements, from hidden to visible $(“button”).click(function(){ $(“p”).fadeIn(); }); stop() method stops the currently running animation for the selected elements. $(“#stop”).click(function(){ $(“div”).stop(); });
myCallback(sum); } myCalculator( 5 , 5 , myDisplayer);