SlideShare a Scribd company logo
1 of 6
Web Review
Exam Specification
- Covers:Javascript,jQuery,andAjax
- MCQs : 20 items
- Fillingthe gaps: : 5 items
- Questions : 5 items
- Exercise : 2 items
Lesson1: JavaScript
I. JavaScriptWindow
1. What isJavaScriptWindow?Whywe use JavaScriptWindow?
2. How manymethodsof JavaScriptWindow?Whatare they?
There are 4:
- window.open() - openanew window
- window.close() - close the currentwindow
- window.moveTo() -move the currentwindow
- window.resizeTo() -resizethe currentwindow
Reference:http://www.w3schools.com/js/js_window.asp &Textbook(page 103 & 104)
II. JavaScriptWindowScreen
1. Compare twopairsof itsproperties?
screen.width [screenonusersaw]
screen.height
VS
screen.availWidth [screen+nav(browser)]
screen.availHeight
Reference:http://www.w3schools.com/js/js_window_screen.asp &Textbook
III. JavaScriptWindowLocation
1. What isJavaScriptWindowLocation?WhenandWhy we use it?
The window.locationobjectcanbe usedto get the currentpage address(URL) and to
redirectthe browsertoa new page.
2. How manymethodsof window.location?
There are 6 methods:
- window.location.href returnsthe href (URL) of the currentpage
- window.location.hostnamereturnsthe domainname of the webhost
- window.location.pathnamereturnsthe pathandfilename of the currentpage
- window.location.protocol returnsthe webprotocol used(http://orhttps://)
- window.location.assignloadsanew document
- window.location.portreturnsthe portof the webhost(80 or 443)
3. To loada new document,whichmethod isused?
 window.location.assign
Reference:http://www.w3schools.com/js/js_window_location.asp &Textbook
IV. JavaScriptPopupBoxes
1. How manypopupboxesinJavaScript?
 There are 3:
- Alert Box: Analertbox is oftenusedif youwantto make sure information
comesthroughto the user.When analertbox popsup, the userwill have toclick
"OK"to proceed.
- ConfirmBox: A confirmbox isoftenusedif youwant the userto verifyoraccept
something. Whenaconfirmbox popsup,the userwill have toclickeither"OK"
or "Cancel"to proceed. If the userclicks"OK",the box returnstrue.If the user
clicks"Cancel",the box returnsfalse.
- Prompt Box: A confirmbox isoftenusedif youwant the userto verifyoraccept
something.Whenaconfirmbox popsup,the userwill have toclickeither"OK"
or "Cancel"to proceed.If the userclicks"OK",the box returnstrue.If the user
clicks"Cancel",the box returnsfalse.
Reference:http://www.w3schools.com/js/js_popup.asp &Textbook
V. JavaScriptTimingEvents
1. What isJavaScriptTimingEvents?
2. What are the twokeymethods? How Syntax & Parameterslooklike?
a. setTimeout(function, milliseconds)
Executes a function, after waiting a specified number of milliseconds.
b. setInterval(function, milliseconds)
Same as setTimeout(), but repeats the execution of the function continuously.
3. How to stopthe executionof JavaScriptTimingEvents?(Please note:we cannotuse stop()
methodsonthiscontext)
 There are twomethods
- window.clearTimeout(timeoutVariable):stopsthe executionof the function
specifiedinsetTimeout().
- window.clearInterval(timerVariable):stopsthe executionsof the function
specifiedinthe setInterval() method.
Reference:http://www.w3schools.com/js/js_timing.asp &Textbook
Lesson2: jQuery
1. What isjQuery?WhyjQuery?
2. How to use jQuery?
 DownloadfromjQuery.com
 ImportCDN
3. Why dowe use $(document).ready?
4. How manyjQueryselector?
 There are 4:
- Tag name
- Class
- Id
- Currentelement(orcalled“this”)
5. What are differencesbetween(Hide/Show) and(Fade in/Fade out)?
6. Why dowe use toggle?
7. How manyparametersof toggle?
 There are 2 : speed&callback
8. How manyFadingmethods?
 There are 4:
- fadeIn()
- fadeOut()
- fadeToggle()
- fadeTo()
9. Please describeparameterof Fadingmethods?
 OnlyfadeTo() contains3parameters: $(selector).fadeTo(speed, opacity,callback)
10. What isanimation?Whydo we use animation?
11. Please describeitsparameter? $(selector).animate({param},speed,callback)Whichparameters
are requiredandwhichare optional?
12. We are supposedtoanswerthe resultof animationcoding.
For example,left=200 & opacity= 0.5. Please choose the rightanswerasbelow.Thingslike that
13. What isjQuerystop() method?
 It isusedto stop animationsoreffectsbefore itisfinished.
14. How manyjQuerystopmethods?
There are 3:
- stop():stopscurrentanimation
- stop(true):stopall animation
- stop(true,true):stopsall animationbutfinishthe currentanimation
15. How manyjQueryGetcontentmethods?
 There are 3:
- text()
- html()
- val()
16. What methodtoget or setattribute?
 attr()
17. How manyjQuerySetcontentmethods?
 There are 3:
- text()
- html()
- val()
18. How manymethodsusedto add elements?
 There are 4:
- append() - Insertscontentatthe endof the selected elements
- prepend() - Insertscontentatthe beginningof the selectedelements
- after() - Insertscontentafterthe selectedelements
- before() - Insertscontentbeforethe selectedelements
19. How to remove elementandcontentinjQuery?
 There are twomethods
- remove() - Removesthe selectedelement(anditschildelements)
- empty() - Removesthe childelementsfromthe selectedelement
20. CSS syntax?(Pleasefocusonlyoncssmethod() andproperty())
21. Please explainDimensionmethods(Oneof themwill be appearedinexam)
- width() [nopadding,border,margin]
- height()
- innerWidth()[padding]
- innerHeight()
- outerWidth()[border,margin]
- outerHeight()
22. Traversingwill be appearedinexercisepartonly.
23. What isAncestor?Howmany methodsare there?(father)
 There are 3:
- parent() [selectparent ]
- parents() [selectall parents]
- parentsUntil()[selectbetween]
24. What isFiltering?There are 3 methods:
The three most basicfilteringmethodsare first(),last()andeq(),whichallow youtoselecta
specificelementbasedonitspositioninagroupof elements.
Otherfilteringmethods,like filter() andnot() allow youtoselectelementsthatmatch,or do not
match, a certaincriteria.
Lesson3: Ajax
1. What isAJAX? Is update partof webpage withoutreloadingpage.
AJAX= AsynchronousJavaScriptXML.
Create fastand dynamicwebpage.
2. How manystepsto accessAJAX? (There are 6 steps)
- Browsercreatesan XMLHttpRequestobject
- BrowsersendsHttpRequesttoserver
- Serverreceive andthenprocessHTTPRequest
- Servercreatesa response andsendsdataback to the browser
- Browserreceivesandprocessesthe returneddatausingJavaScript
- Browserupdatespage content
Please notice:To access AJAX, Internetis needed.
3. AJAXXMLHttp Create Object – How to create object? (Pleaselookatpage 68)
4. AJAXXMLHttp Response –There are twoproperties(Please lookatpage 77)
5. AJAXXMLHttp readyState – There are three properties(Pleaselookatpage
79)(onreadystatechange(functioncall whenreadystate propertieschange),readyState(0,not
initialized,1,establishconnection,2, requestreceive ,3,processrequest, 4 requestfinishand
response already),status(200= page notfound))
6. AJAXXMLHttp readyState istriggeredeverytimethe readState changes.
7. Please rememberthe descriptionof propertyvalueof readyState &status
For example,0:requestnotinitialized(readyStateproperty)
200: “OK”
404: Page notfound
500: Servererror
Please goback topage 49 of textbook
8. What isjQueryLoad? Howto use it? Please write its syntax?(Page49)
9. Compare GET vsPOST method?(Pleaselookatpage 52 – the bulletparts)
For example,GETrequestscanbe cached.Thingslike that
10. What isjQuerynoConflict()?Please pay muchattentionwithitsSyntax?
11. jQueryReferences –Please lookatthe methodsthatwe have learntandfrequentlyused(If you
can rememberall of them,youare verycool. Actually,we are not supposedto memorize all of
them)
Exercises:There are two:
1. The big one:
- Write jQueryof exercise thatwe didin JavaScript(Node Creation):Pleasego
throughthe homeworkof JavaScriptfromnode creationuntil the end.
- jQueryHomeworkthatcontains3 exercises(Slide,image_slide,image_flow)
2. Teachersaidthat “The lastone is supposedtobe small andeasiest”
- Traversing(We mustknow how to use itsmethodsproperly)
- Ancestor
- Descendants
Please notice:Everythingmustbe writteninjQuery.(Forexample,we have touse css() methodtostyle
the elementsinjQuery)
================================ The End =============================================
Good luckand Thanks 

More Related Content

Similar to Web review

Server side programming bt0083
Server side programming bt0083Server side programming bt0083
Server side programming bt0083Divyam Pateriya
 
[xp2013] Narrow Down What to Test
[xp2013] Narrow Down What to Test[xp2013] Narrow Down What to Test
[xp2013] Narrow Down What to TestZsolt Fabok
 
Experienced Selenium Interview questions
Experienced Selenium Interview questionsExperienced Selenium Interview questions
Experienced Selenium Interview questionsarchana singh
 
Hadoop cluster performance profiler
Hadoop cluster performance profilerHadoop cluster performance profiler
Hadoop cluster performance profilerIhor Bobak
 
Top 45 jQuery Interview Questions and Answers | Edureka
Top 45 jQuery Interview Questions and Answers | EdurekaTop 45 jQuery Interview Questions and Answers | Edureka
Top 45 jQuery Interview Questions and Answers | EdurekaEdureka!
 
OBJECT ORIENTED PROGRAMMING LANGUAGE - SHORT NOTES
OBJECT ORIENTED PROGRAMMING LANGUAGE - SHORT NOTESOBJECT ORIENTED PROGRAMMING LANGUAGE - SHORT NOTES
OBJECT ORIENTED PROGRAMMING LANGUAGE - SHORT NOTESsuthi
 
JAVASCRIPT TDD(Test driven Development) & Qunit Tutorial
JAVASCRIPT TDD(Test driven Development) & Qunit TutorialJAVASCRIPT TDD(Test driven Development) & Qunit Tutorial
JAVASCRIPT TDD(Test driven Development) & Qunit TutorialAnup Singh
 
Web Component Development Using Servlet & JSP Technologies (EE6) - Chapter 9...
 Web Component Development Using Servlet & JSP Technologies (EE6) - Chapter 9... Web Component Development Using Servlet & JSP Technologies (EE6) - Chapter 9...
Web Component Development Using Servlet & JSP Technologies (EE6) - Chapter 9...WebStackAcademy
 
Java Concurrency and Asynchronous
Java Concurrency and AsynchronousJava Concurrency and Asynchronous
Java Concurrency and AsynchronousLifan Yang
 
Testing Ext JS and Sencha Touch
Testing Ext JS and Sencha TouchTesting Ext JS and Sencha Touch
Testing Ext JS and Sencha TouchMats Bryntse
 

Similar to Web review (20)

Server side programming bt0083
Server side programming bt0083Server side programming bt0083
Server side programming bt0083
 
[xp2013] Narrow Down What to Test
[xp2013] Narrow Down What to Test[xp2013] Narrow Down What to Test
[xp2013] Narrow Down What to Test
 
Experienced Selenium Interview questions
Experienced Selenium Interview questionsExperienced Selenium Interview questions
Experienced Selenium Interview questions
 
WEB TECHNOLOGIES Servlet
WEB TECHNOLOGIES ServletWEB TECHNOLOGIES Servlet
WEB TECHNOLOGIES Servlet
 
Hadoop cluster performance profiler
Hadoop cluster performance profilerHadoop cluster performance profiler
Hadoop cluster performance profiler
 
Top 45 jQuery Interview Questions and Answers | Edureka
Top 45 jQuery Interview Questions and Answers | EdurekaTop 45 jQuery Interview Questions and Answers | Edureka
Top 45 jQuery Interview Questions and Answers | Edureka
 
J2EE-assignment
 J2EE-assignment J2EE-assignment
J2EE-assignment
 
OBJECT ORIENTED PROGRAMMING LANGUAGE - SHORT NOTES
OBJECT ORIENTED PROGRAMMING LANGUAGE - SHORT NOTESOBJECT ORIENTED PROGRAMMING LANGUAGE - SHORT NOTES
OBJECT ORIENTED PROGRAMMING LANGUAGE - SHORT NOTES
 
groovy & grails - lecture 7
groovy & grails - lecture 7groovy & grails - lecture 7
groovy & grails - lecture 7
 
JAVASCRIPT TDD(Test driven Development) & Qunit Tutorial
JAVASCRIPT TDD(Test driven Development) & Qunit TutorialJAVASCRIPT TDD(Test driven Development) & Qunit Tutorial
JAVASCRIPT TDD(Test driven Development) & Qunit Tutorial
 
Asp.net mvc
Asp.net mvcAsp.net mvc
Asp.net mvc
 
Struts framework
Struts frameworkStruts framework
Struts framework
 
Struts framework
Struts frameworkStruts framework
Struts framework
 
Web Component Development Using Servlet & JSP Technologies (EE6) - Chapter 9...
 Web Component Development Using Servlet & JSP Technologies (EE6) - Chapter 9... Web Component Development Using Servlet & JSP Technologies (EE6) - Chapter 9...
Web Component Development Using Servlet & JSP Technologies (EE6) - Chapter 9...
 
Wt unit 3
Wt unit 3 Wt unit 3
Wt unit 3
 
Struts 1
Struts 1Struts 1
Struts 1
 
Javascript
JavascriptJavascript
Javascript
 
Java Concurrency and Asynchronous
Java Concurrency and AsynchronousJava Concurrency and Asynchronous
Java Concurrency and Asynchronous
 
Testing Ext JS and Sencha Touch
Testing Ext JS and Sencha TouchTesting Ext JS and Sencha Touch
Testing Ext JS and Sencha Touch
 
ajava unit 1.pptx
ajava unit 1.pptxajava unit 1.pptx
ajava unit 1.pptx
 

Recently uploaded

Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service Cuttack
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service CuttackVIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service Cuttack
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service CuttackSuhani Kapoor
 
NPPE STUDY GUIDE - NOV2021_study_104040.pdf
NPPE STUDY GUIDE - NOV2021_study_104040.pdfNPPE STUDY GUIDE - NOV2021_study_104040.pdf
NPPE STUDY GUIDE - NOV2021_study_104040.pdfDivyeshPatel234692
 
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Internshala Student Partner 6.0 Jadavpur University Certificate
Internshala Student Partner 6.0 Jadavpur University CertificateInternshala Student Partner 6.0 Jadavpur University Certificate
Internshala Student Partner 6.0 Jadavpur University CertificateSoham Mondal
 
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...Suhani Kapoor
 
Delhi Call Girls Greater Noida 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Greater Noida 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Greater Noida 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Greater Noida 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen Dating
Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen DatingDubai Call Girls Starlet O525547819 Call Girls Dubai Showen Dating
Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen Datingkojalkojal131
 
Notes of bca Question paper for exams and tests
Notes of bca Question paper for exams and testsNotes of bca Question paper for exams and tests
Notes of bca Question paper for exams and testspriyanshukumar97908
 
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...Suhani Kapoor
 
Preventing and ending sexual harassment in the workplace.pptx
Preventing and ending sexual harassment in the workplace.pptxPreventing and ending sexual harassment in the workplace.pptx
Preventing and ending sexual harassment in the workplace.pptxGry Tina Tinde
 
Experience Certificate - Marketing Analyst-Soham Mondal.pdf
Experience Certificate - Marketing Analyst-Soham Mondal.pdfExperience Certificate - Marketing Analyst-Soham Mondal.pdf
Experience Certificate - Marketing Analyst-Soham Mondal.pdfSoham Mondal
 
Full Masii Russian Call Girls In Dwarka (Delhi) 9711199012 💋✔💕😘We are availab...
Full Masii Russian Call Girls In Dwarka (Delhi) 9711199012 💋✔💕😘We are availab...Full Masii Russian Call Girls In Dwarka (Delhi) 9711199012 💋✔💕😘We are availab...
Full Masii Russian Call Girls In Dwarka (Delhi) 9711199012 💋✔💕😘We are availab...shivangimorya083
 
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girls
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call GirlsDelhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girls
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girlsshivangimorya083
 
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...Niya Khan
 
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...Suhani Kapoor
 
Business Development and Product Strategy for a SME named SARL based in Leban...
Business Development and Product Strategy for a SME named SARL based in Leban...Business Development and Product Strategy for a SME named SARL based in Leban...
Business Development and Product Strategy for a SME named SARL based in Leban...Soham Mondal
 
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service BhilaiVIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service BhilaiSuhani Kapoor
 
Employee of the Month - Samsung Semiconductor India Research
Employee of the Month - Samsung Semiconductor India ResearchEmployee of the Month - Samsung Semiconductor India Research
Employee of the Month - Samsung Semiconductor India ResearchSoham Mondal
 
Vip Modals Call Girls (Delhi) Rohini 9711199171✔️ Full night Service for one...
Vip  Modals Call Girls (Delhi) Rohini 9711199171✔️ Full night Service for one...Vip  Modals Call Girls (Delhi) Rohini 9711199171✔️ Full night Service for one...
Vip Modals Call Girls (Delhi) Rohini 9711199171✔️ Full night Service for one...shivangimorya083
 

Recently uploaded (20)

Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service Cuttack
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service CuttackVIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service Cuttack
VIP Call Girl Cuttack Aashi 8250192130 Independent Escort Service Cuttack
 
NPPE STUDY GUIDE - NOV2021_study_104040.pdf
NPPE STUDY GUIDE - NOV2021_study_104040.pdfNPPE STUDY GUIDE - NOV2021_study_104040.pdf
NPPE STUDY GUIDE - NOV2021_study_104040.pdf
 
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Internshala Student Partner 6.0 Jadavpur University Certificate
Internshala Student Partner 6.0 Jadavpur University CertificateInternshala Student Partner 6.0 Jadavpur University Certificate
Internshala Student Partner 6.0 Jadavpur University Certificate
 
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...
VIP Call Girls in Jamshedpur Aarohi 8250192130 Independent Escort Service Jam...
 
Delhi Call Girls Greater Noida 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Greater Noida 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Greater Noida 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Greater Noida 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen Dating
Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen DatingDubai Call Girls Starlet O525547819 Call Girls Dubai Showen Dating
Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen Dating
 
Notes of bca Question paper for exams and tests
Notes of bca Question paper for exams and testsNotes of bca Question paper for exams and tests
Notes of bca Question paper for exams and tests
 
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
VIP Russian Call Girls in Amravati Deepika 8250192130 Independent Escort Serv...
 
Preventing and ending sexual harassment in the workplace.pptx
Preventing and ending sexual harassment in the workplace.pptxPreventing and ending sexual harassment in the workplace.pptx
Preventing and ending sexual harassment in the workplace.pptx
 
Experience Certificate - Marketing Analyst-Soham Mondal.pdf
Experience Certificate - Marketing Analyst-Soham Mondal.pdfExperience Certificate - Marketing Analyst-Soham Mondal.pdf
Experience Certificate - Marketing Analyst-Soham Mondal.pdf
 
Full Masii Russian Call Girls In Dwarka (Delhi) 9711199012 💋✔💕😘We are availab...
Full Masii Russian Call Girls In Dwarka (Delhi) 9711199012 💋✔💕😘We are availab...Full Masii Russian Call Girls In Dwarka (Delhi) 9711199012 💋✔💕😘We are availab...
Full Masii Russian Call Girls In Dwarka (Delhi) 9711199012 💋✔💕😘We are availab...
 
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girls
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call GirlsDelhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girls
Delhi Call Girls In Atta Market 9711199012 Book Your One night Stand Call Girls
 
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
 
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...
 
Business Development and Product Strategy for a SME named SARL based in Leban...
Business Development and Product Strategy for a SME named SARL based in Leban...Business Development and Product Strategy for a SME named SARL based in Leban...
Business Development and Product Strategy for a SME named SARL based in Leban...
 
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service BhilaiVIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
 
Employee of the Month - Samsung Semiconductor India Research
Employee of the Month - Samsung Semiconductor India ResearchEmployee of the Month - Samsung Semiconductor India Research
Employee of the Month - Samsung Semiconductor India Research
 
Vip Modals Call Girls (Delhi) Rohini 9711199171✔️ Full night Service for one...
Vip  Modals Call Girls (Delhi) Rohini 9711199171✔️ Full night Service for one...Vip  Modals Call Girls (Delhi) Rohini 9711199171✔️ Full night Service for one...
Vip Modals Call Girls (Delhi) Rohini 9711199171✔️ Full night Service for one...
 

Web review

  • 1. Web Review Exam Specification - Covers:Javascript,jQuery,andAjax - MCQs : 20 items - Fillingthe gaps: : 5 items - Questions : 5 items - Exercise : 2 items Lesson1: JavaScript I. JavaScriptWindow 1. What isJavaScriptWindow?Whywe use JavaScriptWindow? 2. How manymethodsof JavaScriptWindow?Whatare they? There are 4: - window.open() - openanew window - window.close() - close the currentwindow - window.moveTo() -move the currentwindow - window.resizeTo() -resizethe currentwindow Reference:http://www.w3schools.com/js/js_window.asp &Textbook(page 103 & 104) II. JavaScriptWindowScreen 1. Compare twopairsof itsproperties? screen.width [screenonusersaw] screen.height VS screen.availWidth [screen+nav(browser)] screen.availHeight Reference:http://www.w3schools.com/js/js_window_screen.asp &Textbook III. JavaScriptWindowLocation 1. What isJavaScriptWindowLocation?WhenandWhy we use it? The window.locationobjectcanbe usedto get the currentpage address(URL) and to redirectthe browsertoa new page. 2. How manymethodsof window.location? There are 6 methods: - window.location.href returnsthe href (URL) of the currentpage - window.location.hostnamereturnsthe domainname of the webhost - window.location.pathnamereturnsthe pathandfilename of the currentpage - window.location.protocol returnsthe webprotocol used(http://orhttps://) - window.location.assignloadsanew document
  • 2. - window.location.portreturnsthe portof the webhost(80 or 443) 3. To loada new document,whichmethod isused?  window.location.assign Reference:http://www.w3schools.com/js/js_window_location.asp &Textbook IV. JavaScriptPopupBoxes 1. How manypopupboxesinJavaScript?  There are 3: - Alert Box: Analertbox is oftenusedif youwantto make sure information comesthroughto the user.When analertbox popsup, the userwill have toclick "OK"to proceed. - ConfirmBox: A confirmbox isoftenusedif youwant the userto verifyoraccept something. Whenaconfirmbox popsup,the userwill have toclickeither"OK" or "Cancel"to proceed. If the userclicks"OK",the box returnstrue.If the user clicks"Cancel",the box returnsfalse. - Prompt Box: A confirmbox isoftenusedif youwant the userto verifyoraccept something.Whenaconfirmbox popsup,the userwill have toclickeither"OK" or "Cancel"to proceed.If the userclicks"OK",the box returnstrue.If the user clicks"Cancel",the box returnsfalse. Reference:http://www.w3schools.com/js/js_popup.asp &Textbook V. JavaScriptTimingEvents 1. What isJavaScriptTimingEvents? 2. What are the twokeymethods? How Syntax & Parameterslooklike? a. setTimeout(function, milliseconds) Executes a function, after waiting a specified number of milliseconds. b. setInterval(function, milliseconds) Same as setTimeout(), but repeats the execution of the function continuously. 3. How to stopthe executionof JavaScriptTimingEvents?(Please note:we cannotuse stop() methodsonthiscontext)  There are twomethods - window.clearTimeout(timeoutVariable):stopsthe executionof the function specifiedinsetTimeout(). - window.clearInterval(timerVariable):stopsthe executionsof the function specifiedinthe setInterval() method. Reference:http://www.w3schools.com/js/js_timing.asp &Textbook Lesson2: jQuery 1. What isjQuery?WhyjQuery? 2. How to use jQuery?  DownloadfromjQuery.com
  • 3.  ImportCDN 3. Why dowe use $(document).ready? 4. How manyjQueryselector?  There are 4: - Tag name - Class - Id - Currentelement(orcalled“this”) 5. What are differencesbetween(Hide/Show) and(Fade in/Fade out)? 6. Why dowe use toggle? 7. How manyparametersof toggle?  There are 2 : speed&callback 8. How manyFadingmethods?  There are 4: - fadeIn() - fadeOut() - fadeToggle() - fadeTo() 9. Please describeparameterof Fadingmethods?  OnlyfadeTo() contains3parameters: $(selector).fadeTo(speed, opacity,callback) 10. What isanimation?Whydo we use animation? 11. Please describeitsparameter? $(selector).animate({param},speed,callback)Whichparameters are requiredandwhichare optional? 12. We are supposedtoanswerthe resultof animationcoding. For example,left=200 & opacity= 0.5. Please choose the rightanswerasbelow.Thingslike that 13. What isjQuerystop() method?  It isusedto stop animationsoreffectsbefore itisfinished. 14. How manyjQuerystopmethods? There are 3: - stop():stopscurrentanimation - stop(true):stopall animation - stop(true,true):stopsall animationbutfinishthe currentanimation 15. How manyjQueryGetcontentmethods?  There are 3: - text() - html() - val() 16. What methodtoget or setattribute?  attr() 17. How manyjQuerySetcontentmethods?  There are 3: - text() - html() - val()
  • 4. 18. How manymethodsusedto add elements?  There are 4: - append() - Insertscontentatthe endof the selected elements - prepend() - Insertscontentatthe beginningof the selectedelements - after() - Insertscontentafterthe selectedelements - before() - Insertscontentbeforethe selectedelements 19. How to remove elementandcontentinjQuery?  There are twomethods - remove() - Removesthe selectedelement(anditschildelements) - empty() - Removesthe childelementsfromthe selectedelement 20. CSS syntax?(Pleasefocusonlyoncssmethod() andproperty()) 21. Please explainDimensionmethods(Oneof themwill be appearedinexam) - width() [nopadding,border,margin] - height() - innerWidth()[padding] - innerHeight() - outerWidth()[border,margin] - outerHeight() 22. Traversingwill be appearedinexercisepartonly. 23. What isAncestor?Howmany methodsare there?(father)  There are 3: - parent() [selectparent ] - parents() [selectall parents] - parentsUntil()[selectbetween] 24. What isFiltering?There are 3 methods: The three most basicfilteringmethodsare first(),last()andeq(),whichallow youtoselecta specificelementbasedonitspositioninagroupof elements. Otherfilteringmethods,like filter() andnot() allow youtoselectelementsthatmatch,or do not match, a certaincriteria. Lesson3: Ajax 1. What isAJAX? Is update partof webpage withoutreloadingpage. AJAX= AsynchronousJavaScriptXML. Create fastand dynamicwebpage. 2. How manystepsto accessAJAX? (There are 6 steps) - Browsercreatesan XMLHttpRequestobject - BrowsersendsHttpRequesttoserver - Serverreceive andthenprocessHTTPRequest - Servercreatesa response andsendsdataback to the browser - Browserreceivesandprocessesthe returneddatausingJavaScript
  • 5. - Browserupdatespage content Please notice:To access AJAX, Internetis needed. 3. AJAXXMLHttp Create Object – How to create object? (Pleaselookatpage 68) 4. AJAXXMLHttp Response –There are twoproperties(Please lookatpage 77) 5. AJAXXMLHttp readyState – There are three properties(Pleaselookatpage 79)(onreadystatechange(functioncall whenreadystate propertieschange),readyState(0,not initialized,1,establishconnection,2, requestreceive ,3,processrequest, 4 requestfinishand response already),status(200= page notfound)) 6. AJAXXMLHttp readyState istriggeredeverytimethe readState changes. 7. Please rememberthe descriptionof propertyvalueof readyState &status For example,0:requestnotinitialized(readyStateproperty) 200: “OK” 404: Page notfound 500: Servererror Please goback topage 49 of textbook 8. What isjQueryLoad? Howto use it? Please write its syntax?(Page49) 9. Compare GET vsPOST method?(Pleaselookatpage 52 – the bulletparts) For example,GETrequestscanbe cached.Thingslike that 10. What isjQuerynoConflict()?Please pay muchattentionwithitsSyntax? 11. jQueryReferences –Please lookatthe methodsthatwe have learntandfrequentlyused(If you can rememberall of them,youare verycool. Actually,we are not supposedto memorize all of them) Exercises:There are two: 1. The big one: - Write jQueryof exercise thatwe didin JavaScript(Node Creation):Pleasego throughthe homeworkof JavaScriptfromnode creationuntil the end. - jQueryHomeworkthatcontains3 exercises(Slide,image_slide,image_flow) 2. Teachersaidthat “The lastone is supposedtobe small andeasiest” - Traversing(We mustknow how to use itsmethodsproperly) - Ancestor - Descendants
  • 6. Please notice:Everythingmustbe writteninjQuery.(Forexample,we have touse css() methodtostyle the elementsinjQuery) ================================ The End ============================================= Good luckand Thanks 