Threads
threads
Explore the latest posts and conversations in this channel.
-
@pensu-8tNeGU • Oct 19, 2024Oct 19, 20241.3KSpeed is one of the most important attribute of the transmission channels. Currently used Transmission Control Protocol (TCP) is good enough in its job, but it also has few issues...
-
@shyamsundar-dZmKP4 • Oct 21, 2024Oct 21, 20241.2K
LC filter design : Cutoff Frequency & L, C Values
Hi all, please let me know how LC lowpass filter can be designed. We have to decide cutoff frequency first. My question is then how will you assume L or... -
@amit-Ja5LGK • Oct 24, 2024Oct 24, 20241.7K
Interfacing of GSM modem with 8051
hello, I want to interface GSM modem to AT89C51 to send messages. I have attached ciruit diagram and code too! This code is not working 😔 In circuit diagram, I... -
@shyamsundar-dZmKP4 • Oct 21, 2024Oct 21, 20241.3K
Input capacitor selection
Hi, can any one tell me , how input bulk capacitor value is designed (which comes after bridge rectifier) for switched mode power supplies? any formula? -
@ramani-VR4O43 • Oct 22, 2024Oct 22, 2024947The Silent National Anthem - By the Totally Deaf Children
Whatever the corruption and malaise plaguing India, there is hope while there is such spirit! Let us salute them. ( email from my N.Purushottama) -
@nitin247-fS0vNl • Oct 27, 2024Oct 27, 20241.2K
need mechanical project for final year
hello everyone, i need a mechanical project for final year. please help me out , its urgent and if possible please provide ppt also. -
@kamalesh-reddy-ogPFGZ • Oct 25, 2024Oct 25, 20241.0K
Solar power generation through different ways
solar power generation with auto tracking system,how it is possible? nano science in solar energy,is it correct? -
@lastchance-FiQUHm • Oct 24, 2024Oct 24, 20241.1K
UPS Designing Creteria for Electrical Load
I want to know about the practical approach of UPS Designing with real examples. For example for 100Computers, 200Lights etc what should be the power ratting of UPS to consider.... -
@satishm-FfhdNp • Oct 24, 2024Oct 24, 20241.2K
What is clock circuit made up of ?
Is quartz crystal resonator in clock circuit an oscillator? If not then what kind of analog or digital circuitary does the clock circuits in various computing devices are made up... -
@sree-23-kwhbgb • Oct 24, 2024Oct 24, 20241.7K
If DC motor is supplied with AC current
similarly if a transformer is given DC what will happen? -
@pensu-8tNeGU • Oct 25, 2024Oct 25, 20241.3K
Researchers At University Of Cambridge Create The First Ever 3D Microchip
We have had 3D movies, 3D TVs and the latest - 3D printers. Now, researchers at University of Cambridge have developed the first ever 3D microchip, that will allow the... -
@satya-swaroop-YDeBJM • Oct 25, 2024Oct 25, 20241.3K
Urban Warrior 5: Virtual Battle Simulation For The British Army
It sure does look like a video game but this one cost £1m to develop and is being used by the British Army to find out which resources it needs... -
@whats-in-name-KdgM7o • Oct 26, 2024Oct 26, 2024921
Switch Case : Doubts
Ok,I got to clear 2 doubts associated with the classic "Switch Case"- <?php$favcolor="red";switch ($favcolor){default: echo "Your favorite color is neither red, blue, or green!";case "red": echo "Your favorite color is ... -
@white-hat-RTFca6 • Oct 26, 2024Oct 26, 2024995
Where to buy RFID reader and tags?
Someone please tell me where to find RFID reader and tags and how much does it cost? -
@techie-earthling-2uZy4K • Oct 26, 2024Oct 26, 20241.1K
RoboCop- An initiative taken towards BMW E-Patrol Dream !
RoboCop- A Robot which will behave like the original traffic police, that can detect any speeding car exceeding threshold speed, can detect the direction in which the speeding went, will... -
@abrakadabra • Oct 26, 2024Oct 26, 20241.5KPioneer Home Theater Speakers Launched In Japan
Pioneer's new Home Theater Speakers namely - HTP-HW950, HTP-SB550, HTPS-757 and HTP-S353 are now launched in Japan. Among these the models HTPS-757 and HTP-S353 come with the good all 5.1Ch... -
@thebigk • Oct 21, 2024Oct 21, 2024994Would you donate money to your college, few years after graduation?
The commercialisation of the education system resulted into mushrooming of the engineering colleges all over India. I believe this has affected the 'bond' (the emotional one) between the students and... -
@zaveri-5TD6Sk • Oct 21, 2024Oct 21, 2024974
Turbo machines: general discussion
1) What kind of turbo machine is a vacuum cleaner ? is it a centrifugal fan ? or a blower ? or a rotating compressor ? 2) Do blenders (the... -
@thebigk • Oct 22, 2024Oct 22, 2024981Applications of paper electronics
The world is gradually moving towards 'thinner' electronics and electronic circuits are now making their way to the paper. So the next time you hand over your business card -... -
@gsk-ssit-KY7Fvw • Oct 26, 2024Oct 26, 20241.3K
Explain this C Code: Calculate Sun of 5 digits
/* To calculate sum of five digits*/ int num,a,n; int sum=0; system("cls"); printf("Enter a five digit number\n"); scanf("%d",&num); a=num%10; n=num/10; sum=sum+a; a=n%10; n=n/10; sum=sum+a; a=n%10; n=n/10; sum=sum+a; a=n%10; n=n/10; sum=sum+a;...