Skip to main content

JAVA SCRIPT

JAVA SCRIPT PROGRAMS FOR BCA SEM-2 SYLLABUS OF GUJARAT UNIVERSITY

JAVA SCRIPT TUTORIAL

  1. NUMBERS,NUMBER PROPERTIES & NUMBER METHODS in JAVA SCRIPT.
  2. STRINGS,STRINGS METHODS & STRINGS HTML WRAPPER METHODS in JAVA SCRIPT.
  3. COMPARISON & LOGICAL OPERATORS in JAVA SCRIPT.
  4. MATH OBJECT PROPERTIES & MATH OBJECT METHODS in JAVA SCRIPT.
  5. ARRAY OBJECT,ARRAY PROPERTIES & ARRAY METHODS in JAVA SCRIPT.
  6. BOOLEAN PROPERTIES & BOOLEAN METHODS in JAVA SCRIPT.
  7. Writing into the browser console, using console.log() in JAVA SCRIPT.
  8. Different types of Popup Boxes in JAVA SCRIPT.
  9. How Change Anchor tag href link in JAVA SCRIPT.
  10. window.pageYOffset and Sticky Navigation in JAVA SCRIPT.

JS FUNCTION

  1. JavaScript Closures.(Count Local Variable in function).
  2. Arguments Object in JAVA SCRIPT.
  3. Function Call it Self in JAVA SCRIPT.

JS HTML DOM(Document Object Model)
DOM DOCUMENT,DOM ELEMENTS & DOM METHODS

  1. HTML DOM document.write() Method in JAVA SCRIPT.
  2. HTML DOM tagName Property in JAVA SCRIPT.
  3. Onclick Event in JAVA SCRIPT.
  4. How to create Object & it's properties, Method in JAVA SCRIPT.
  5. HTML DOM getElementsByClassName() Method in JAVA SCRIPT.
  6. HTML DOM classList Property in JAVA SCRIPT.
  7. HTML DOM createElement() Method in JAVA SCRIPT.
  8. HTML DOM removeChild() Method in JAVA SCRIPT.
  9. HTML DOM appendChild() Method in JAVA SCRIPT.
  10. HTML DOM Node hasChildNodes() Method in JAVA SCRIPT.
  11. HTML DOM createTextNode() Method in JAVA SCRIPT.
  12. HTML DOM insertBefore() Method in JAVA SCRIPT.
  13. HTML DOM replaceChild() Method in JAVA SCRIPT.
  14. HTML DOM cloneNode() Method in JAVA SCRIPT.
  15. HTML DOM importNode() Method in JAVA SCRIPT.
  16. HTML DOM adoptNode() Method in JAVA SCRIPT.
  17. HTML DOM querySelector() Method in JAVA SCRIPT.
  18. HTML DOM querySelectorAll() Method in JAVA SCRIPT.
  19. Element by HTML object Collection in JAVA SCRIPT.
  20. HTML DOM anchors Collection & HTML DOM links Collection in JAVA SCRIPT.
  21. HTML DOM baseURI Property in JAVA SCRIPT.
  22. HTML DOM body Property in JAVA SCRIPT.
  23. HTML DOM cookie Property in JAVA SCRIPT.
  24. HTML DOM doctype Property in JAVA SCRIPT.
  25. HTML DOM documentElement Property in JAVA SCRIPT.
  26. HTML DOM documentURI Property & Location href Property in JAVA SCRIPT.
  27. HTML domain Property in JAVA SCRIPT.
  28. HTML DOM embeds Collection in JAVA SCRIPT.
  29. HTML DOM forms Collection in JAVA SCRIPT.
  30. HTML DOM head Property in JAVA SCRIPT.
  31. HTML DOM images Collection in JAVA SCRIPT.
  32. HTML DOM implementation Property in JAVA SCRIPT.
  33. HTML DOM inputEncoding Property in JAVA SCRIPT.
  34. HTML DOM lastModified Property in JAVA SCRIPT.
  35. HTML DOM readyState Property in JAVA SCRIPT.
  36. HTML DOM scripts Collection in JAVA SCRIPT.
  37. HTML DOM title Property in JAVA SCRIPT.

JavaScript HTML DOM Events

  1. HTML DOM onclick Events in JAVA SCRIPT.
  2. HTML DOM ondblclick Event in JAVA SCRIPT.
  3. HTML DOM onmousedown & onmouseup Event in JAVA SCRIPT.
  4. HTML DOM onmouseout & onmouseover Event in JAVA SCRIPT.
  5. HTML DOM onkeyup Event in JAVA SCRIPT.
  6. HTML DOM onkeydown Event in JAVA SCRIPT.
  7. HTML DOM onkeypress Event in JAVA SCRIPT.
  8. HTML DOM EventListener in JAVA SCRIPT.
  9. HTML DOM removeEventListener() method in JAVA SCRIPT.
  10. HTML DOM bubbling and capturing With the addEventListener() in JAVA SCRIPT.

JS HTML DOM Navigation

  1. HTML DOM parentNode & parentElement Property in JAVA SCRIPT.
  2. HTML DOM childNodes & children Property in JAVA SCRIPT.
  3. HTML DOM firstChild & firstElementChild Property in JAVA SCRIPT.
  4. HTML DOM lastChild & lastElementChild Property in JAVA SCRIPT.
  5. HTML DOM nextSibling & nextElementSibling Property in JAVA SCRIPT.
  6. HTML DOM previousSibling & previousElementSibling Property in JAVA SCRIPT.
  7. HTML DOM nodeName Property in JAVA SCRIPT.
  8. HTML DOM nodeType Property in JAVA SCRIPT.
  9. HTML DOM nodeValue Property in JAVA SCRIPT.
  10. Differences between innerText, innerHTML and textContent in JAVA SCRIPT.
  11. HTML DOM Collections & Node Lists in JAVA SCRIPT.

JS Browser BOM(Browser Object Model)

  1. Window innerWidth and innerHeight Properties in JAVA SCRIPT.
  2. Window outerWidth and outerHeight Properties in JAVA SCRIPT.
  3. Window open() Method in JAVA SCRIPT.
  4. Window close() Method in JAVA SCRIPT.
  5. Window moveTo() Method in JAVA SCRIPT.
  6. Window moveBy() Method in JAVA SCRIPT.
  7. Window resizeTo() Method in JAVA SCRIPT.
  8. Window resizeBy() Method in JAVA SCRIPT.
  9. Window scrollTo() Method in JAVA SCRIPT.
  10. Window scrollBy() Method in JAVA SCRIPT.
  11. Window Screen in JAVA SCRIPT.
  12. Window Location in JAVA SCRIPT.
  13. Window History in JAVA SCRIPT.
  14. Window Navigator in JAVA SCRIPT.
  15. Timing Events in JAVA SCRIPT.
  16. Cookies in JAVA SCRIPT.

JS AJAX(Asynchronous JavaScript and XML)

JS JSON(JavaScript Object Notation)

Comments

Popular posts from this blog

BCA SEM 5 SHELL SCRIPT PROGRAM

1  Write a shell script to execute following commands 1. Sort file abc.txt and save this sorted file in xyz.txt 2. Give an example of : To execute commands together without affecting result of each other. 3. How to print “this is a three –line 1. Text message” 4. Which command display version of the UNIX? 5. How would u get online help of cat command? echo “sorting the file” sort abc.txt > xyz.txt echo “executing two commands” who ; ls echo “this is \n a three-line \n Text message” # use -e option if required echo “The version is `uname -a`” echo “Help of cat command” man cat 2  Write a shell script to execute following commands 1. How would u display the hidden files? 2. How delete directory with files? 3. How would user can do interactive copying? 4. How would user can do interactive deletion of files? 5. Explain two functionality of “mv” command with example? echo “1. How would u display the hidden files” echo “2. How delete directory with files” echo “3. How

C++

I NTRODUCTION TO OOP,CLASSES & OBJECTS 1. Use of scope Resolution of Operators. 2. Define a function outside a using scope resolution operators. 3. Write a program to calculate the area of circle, rectangle and square using function overloading. 4. Write a program to calculate the area of circle, rectangle and square using with class & object. 5. Write a program to demonstrate the use of returning a reference variable. 6. Create a class student,stores the details about name,roll no,marks of 5 subject,1.get function accept value of data members,2. display function to display,3.total function to return total of 5 subjects marks. 7. Create function power() in c++. & Create function power() in c++ and default argument. 8. Write a C++ program to swap the value of private data members from 2 different classes. 9. Write a program to illustrate the use of this pointer. 10. An election is contested by five candidates. The candidates are numbered 1 to 5 and the voting is do

USER- DEFINED FUNCTIONS

1. Write a program to calculate average temperature of five days.Create temp() function . 2. Write a program that uses recursive function fibo() thatgenerates a Fibonacci series containing N elements. 3. Write a program that uses a recursive function fact() that findsthe factorial of a given number N. 4. Program to find if the given no. is prime or not. The functionshould accept the number as argument and return if the no. isprime or not. 5. Write a function that accepts an array of integer values. Thefunction should find the number which divides all the othernumbers. 6. Write a user-defined function to perform Square of a number 7. Write a user-defined function to perform Area of a number 8. Write a user-defined function to perform Reverse the number 9. Write a program that uses a function to check whether anentered three digit number is palindrome or not. 10. Write a program to calculate the result of following with recursive calls offunction. 11. Simple interset with usin