Which tag is used to create the frame
Answer / sj computer man student
this is ur answer
The <frameset> tag defines how to divide the window into
frames
Each frameset defines a set of rows or columns
The values of the rows/columns indicate the amount of
screen area each row/column will occupy
<frameset cols="25%,75%">
<frame src="frame_a.htm">
<frame src="frame_b.htm">
</frameset>
| Is This Answer Correct ? | 5 Yes | 0 No |
1. Consider the following input and generate the object code using single pass assembler. JOHN START 0 USING *,15 L 1,FIVE A 1,FOUR ST 1,TEMP FOUR DC F’4’ FIVE DC F’5’ TEMP DS ‘F END
Write a program which inputs 2 integers representing the sides of a triangle, a and b. Next, write a function which accepts the 2 sides as parameters and returns the hypotenuse of the triangle, c. Use c 2 = a 2 + b 2 To raise a number to an exponent, us e the built - in JavaScript function Math.pow() Let’s say you have a variable x and you want to raise it to the 5 th power, use Math.pow in the following manner... Math.pow( x, 5 ); This will raise x to the 5 th power. To find the square root of a number, use t he built - in JavaScript function Math.sqrt () So to find the square root of x, use Math.pow () in the following manner... Math.sqrt( x ) You must create 2 functions to receive credit for this assignment. Your ‘ main ’ function which is called from the button. And your hypotenuse function. Again, the main function calls upon the hypotenuse f unction when it needs that value. Get the user ’ s input, call the function, output your result. Create your own CSS layout
Difference between debugging, running, executing of an application
What is Partial class and its use?
Suppose i have all the implementation code required is written in doGet() but my class has doPost() method. i need code implemented in doGet() how can we do that?
what is d main diff between the java and .net framework
Define Form modules, Class modules and Standard modules
Given an array of size n. It contains numbers in the range 1 to n. Each number is present at least once except for 2 numbers. Find the missing numbers.
what is the difference between set and append?
which book we learned this mantis? how many version are realsed this mantis upto now?
what is the maximam caption size of lebel
Write a shell program to test whether a given year is leap year or not ?