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

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 […]

Java Script program to convert days into years, weeks and days

10. Write a 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 Celsius and convert it into Fahrenheit

Write a 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. […]