Popular posts from this blog
Chatting Application(Chit-Chat Messenger)
Chatting Messenger Application Hello Geeks, We are back with one more exciting and interesting project developed in java using JAVA NETWORKING CONCEPTS and Swing features for the UI. This java based project is available with source code and link is given in this blog.Basically this chatting application communicates with server and other client listen to them, and responds back. Necessary tools to run this project JDK(Java Development Kit) Any IDE(Integrated Development Enviroment) An Internet Connection Brief Description of the project As this project is our one of the series of JAVA Project. It is different from other project as it uses JAVA NETWORKING TECHNOLOGY and very interactive user interface.There is one server which communicates with clients and vice versa. The server is assigned 6000 as port number and local host 127.0.0.1 as IP Address which is a local host. One more thing this application can run on any platform whether it would be Linux,Windows,MAC. Clone Sou...
Trapezoidal Rule coding in C Language
Trapezoidal Rule in C Language Here in this blog we will see how to evaluate the integration of function using the very easy and popular method i.e Trapezoidal Method. Later in the subsection of this blog we will see a program that evaluate the integration of given function in C Language. Approach:- First of all let's us discuss the rule or approach of this method. We approximate the function f(x) in the interval [xi ,xi+1] by a straight line joining the points (xi,yi) and (xi+1,yi+1). Popularity:- This method is very handy to calculate the integration of linear function. Geometrically, the integral in an interval is approximated by the area of a trapezium. Trapezoidal Rule Formula:- a[f(x)dx]b = h/2*{y0+yn+2*(y1+y2+y3+y4+.......................+yn-1)} where a=lower limit of function f(x) b=upper limit of function f(x) ...
Comments
Post a Comment