Subscribe Us

Advertisement

o level m2 r5 practical

O level m2 r5 practical

Q1 .Write a JavaScript that calculates the squares and cubes of the numbers from

0 to 10 and outputs HTML text that displays the resulting values in an HTML

table format.

 

Q 2. Write a JavaScript to design a simple calculator to perform the following operations:

sum, product, difference and quotient

 

Q 3 .Design a HTML page to display a picture. The picture should be removed from the screen after

a mouse click on the picture.

 

Viva

What is HTML, CSS, JS

WHAT IS CSS

TYPES OF CSS








M2 r5 web designing

Q 1 Largest Number Among Three Numbers input number from user.

 

Q2 Multiplication Table Up to a Range input by user

 

Q 3 JavaScript Program to Find the Factorial of a Number

 

Viva

Name any three empty

Name any four container

Name any three selector in css

Name any three attribute name



M2 r5 web designing and publishing

 

Q1 JavaScript Program to Check Prime Number

Q 2 JavaScript Program to Print the Fibonacci Sequence

Q 3 JavaScript Program to Reverse a String


M2 r5 webdesigning

 

Q 1 Write a HTML program to create a form for the subscription of a magazine.

The form should contain Name, Address, City, State, Pin Code. Magazine

should be selected from 5 different magazines using checkbox. Subscription

is available for 1 year or two years. Radio buttons shall be used to select

subscription period. The page should have a submit button.

 

 

Q 2 Make frame set using html

Frame 1

Frame 2

Frame 3

Frame 4

 


Q  3 Write html code for this output

 


 

 



 

Viva m2

Types of css

How to define a function in js

What is angular js

Types of position properties

 



M2 R5

Q 1 Write HTML code to create a table with 3 rows and 3 columns showing student names, subjects, and marks.

 

Q 2 Create a navigation bar with three links: "Home", "About", and "Contact".

 

Q 3 Create a form validation script that checks if all fields are filled before submission.

 

Viva

What is w3.css

What  html decide in web page

Who developed java script

What is angular js used for

Who developed angular js

 




M2 r5

Write html code for following output using table




 

 

 

 



write html code for following output use frameset

 




 

Q 3 write java script program to print the n  natural number  and their sum and average

 


M2 r5

Create an html page with following specifications Title should be about my City. Place your City name at the top of the page in large text and in blue color. Add names of landmarks in your city each in a different color, style and typeface. One of the landmark, your college name should be blinking. Add scrolling text with a message of your choice

 

Create an html page with 7 separate lines in different colors. State color of each line in its text.

 

Create an html page containing the polynomial expression as follows :
a0 + a1x+ a2x 2 + a3 x3

 

Create an html page with red background with a message “warning” in large size blinking. Add scrolling text “read the message” below it.

 

Create a HTML Document with JavaScript code that has three Textboxes and a button. The details should be accepted using textboxes are principal, rate of interest, and duration in years. When user clicks the OK Button a message box appears showing the simple interest of principal amount.

 

 

O level 19 -8 2025

 

Write a Java script program to  add 3 button and also show output on click.

 

 

<!DOCTYPE html>

<html>

<head>

  <title>Programming Buttons</title>

</head>

<body>

  <h2>Programming Buttons Example</h2>

 

  <!-- Buttons -->

  <button onclick="showMessage('Python')">Python</button>

  <button onclick="showMessage('JavaScript')">JavaScript</button>

  <button onclick="showMessage('C++')">C++</button>

  <p id="output"></p>

  <script>

    function showMessage(language) {

      document.getElementById("output").innerHTML ="You clicked on " + language + " button!";

    }

  </script>

</body>

</html>

 

Write JavaScript program to stop  watch with  start and end button .

 

 

 

<!DOCTYPE html>

<html>

<body>

  <h2 id="time">0</h2>

  <button onclick="start()">Start</button>

  <button onclick="stop()">Stop</button>

 

  <script>

    let t, s = 0;

    function start() {

      if (!t) t = setInterval(() => {

        document.getElementById("time").innerText = ++s;

      }, 1000);

    }

    function stop() {

      clearInterval(t); t = null;

    }

  </script>

</body>

</html>

 

 

make the table as given below use appropriate spanning

 

 


 

 

 

 

 

 

 

Viva

What is the name of your m2 moduel

What is Array in js

Types of loops in js

What is framework name the css framewok

Name any 5 properties in css

 

Post a Comment

0 Comments