Skip to main content

Posts

Showing posts from October 1, 2012

Semantic Web

Beginning from a small project , now web(popularly known as word wide web) consist of  billions of web pages hosted on millions of servers located across the globe. While Web has now become a basic source of Information covering a wide area of interest , (I must say ,almost all the area of interest where current research covering Science,Arts,Engineering is going on) , it also created a challenge of proper information retrieval from unstructured and semistructured web of data. Keeping these things in mind, Tim Berner Lee(The creator of www ) coined a term "Semantic Web", and defined it as: " a web of data that can be processed directly and indirectly by machines " According to World Wide Web Consortium (W3C): "The Semantic Web provides a common framework that allows data to be shared and reused across application, enterprise, and community boundaries." In a Nutshell , the concept of Semantic Web can be described as: " The main purpose of...

FEL by Praman (Simulation and Modeling)

#include #include #include typedef struct { int cno,in_arr,arr,ser_time,tsb,tse,wait,tsis,idle; }customer; int lookup1( int c) { if (c>=0 && c { return 1; } else if (c>=13 && c { return 2; } else if (c>=25 && c { return 3; } else if (c>=38 && c { return 4; } else if (c>=50 && c { return 5; } else if (c>=63 && c { return 6; } else if (c>=75 && c { return 7; } return 8; } int lookup2( int c) { if (c>=0 && c { return 1; } else if (c>=11 && c { return 2; } ...