Disclaimer::
This Site is Only for SUNIL V PAUL and his Family
1. സുനില്‍ .വി.പോള്‍ 2.സീന ആന്റണി ഒലക്കേങ്കില്‍ 3.ക്രിസ്റ്റ റോസ്.വി.എസ്. 4.ആല്‍ഫ്രഡ് പോള്‍ .വി.എസ്.

Any other person has no permission to access or alter or use the details of my site.
Neither SUNIL V PAUL nor HIS FAMILY is responsible for any error that may have crept in the ADDRESS OR DETAILS OF THE SITES being published on net
.

Showing posts with label MCA. Show all posts
Showing posts with label MCA. Show all posts

Saturday, May 26, 2012

MATHS AND COMPUTR SCIENCE SITES-HIGHER STUDY

http://www.mathsisfun.com/algebra/intermediate-value-theorem.html
http://tutorial.math.lamar.edu/Classes/CalcI/Continuity.aspx#Limit_Cont_Ex5b
http://calculusapplets.com/ivt.html
http://www.cs.uleth.ca/~holzmann/notes/NewtonsMethod/
http://www.phengkimving.com/calc_of_one_real_var/01_lim_and_continuity/01_02_continuity/01_02_03_the_interm_val_thrm.htm
http://math.fullerton.edu/mathews/a2001/Animations/RootFinding/RegulaFalsi/RegulaFalsiaa.html
http://math.fullerton.edu/mathews/a2001/Animations/RootFinding/RootFinding.html
http://numericalmethods.eng.usf.edu
http://numericalmethods.eng.usf.edu/topics/lagrange_method.html
http://www.math.ust.hk/excalibur/v15_n2.pdf
http://www.mathtutor.ac.uk/integration/integrationasthereverseofdifferentiation/text
http://www.sakshieducation.com/%28S%28xiv3na55rbtntliyx03coi45%29%29/Engg/EnggAcademia/CommonSubjects/MM_Numerical_Differentiation&Integration.pdf
http://www.math10.com/en/university-math/integrals/1en.html
http://algebra.math.ust.hk/matrix_linear_trans/05_composition/lecture1.shtml
http://betterexplained.com/articles/easy-permutations-and-combinations/
http://www.cut-the-knot.org/do_you_know/permutation.shtml
http://mathforum.org/dr.math/faq/faq.comb.perm.html

Sunday, September 5, 2010

Saturday, January 30, 2010

DATA STRUCTURE THROUGH C

Don't forget that data structure is similar to a train with compartments .For more details buy DATA structure through c(A demo CD is free with this book).

Sunday, February 22, 2009

JAVA PATH
Computer->PROPERTIES->Advanced System settings->Advanced->Environmentvariables->user variable for ...->NEW->

then write Variable name as
CLASSPATH
and variable value as
.;C:\Program Files\Java\jre1.6.0\lib\rt.jar;C:\Program Files\Java\jdk1.6.0\lib\tools.jar;C:\Program Files\Java\jdk1.6.0\lib\dt.jar;

(ie write the full path of dt.jar,rt.jar,tools.jar)

then
from System variables
select path->edit->add one more line in the line Variable value
C:\Program Files\Java\jdk1.6.0\bin;

To test the installed java
run->cmd->c:/->java -version

To compile
javac nameofthefile.java

To execute
java nameofthefile