Java program for implentation of consumer problem using inter thread communication

Under Category : Other Circuits

Write a Java program that correctly implements producer consumer problem using the concept of inter thread communication. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 [...]

Read More »

Java program that finds the area of a circle using Client-Server network

Under Category : Other Circuits

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 import java.net.*; import java.io.*; public class server { public static void [...]

Read More »

Broken Charger Connection Alarm Circuit

Under Category : Other Circuits

Detects if a device is not properly connected to its supplySuitable for battery chargers, portable appliance supplies etc. The above circuit can be useful to detect if the load of any battery charger or plug-in adapter supply is not properly connected. The load can be a set of batteries to be charged or any other [...]

Read More »

Java program for creating multiple threads

Under Category : Other Circuits

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 class NewThread implements Runnable { String name; Thread [...]

Read More »

Sync-Tip Clamp/Restorer with AGC and De-Emphasis

Under Category : Video

This video circuit is Sync-tip Clamp/Restorer with AGC and De-emphasis. The active component used IC MAX7450. Below video clamp/restorer with layout and PCB   Source :  http://www.g8ajn.tv/

Read More »

C program for finding remainder

Under Category : Other Circuits

OUTPUT: enter frame: 1 0 1 1 0 1 0 0 enter generator: 1 0 1 0 remainder is: 0 0 1 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 [...]

Read More »

C program to find the Shortest path for a given graph

Under Category : Other Circuits

OUTPUT: enter the cost matrix : 0 1 4 2 0 0 0 0 2 3 0 0 0 3 0 0 0 0 0 5 0 0 0 0 0 enter number of paths : 4 enter possible paths : 1 2 4 5 0 1 2 5 0 0 1 4 5 0 [...]

Read More »