Search Tutorials

PhET interactive simulations provide an extensive suite of simulations for teaching and learning Physics. PhET interactive simulations in Physics include- Sound & Waves, Work, Energy & Power, Light & Radiation, Electricity & Magnetism and others. PhET simulations are open source and hence free for all students and teachers. These simulations are very effective in concept learning. Read more


About 1286 results found.
  1. Instruction Sheet
  2. Installation Sheet
  3. Brochures

Foss : PhET Simulations for Physics - English

Outline: Projectile Motion Define projectile and projectile motion. Define a trajectory. Effect of gravity on projectile motion. Horizontal and vertical motion of a projectile. Effec..

Intermediate

Foss : PhET Simulations for Physics - English

Outline: Pendulum Lab Define simple pendulum and simple harmonic motion. About simple harmonic motion. Show oscillatory motion of a pendulum. Measure the time taken for 10 oscillation..

Intermediate

Foss : PhET Simulations for Physics - English

Outline: Balloons and Buoyancy Open the simulation in Java file format. About the PhET simulation interface. Change in temperature and pressure as the gas molecules move. Effec..

Intermediate

Foss : PhET Simulations for Physics - English

Outline: Fluid Pressure and Flow Change in pressure in the presence and absence of atmosphere. Pressure changes with change in the shape of the tank. Measure pressure at various depths..

Intermediate

Foss : PHP and MySQL - English

Outline: XAMPP in Windows Installing XAMPP in Windows XAMPP is a cumulative package consisting of Apache, PHP and MySQL Packages is available for Windows In this tutorial the XAMPP wil..

Basic

Foss : PHP and MySQL - English

Outline: XAMPP in Linux Installing XAMPP in Linux XAMPP is a cumulative package consisting of Apache, PHP and MySQL Packages is available for Linux In this tutorial the XAMPP will be i..

Basic

Foss : PHP and MySQL - English

Outline: Echo Function The echo() function outputs one or more strings. Syntax: echo(strings); Ex. echo "Hello World!";

Basic

Foss : PHP and MySQL - English

Outline: Variables in PHP Variables are used for storing values, like text strings, numbers or arrays. When a variable is declared, it can be used over and over again in your script. A..

Basic

Foss : PHP and MySQL - English

Outline: If Statement if statement - use this statement to execute some code only if a specified condition is true. if...else statement - use this statement to execute some code if a co..

Basic

Foss : PHP and MySQL - English

Outline: Switch Statement switch statement - use this statement to select one of many blocks of code to be executed

Basic

Foss : PHP and MySQL - English

Outline: Arithmatic Operators Ex. +,-,*,/,%,++,--

Basic

Foss : PHP and MySQL - English

Outline: Comparison Operators Ex. ==,!=,<>,>,<,>=,<=

Basic

Foss : PHP and MySQL - English

Outline: Logical Operators Ex. && (AND),|| (OR),! (NOT)

Basic

Foss : PHP and MySQL - English

Outline: Arrays An array stores multiple values in one single variable. Numeric array - An array with a numeric index. Associative array - An array where each ID key is associated with..

Basic

Foss : PHP and MySQL - English

Outline: Multi-Dimensional Arrays In a multidimensional array, each element in the main array can also be an array. And each element in the sub-array can be an array, and so on.

Basic

Foss : PHP and MySQL - English

Outline: Loops - While Statement The while loop executes a block of code while a condition is true. while (condition) { code to be executed; }

Basic

Foss : PHP and MySQL - English

Outline: Loops - Do-While Statement The do...while statement will always execute the block of code once, it will then check the condition, and repeat the loop while the condition is true..

Basic

Foss : PHP and MySQL - English

Outline: Loops - For Statement The for loop is used when you know in advance how many times the script should run. Syntax: for (init; condition; increment) { code to be ..

Basic

Foss : PHP and MySQL - English

Outline: Loops - Foreach Statement The foreach loop is used to loop through arrays. foreach ($array as $value) { code to be executed; }

Basic

Foss : PHP and MySQL - English

Outline: Functions (Basic) To keep the script from being executed when the page loads, you can put it into a function. A function will be executed by a call to the function. You may ca..

Basic