Why we don’t use 2-20mA, 1-20mA, 3-20mA or 10-50mA signal instead of 4-20mA ? Answer : Generally, in a transistor some amount of voltage is required for turning it on… View Answer
How to calculate the flow rate in Vortex flow meter ? What is K factor ? Can you give me an example calculation to understand the same as better ? Answer : Vortex flow meters are flow sensors that detect the frequency of vortices… View Answer
What is Electronic Engineering how to become a good Electronic Engineer ? Answer : Electronics engineering is a designing order which uses non-direct and dynamic electrical segments… View Answer
What is the difference between Rx Lev Full and Rx Lev Sub ? What you mean by Link Budget? Can you explain ? Answer : RX Lev Full means Mobile transmit the measurement… View Answer
How many mobile subscribers are come under one BTS ? and how many BTS Comes under One BSC ? how many BSC under One MSC ? Answer : The BTS used in a GSM network comprises the radiotransmitter receivers… View Answer
What is the type of current used by GSM Telecom Equipment ? Answer : Current used in GSM telecom equipment is DC current… View Answer
How to find LCM of two Numbers in C ? Answer : The LCM of two numbers a and b is the smallest positive integer that is perfectly divisible… View Answer
Explain Call by Reference in C language ? Answer : In call by reference, original value is modified… View Answer
Explain Call by Value in C language ? Answer : In call by value, original value is not modified… View Answer
Write a program without using library functions ? Answer : C Standard library functions are inbuilt functions in C programming… View Answer
Pattern programs in C ? Answer : Pattern programs in C print various patterns of numbers and stars… View Answer
Difference between data structure and database ? Answer : Data Structure is about storing data… View Answer
How to count alphabets, numeric and special characters ? Answer : In this example, we have to count digits, spaces, special… View Answer
How to convert hexadecimal to binary using c language ? Answer : To convert hexadecimal to binary using c language… View Answer
main () {int x=20, y=35; x = y++ + x++; y = ++y + ++x; printf (“%d %d\n”, x, y);} ? Answer : While calculating the y value, x & y values are preincremtned, so x & y values are incremented… View Answer
What is the main difference between c and c++ ? Answer : The main difference between c and c++ is… View Answer
Pick out the odd one out of the following malloc(), calloc(), free(), realloc() ? Answer : free().. View Answer