Search The World

Custom Search

sponsors

What type of antenna used in the mobile?

Answer is Omni directional antenna used in the mobile. There are various types of antenna used in mobile like, PIFA (Polar Inverted F Antenna) FICA etc

Radar Equation

The power Pr returning to the receiving antenna is given by the radar equation:

P_r = {{P_t G_t  A_r \sigma  F^4}\over{{(4\pi)}^2 R_t^2R_r^2}}

where

  • Pt = transmitter power
  • Gt = gain of the transmitting antenna
  • Ar = effective aperture (area) of the receiving antenna
  • σ = radar cross section, or scattering coefficient, of the target
  • F = pattern propagation factor
  • Rt = distance from the transmitter to the target
  • Rr = distance from the target to the receiver.

In the common case where the transmitter and the receiver are at the same location, Rt = Rr and the term Rt² Rr² can be replaced by R4, where R is the range. This yields:

P_r = {{P_t G_t  A_r \sigma  F^4}\over{{(4\pi)}^2 R^4}}.

This shows that the received power declines as the fourth power of the range, which means that the reflected power from distant targets is very, very small.

The equation above with F = 1 is a simplification for vacuum without interference. The propagation factor accounts for the effects of multipath and shadowing and depends on the details of the environment. In a real-world situation, pathloss effects should also be considered.

sponsored by

Friday, August 7, 2009

Delta modulation


JAVA/OOPs Question Papers

UNIT V
1 What is an exception? Give an example.
2 List the two distinct advantages of user define exceptions handling mechanisms?
3 How does “try… catch” mechanism handle an exception?
4 At which point in the program will the execution resume after the error is handled?
5 What the use is of Finally block, explain with example?
6 Explain the usage of throws using an example?
7 Differentiate between throws and throw keywords?
8 Why do we need custom exceptions, give reasons?
9 Briefly describe the method of defining and using a custom exception?
10 Write a java program to read 20 marks and store them in an array, Define your own exception named wrongmarkexception. Throw and catch this type of exception when a mark is <0>100.
11 The value of the correlation coefficient always lies between -1 and +1.Write a java program to define correlation exception in such a way that a wrong correlation coefficient will be reported. Enter the set of correlation coefficients and report wrong correlation coefficients.
12 List some of the most common exceptions that occur in java explain with examples?
13 Is it essential to catch all types of exceptions, Give reasons to your answer?
14 How many catch blocks can we use with one try block, Give reasons to your answer?
15 Create a try block that is likely to create 3 types of exceptions and then incorporate necessary catch blocks to catch and handle them appropriately?
16 Explain how exception handling mechanism can be used for debugging a program?
17 Write a java program to define nomatch exception that is thrown when the string of input is not “India”
18 Define thread? Name and explain different states in the lifecycle of threads?
19 Differentiate multiprocessing and multithreading? What is to be done to implement these in a program?
20 What java interface must be implemented by all threads, Explain with examples?
21 Explain the methods used for starting and stopping the threads?
22 How do we set priorities to threads, explain with example?
23 Describe the complete life cycle of threads?
24 What is synchronization, when do we use it in multithreading?
25 Write a java program for producer consumer problem to illustrate the concept of multithreading?
26 What is a deadlock? What harmful effect does it have?
27 Which methods are useful in effecting inter thread communication?
28 Explain about notify(), notifyall() and join() in threads?
29 Write a java program to generate square roots of the first 30 natural numbers using runnable interface?
30 Write a java code to define the thread in the thread class to find the factorials of first 20 natural numbers. Create an instance for the thread and activate it?
UNIT VI
1 What is an Event? Explain the role of Event handler in AWT?
2 What is a listener? What useful role does the listener play in AWT?
3 List and explain the different situations in which the Action Event is generated? Write the event handler for the Action Event?
4 List and explain the different situations in which the item Event is generated? Write the event handler for the item Event?
5 Define the purpose of the following Events
a) Focus Event
b) Text Event
c) Container Event
d) Window Event
e) Key Event
6 Mention and explain any five event handling methods for Mouse Event?
7 Mention and explain any five event handling methods for Window Event?
8 Mention and explain the event handling methods for Key Event?
9 List and explain about any five event listeners in AWT?
10 Describe briefly about delegation event model?
11 Explain about adapter classes in detail?
12 Mention and explain any five event handling methods for Component Event?
13 Mention and explain any five event handling methods for Container Event?
14 Explain any five methods used in container class?
15 What is a panel? How it is used for organizing the things in a controlled way?
16 Write a java code to explain frames in an AWT?
17 Are the classes frame and dialogs are subclasses of the window class? Explain.
18 List and explain about the various methods used in the font class?
19 List and explain about the various methods used in the colour class?
20 List and explain about the various drawing methods used in graphics class?
21 Write a java code to draw horizontal, vertical and diagonal lines by making use of graphics methods?
22 Write a java code to Rectangle, Square and Rhombus by making use of graphics methods?
23 Write a java code to draw Ellipses and Circles by making use of graphics methods?
24 Write a java code to draw Arcs and Sector, Semicircle by making use of graphics methods?
25 Write a java code to draw polygon of sides 5, 6, 7 and 8 by making use of graphics methods?
26 Write a java code to display the text “JNTUH” in various Colors?
27 Write a java code to display the text “JNTUH” in various Fonts?
28 Write a java code to explain the text alignment?
29 Write a java code to draw cone , cube and cylinder?
30 Write a java code to draw circle inside a square and a square inside a circle?
UNIT VII
1 Write a java code to explain the concept of Label control in AWT?
2 Write a java code to explain the concept of Buttons control in AWT?
3 Write a java code to explain the concept of Text fields control in AWT?
4 Write a java code to explain the concept of Text Area control in AWT?
5 Write a java code to explain the concept of Checkbox in AWT?
6 Write a java code to explain the concept of Checkbox group in AWT?
7 Write a java code to explain the concept of List control in AWT?
8 Write a java code to explain the concept of Choice control in AWT?
9 Write a java code to explain the concept of Scrollbars control in AWT?
10 Briefly explain the roles played by Menubar, Menu and Menuitem classes?
11 Write a java code to explain the concept of Flow Layout in AWT?
12 Write a java code to explain the concept of Border Layout in AWT?
13 Write a java code to explain the concept of Grid Layout in AWT?
14 Write a java code to explain the concept of Card Layout in AWT?
15 Write a java code to explain the concept of GridBag Layout in AWT?
16 What are the unique features of border layout?
How does the grid layout differ from the border layout? Explain.
17 Distinguish between the functionalities of choice and List controls?
18 Write a java code to explain about icons and Jlabel control in JApplet class of Swings?
19 Write a java code to explain JText field control in Swings?
20 Write a java code to explain JButton control in Swings?
21 Write a java code to explain JCheckBox control in Swings?
22 Write a java code to explain JRadioButton control in Swings?
23 Write a java code to explain JComboBox control in Swings?
24 Write a java code to explain JTabbedPane control in Swings?
25 Write a java code to explain JScrollPane control in Swings?
26 Write a java code to explain JTable control in Swings?
27 What is an Applet? Explain how does an Applet differ from the application?
28 Briefly Explain the Life cycle of an Applet?
29 With a sample java code explain the method of creating and executing an Applet?
30 Write an Applet to receive the value of the parameter message from the html file and display it on the webpage?
UNIT VIII
1 Briefly explain the utility of gethost(), getProtocol() and getPort() methods of the URL class?
2 What is socket how it is used in the networking?
3 Briefly explain the situations in which bindexception, connectedexception and NoroutetoHost exception are thrown?
4 What is an InetAddress? Write a java program to create an Inetaddress?
5 Explain briefly about the concept of TCP?
6 Describe briefly about the concept of UDP?
7 Write a server side program to send the sales figures for the six working days in a week to a client. Write the corresponding client program?
8 Suppose the sales data is available in the file named sales.dat. Write a java program to read the data from the file,extract the tokens and send them one by one over the net from a server to a client?
9 Write a server side program to send the name of a medical specialist. Write a client side applet to receive it and retrieve his phone number, return it to the server.
10 Write the client side applet to send the sales figure to the server. Write the server program to compute and send the commission
11 Write the server side program to send the message : send 83 lakhs immediately” to a client. Write the corresponding client program.
12 Write a server side program that receives the filename, retrieve it and send the contents of the file to the client. Write the corresponding client program?
13 Write a server side program that receives the filename from the client, retrieve its content and send the contents of the file to the client. Write the corresponding client program?
14 Develop a UDP based server side program to send the multiple lines of message to a client. Write the corresponding UDP based client side program.
15 Develop a UDP based client side program to send the sales data, one by one, to the server. Write the corresponding UDP based server side program
16 Write the UDP based client side program to send the radius of a circle to the server. Write the server side applet such that it receives the radius, computes the area and finally return it to the client.
17 Define and explain some of the methods in Collection interface in java.util package?
18 Define and explain some of the methods in List interface in java.util package?
19 Write a sample java code to demonstrate ArrayList class methods?
20 Write a sample java code to demonstrate LinkedList class methods?
21 Write a sample java code to demonstrate HashSet class methods?
22 Write a sample java code to explain any 5 methods of MAP interface in java.util package?
23 Write a sample java code to explain any 5 methods of Enumerated interface in java.util package?
24 Write a sample java code to demonstrate Vector class?
25 Write a sample java code to demonstrate Stack class?
26 Write a sample java code to demonstrate Dictionary and Hash table classes?
27 Write a sample java code to demonstrate Sting Tokenizer class?
28 Write a sample java code to demonstrate Date class methods?
29 Mention any 5 classes and its methods in java.io package?
30 Mention any 5 classes and its methods in java.net package?

History Of Pulse Code Modulation


UJT Relaxation Oscillator


Aim: -

To design and simulate UJT Relaxation Oscillator circuit.

Components: -




Name
EDWin Components Used
Description
Number of components required
UJTUJTUni-Junction Transistor1
RESRC05Resistor3
CAPCASE-A600Capacitor1
VDCVDCDC voltage source1
GNDSPL0Ground2



Theory: -
UJT is an uni-junction device. This single pn junction device consists of a lightly doped n-type silicon bar. The p- type impurity is diffused into the base producing the pn junction. The above figure shows the equivalent circuit of UJT. The resistance of the silicon bar is called inter base resistance RBB represented by the two resistors in series viz. Rb1 and Rb2. The pn junction is represented in the emitter by a diode D. The operation of UJT may be explained in three different modes.
  1. With no voltage applied to the UJT, the inter base resistance is given by
  2. Rbb=Rb1 + Rb2
  3. If a voltage Vbb is applied between the bases with emitter open, the voltage will divide up across Rb1 and Rb2.
  4. Voltage across Rb1,
    Or
    The ratio is called the intrinsic stand-off ratio represented by h . Thus
    .
    The value of h lies between 0.51 and 0.82. The voltage across Rb1 is which reverse biases the diode. Hence emitter current is zero.
  5. If a progressively rising positive voltage is applied to the emitter the diode will become forward biased when input voltage exceeds h Vbb by Vd, the forward voltage drop across the silicon diode. Now the emitter current increases regeneratively until it is limited by the emitter power supply. Here we can define the peak point voltage of the UJT,
Thus when input positive voltage to the emitter is less then Vp, the pn-junction remains reverse biased and the emitter current is practically zero. When the input voltage exceeds Vp, the diode is forward biased and the emitter current reaches a saturation value limited by Rb1and the forward resistance of pn-junction.
UJT Relaxation Oscillator circuit, mainly used for triggering purposes is shown above. This circuit is ideally suited for triggering an SCR – since UJT is capable of generating sharp, high powered pulses of short duration whose peak and average power don’t exceed the power capabilities of the SCR gate for which they are intended. When power is applied to the given circuit, capacitor C starts charging exponentially through R to the applied voltage VCC. The voltage across C is the voltage-Ve applied to the emitter of UJT. When C is charged to Vp, then UJT turns ON. This greatly reduces the effective resistance between emitter and base1 of UJT. A sharp pulse of current flows from base1 to emitter, discharging C through Rb1. When the capacitor voltage drops below Vp, UJT is brought back to the previous state and the capacitor again begins to charge towards Vbb. This produces a sawtooth wave.

In the circuit diagram shown above Rb1 and Rb2 are used to protect UJT from overheating. This inturn provides sharp pulses across them: Rb1 produces a positive spike and Rb2 produces a negative spike.

Design: -

Oscillator frequency
Intrinsic stand-off ratio h =0.4 to 0.6
h =0.5 (we take)
substituting the value of h in (1)
Capacitor C is charged through R towards supply voltage VBB. As long as capacitor voltage VE is below a stand-off voltage VP set by the voltage across B1-B2 and the transistor stand-off ratio h .
Sweep Amplitude = VP-VV
from design specification

Design of R

At peak point emitter voltage VE=VP and current through R is given by
At valley point

Design of Capacitor


Design of RB1 and RB2

At the point where the capacitor voltage is equal to VP assuming IE=0A, the network of fig 4 results. VP is the voltage required to turn on the UJT.
But the intrinsic stand-off ratio h is given by the equation
Also
Substituting (a) and (b) in equation (10) we get
RB2 is chosen as a low value resistor. Let it be 100W .
Hence the above equation becomes


Procedure: -

EDWinXP -> Schematic Editor: The circuit diagram is drawn by loading components from the library.Wiring and proper net assignment has been made. The values are assigned for relevant components.

EDWinXP -> Mixed Mode Simulator: The circuit is preprocessed. The test points and waveform markers are placed at C, Rb1 and Rb2. The Transient Analysis parameters have been set. The Transient Analysis is executed and output observed in the Waveform Viewer.

Result:

The output waveform may be observed in the waveform viewer.