C Program to Check BCNF,3NF
This is the C Program to check BCNF or 3NF The difference between 3NF and BCNF is subtle. 3NF Definition A relation is in 3NF if it is in 2NF and no non-prime attribute...
This is the C Program to check BCNF or 3NF The difference between 3NF and BCNF is subtle. 3NF Definition A relation is in 3NF if it is in 2NF and no non-prime attribute...
This is the implementation of classic dining philosophers problem in java using semaphores and threads Problem statement Five silent philosophers sit at a round table with bowls of spaghetti. Forks are placed between each...
This is the java program to perform string reversal using TCP.the client sends the string,the server reverses the string and sent back to the client Java Client Client.java Java Server: Server.java
This is the java program to implement RMI in java.the program implemented is a calculator The Java Remote Method Invocation (Java RMI) is a Java API that performs the object-oriented equivalent of remote procedure...
This is the C Program to List files,the directory can be a folder,floppy disk,cd etc.. Reference to the header files and functions used in this Program DESCRIPTION The header defines the structure of the...
This is the C Programming Implementation of bankers algorithm The Banker’s algorithm is a resource allocation and deadlock avoidance algorithm developed by Edsger Dijkstra that tests for safety by simulating the allocation of predetermined...
This is the C program to find the lca using threads and semaphores Given a binary tree (not a binary search tree) and two values say n1 and n2, write a program to find...
This is the CSMA Implementation in java Carrier sense multiple access (CSMA) is a probabilistic media access control (MAC) protocol in which a node verifies the absence of other traffic before transmitting on a...
This is the implementation of public chat in java where the user can chat with each other the server maintains the connection with all the clients Client: bclient.java Server: bserver.java import java.io.*; import java.net.*;...
Recent Comments