answersLogoWhite

0

📱

Electronics Engineering

Electronics Engineering is a branch of engineering that deals with practical applications of electronic components, devices, systems, or equipment. Electronics are devices that operate on low voltage sources, as in electron tubes, transistors, integrated circuits, and printed circuit boards and use electricity as part of its driving force.

24,372 Questions

The moving rod is 13.2 cm long and generates an emf of 110 mV while moving in a 0.98 T magnetic field that is facing outwards. What is its speed?

Since E=BLV (Equation for a moving conductor) Solve the equation for V to get V = (E/BL) E = EMF given, which in this case is 110. Convert it to Volts. E = .11 volts

V = .11volts / (.98 T * .132 M) = .850 m/sec

What fraction of a circle is a quadrant?

25% or 1/4, this is because it is a quadrant. Meaning a "quad" as in 4 therefore one quadrant is 1/4.

What is the difference between Idc and Irms?

Idc = Irms / Sqr(2)

Avec :

Idc = Courant continu (DC)

Irms = Courant sinusoidal (AC)

Why 8085 is called parallel device?

The data bus of 8085 is 8 bit and so it will read or write 8 bits simultaneously.So it is Parallel Devise

Why AM is used for long distance communication?

AM has a frequency range of 531 kHz to 1602 kHz and on the other hand FM has a frequency range between 8705 MHz to 108 MHz. If we talk about the bandwidth of AM then it is 1071 KHz and bandwidth of FM is 20.5 MHz.

According to the bandwidth FM should be used for long distance transmission but it is not used for long distance but AM is used fir long distance transmissions. the answer is here.

Long distance transmissions are also decided by the Spectrum of the Signal in frequency domain by doing the Fouriertransform of the Signal.

If we draw the Spectrum of AM waves the we find that their is a main loop in the central part of the spectrum with a high frequency and on the left and right side of this loop their are side loop which are very smaller then the main loop. In FM information can be recover from the main loop only not from the side loops. On the other hand in AM waves all the loops in spectrum is of same size and information can be recover from all the loops.

That is why AM is used for long distance transmission.

Thnx -Vipin Jasoria

What is relationship between type definition and union and enum?

There is no relationship other than that they are programming concepts. they each serve a different purpose.

Type Definition

A type definition is an alias; an alternate name for a type that already exists. Type definition help to make code easier to read. For instance, instead of using the type "unsigned long long int", we can alias it:

typedef unsigned long long int UINT;

Now we can use the UINT type wherever we would normally have used "unsigned long long int".

Union

A union is a type with two or more members of different types that all have the same start address. The length of a union is determined by the longest member of the union. Unions are useful when you have a variety of data types but do not need to maintain separate values for those types; only one member can be active at any one time. As an example, consider the following:

union pointer {

int* pint;

char* pchar;

};

Here we can assign the memory address of an integer to pint and then read back the first byte of that integer using pchar:

int i=0x12345678;

pointer x;

x.pint = &i;

std::cout<<"Integer: "<<*x.pint<

std::cout<<"Byte: "<<*x.pchar<

The output will be:

Integer: 305419896

Byte: 120

Unions are best avoided as they are often used to provide type-casts that are inherently unsafe.

Enum

An enum is an enumeration. When you define an enumeration you define a type for which some values of that type have names. Those names are constant members of the enum.

enum traffic_light {red, amber, green};

If a type is not specified, the type defaults to an int. Given that there are only three values in this enum, a char would suffice:

enum traffic_light : char {red, amber, green};

Enums are useful in that they allow a related set of constants to be grouped.

If no values are specified, the constants are valued according to the order in which they are declared. Thus the above is equivalent to:

enum traffic_light : char {red=0, amber=1, green=2};

If you assign any value to an enum member, all subsequent members are numbered in sequence:

enum traffic_light : char {red=1, amber, green};

The above is therefore equivalent to:

enum traffic_light : char {red=1, amber=2, green=3};

Enum members can also be given the same value if desired:

enum traffic_light : char {red=1, amber=2, yellow=2, green=3};

Using enums help eliminate coding errors:

void f (traffic_light colour) {/*...*/}

f (red); // ok

f (green); // ok

f (4); // error: 4 is not a member of traffic_light!

Enums are also useful for naming bits:

enum bit {

bit_0 = 1<<0, // = 0x01 = 00000001

bit_1 = 1<<1, // = 0x02 = 00000010

bit_2 = 1<<2, // = 0x04 = 00000100

bit_3 = 1<<3, // = 0x08 = 00001000

bit_4 = 1<<4, // = 0x10 = 00010000

bit_5 = 1<<5, // = 0x20 = 00100000

bit_6 = 1<<6, // = 0x40 = 01000000

bit_7 = 1<<7 // = 0x80 = 10000000

};

void f (bit b)

{

if (b & bit_1)

{

// bit_1 is set in b

}

else

{

// bit_1 is not set in b

}

if (b & (bit_1 | bit_2))

{

// bit_1 and/or bit_2 is set

}

else

{

// neither bit_1 nor bit_2 are set

}

}

Why do you neglect iron loss in transformer during short circuit test?

in short circuit test we apply rated current with the LV side shorted.so the applied voltage will be very low. iron loss depends on the applied voltage.so it is neglected

If you charge four 50v capacitors in parallel then remove the 50v battery and hook it up to a volt meter will the meter say 50v or 200v?

If you charge four 50v capacitors in parallel then remove the 50v battery and hook them up to a volt meter the meter will indicate 50v.

What is the purpose of a squuelch circuit?

A squelch circuit is installed in a radio communications receiver to shut down the output when no speech is being received, in order to suppress interference noises. All airborne VHF/UHF communications receivers have them.

Where should a resistor be placed when using an LED?

In series with the LED. The value would be whatever it takes to obtain the required voltage and current across the LED. As an example, if you had an LED that required 25ma at 2v, and you wanted to use a 9v battery, you would need a resistance of 280 ohms. (This is (9-2) / 0.025, a simple application of Ohm's law.)

What is mega diversity?

Two words mega from Greek meaning a quantity and diversity is just that.

What is pps signal?

A pps signal stands for pulse per second. It is electric and repeats one every second. Pulse per second is mostly involved in health care; for example, nursing.

Why one of the leads of resistor connected in electronic circuit is opened while measuring its resistance?

You open one of the leads of resistor connected in electronic circuit while measuring its resistance in order to not introduce error cause by other components in the circuit.

4 bit combinational circuit decrementer using full adders?

Use the regular 4 bit full added, but make one of the inputs 1111 = 2's complimentrepresentation of -1. This will serve to decrement the other number by 1. Throw away the 5th bit, the carry bit.

Example

If 5 is entered:

0101

+ 1111

______

0100 = 4

By -: lokesh kourav

contact no -: 9201104655

What is the minimam distance of IS cable and non IS cable in same tray or trench?

It should add a divider between this different type cable to prevent the interference Type your answer here...

What is the function of the CD4017 IC?

It is a MOS decade counter/divider. CD4017 consist of 5 stages Johnson counter and an output decoder that converts the Johnson binary code to a decimal number.

Why does my TO-220 LM7805 regulator need an insulator before a heat sink?

The case of the TO-220 LM7805 regulator is device ground. If the heatsink is also ground, you do not need an insulator. If the heatsink is not ground, or if you need to maintain distinct grounds, or if the LM7805 ground is something else besides ground, you need an insulator. Its up to you, since you are responsible for system and circuit design.

What is the difference between on and off state resistance?

On Circuit Resistance = Close to the total load Resistance.

Off Circuit Resistance = Near Infinitive High Resistance.

Advantage of critical damping over under damping and over damping?

A system that is critically damped will return to zero more quickly than an overdamped or underdamped system. Underdamping will result in oscillations for an extended period of time, and while overdamped things will return to zero without much (or any, I think) oscillations they will get there more slowly.

How a person can earth a conductor?

Inside a building, you connect the conductor to the AC outlet ground (the circular hole in the wall outlet). Outside the building, the conductor can be connected (soldered, for example) to a copper pipe which has more than six feet underground in soil.

Warning: never work with electricity, no matter that it is just for a second, unless you have taken safety classes and basic lessons in electricity. People go to school to be an electrician.