jQuery Effects – Animation
jQuery provides a wide range of built-in effects and animations that you can use to enhance the interactivity and visual appeal of your web pages. Here are some commonly used jQuery effects for animation: .show() and .hide(): These methods allow you to show or hide elements with a smooth animation. For example: $(element).show(1000); // Shows […]
Arithmetic Operators
Operators are the special symbols in the C programming language, which is used to perform various mathematical and logical operations on the given operands to return the appropriate results. There are various operators in the C programming language such as Arithmetic Operators, Relational Operators, Shift Operators, Logical Operators, Bitwise Operators, Ternary or Conditional Operators, and […]
ALL BASIC DATA TYPES
A data type specifies the type of data that a variable can store such as integer, floating, character, etc. There are the following data types in C language. Types Data Types Basic Data Type int, char, float, double Derived Data Type array, pointer, structure, union Enumeration Data Type enum Void Data Type void Example Of […]
jQuery Effects – Sliding
jQuery provides various methods for creating sliding effects on web pages. These effects allow you to animate the display or movement of elements, creating a smooth transition between different states. Here are some commonly used jQuery methods for sliding effects: .slideDown(): This method animates the height of an element, gradually revealing it by sliding it […]
Write a java script program to enter two angles of a triangle and find the third angle
Write a javascript program to enter two angles of a triangle and find the third angle Javascript program to enter the two angles of a triangle and find the third angle. There are you will learn how to find the third angle of a triangle in javascript language. Formula c° = 180° – (a° + b°) Code
Java Script program to convert days into years, weeks and days
java script programming Write a Java Script program to convert days into years, weeks and days We are required to write a JavaScript function that takes in a number (representing the number of days) and returns an object with three properties, namely − And the properties should have proper values of these four properties that […]
Java script program to enter temperature in Fahrenheit and convert to Celsius
Java script program to enter temperature in Fahrenheit and convert to Celsius . To convert Fahrenheit to Celsius, subtract 32 from the Fahrenheit temperature and then multiply the result by 5/9. Formula let fahrenheit = 285; let celsius = (fahrenheit – 32) * 5/9; Code
Java Script program to enter temperature in Celsius and convert it into Fahrenheit
java script programming Write a Java Script program to enter temperature in Celsius and convert it into Fahrenheit Fahrenheit and centigrade are two temperature scales in use today. The Fahrenheit scale was developed by the German physicist Daniel Gabriel Fahrenheit . In the Fahrenheit scale, water freezes at 32 degrees and boils at 212 degrees. […]
Java Script program to enter radius of a circle and find its diameter, circumference and area.
java script programming Java Script program to enter radius of a circle and find its diameter, circumference and area In geometry, the area enclosed by a circle of radius r is πr2. Here the Greek letter π represents a constant, approximately equal to 3.14159, which is equal to the ratio of the circumference of any […]
program to enter length and breadth of a rectangle and find its area.
write a Java script program to enter length and breadth of a rectangle and find its area.