|
what is '1000 projects'?
'fullinterview.com' is a educational content website dedicated to finding and realizing final year projects for btech, be, mtech, mca students, here you can search, find your projects and get guidance from experts the below are the different technological projects.
visual Studio projects
.net projects,
asp projects,
c & ds projects,
c++ projects (all),
cold fusion projects,
delphi projects,
java projects,
perl projects,
php projects,
sql projects,
vc++ projects,
visual basic projects.
how it works?
well, everything on this site is submitted by the student and professional community. after you submit your project, it is being verified and approved by our administrator. after approval, other people can read/discuss it, save to favorites.
more number of projects?
here you can find morethan 1000 projects on different technologies, if u want to get more projects please visit our sister sites www.fullinterview.com & Chetanasprojects.com
Category Articles
What is the difference between a NULL pointer and a void pointer?
Added on Sat, Dec 26, 2009
A NULL pointer is a pointer of any type whose value is zero. A void pointer is a pointer to an object of an unknown type, and is guaranteed to have enough bits to hold a pointer to any object. A void pointer is not guaranteed to have enough bits to... Read More
How does the race condition occur?
Added on Sat, Dec 26, 2009
It occurs when two or more processes are reading or writing some shared data and the final result depends on who runs precisely when. Read More
What is the difference between TCP and UDP?
Added on Sat, Dec 26, 2009
TCP and UDP are both transport-level protocols. TCP is designed to provide reliable communication across a variety of reliable and unreliable networks and internets. <br>UDP provides a connectionless service for application-level procedures.... Read More
What are some advantages and disadvantages of Java Sockets?
Added on Sat, Dec 26, 2009
Advantages of Java Sockets: Sockets are flexible and sufficient. Efficient socket based programming can be easily implemented for general communications. Sockets cause low network traffic. Unlike HTML forms and CGI scripts that generate and... Read More
What is multiprogramming?
Added on Sat, Dec 26, 2009
Multiprogramming is a rapid switching of the CPU back and forth between processes. Read More
Name the seven layers of the OSI Model and describe them briefly
Added on Sat, Dec 26, 2009
Physical Layer - covers the physical interface between devices and the rules by which bits are passed from one to another. Data Link Layer - attempts o make the physical link reliable and provides the means to activate, maintain, and deactivate the... Read More
What does a socket consists of?
Added on Sat, Dec 26, 2009
The combination of an IP address and a port number is called a socket. Read More
What is encapsulation technique?
Added on Sat, Dec 26, 2009
Hiding data within the class and making it available only through the methods. This technique is used to protect your class against accidental changes to fields, which might leave the class in an inconsistent state. Read More
|