15. Ater interface is between transcoder and MSC – True/False 16. SS7 signaling is used in Abis interface – True/False 17. FlexiEdge BTS has RRI card – True/False 18. From Transcoder to MSC, data rate for each call is 64Kbps – True/false
2 1452119. Name different types of TRXs which supports different GSM bands 20. ODU LED shows orange – what is the significance?
1860What is the state if the RED LED is glowing on DVxx card What is the state if the YELLOW LED is glowing on DVxx card What is the state if the GREEN LED is glowing on DVxx card Which frequency band DVDC is used Which frequency band DVGA is used
1945What is the function of Bias Tee (BPxx) input Which power supply card required for Ultra BTS for DC 24V input What is the state if the GREEN LED is glowing on PWSx card
2477How many maximum PWSA cards can be inserted in a Ultra BTS cabinet How many maximum PWSB cards can be inserted in a Ultra BTS cabinet How many maximum PWSC cards can be inserted in a Ultra BTS cabinet What is the output power rating of one PWSA card What is the output power rating of one PWSB card What is the output power rating of one PWSC card What is the function of Receiver Multicoupler (M2xA or M6xA) How many TRX's are supported by one Receiver Multicoupler- M2xA How many TRX's are supported by one Receiver Multicoupler- M6xA What is the function of Remote Tune Combiner (RTxx) unit The FIU19(E) units main LED is red. What is the meaning?
2963One FIU19(E) Flexbus LED is steadily on. What is the meaning? How can a Laptop PC be locally connected to a FIU19E? What is the maximum capacity of a FlexiHopper radio link operated by a FIU19(E), that is equipped with two 4x2M plug- in units? Which of the listed combination of indoor units support
2380How many un-protected FlexiHopper links can be operated with one FIU19(E) with Flexbus plug-in unit?
1 2771Which of the listed is NOT a FlexiHopper frequency band? Which of the listed is NOT a FlexiHopper feature?
1899What is the state if the RED LED is glowing on PWSx card What is the state if the YELLOW LED is glowing on PWSx card
1999Which power supply card required for Ultra BTS for AC 230 V input Which power supply card required for Ultra BTS for DC -48V
31761.Introduce yourself by telling your name ,SSC,HSC, degree marks n colleges,something about your family and interests. 2.Tell about your favourite subjects. 3.Tell how satelite communication works? 4.what you mean by handoffs in mobile communication.tel its types. 5.what you mean by signal fading?tell the factors affecting it and also tell the remedies to avoid it. 6.why the microwaves are used? 7.Draw the GSM architecture? 8.What u mean by Antenna?What are its basic components? 9.why you are interested to work in this company? 10.can you work anywhere anytime as per the our need?
2546Hi frnds ,iam new to java and j2ee ,my requirement is using java or any j2eetech how to lock an user when he enter wrong credentials(uname&password) more than 3 times.take the username and passowrd in a bean no need to conned Db kindly provide me sample application code or and ideas or links or tutorials plzzzzz urgent for me thanks in advance...
2 5160Post New NSN Interview Questions
how would you enter characters as hex numbers? : Sql dba
What is stateless class in java?
What are swift categories?
What do you understand by java server faces (jsf)?
What is slowloris?
why metadb requires a seperate slice to create Solaris volume manager
How the engine does start working when we start our two wheeler?
whatare the disadvantages occur,if the form factor of transmission will not be equal to 1.11
How many types of page locks can be held in db2?
What is servlet and its life cycle?
What is the difference between ods and info-cubes?
3.2 Consider the following class: public class Point { protected int x, y; public Point(int xx, int yy) { x = xx; y = yy; } public Point() { this(0, 0); } public int getx() { return x; } public int gety() { return y; } public String toString() { return "("+x+", "+y+")"; } } Say you wanted to define a rectangle class that stored its top left corner and its height and width as fields. 3.2.1 Why would it be wrong to make Rectangle inherit from Point (where in fact it would inherit the x and y coordinates for its top left corner and you could just add the height and width as additional fields)? (1) 8 Now consider the following skeleton of the Rectangle class: public class Rectangle { private Point topLeft; private int height, width; public Rectangle(Point tl, int h, int w) { topLeft = tl; height = h; width = w; } public Rectangle() { this(new Point(), 0, 0); } // methods come here } 3.2.2 Explain the no-argument constructor of the Rectangle class given above. 3.2.3 Write methods for the Rectangle class to do the following: • a toString() method that returns a string of the format "top left = (x, y); height = h; width = w " where x, y, h and w are the appropriate integer values. • an above() method that tests whether one rectangle is completely above another (i.e. all y values of the one rectangle are greater than all y values of the other). For example, with the following declarations Rectangle r1 = new Rectangle(); Rectangle r2 = new Rectangle(new Point(2,2), 1, 4); the expression r2.above(r1) should give true, and r2.above (r2) should give false. (You can assume that the height of a rectangle is never negative.) (2) (5)
Why is string immutable in java?
Why do we use Abstract classes give an example from your project?
How to pass the parameters from jcl to assembler program?