Вы находитесь на странице: 1из 5

Marks Obtained:

1. Reflection is?
a) Propagation mode b) Propagation mechanism
c) Spread spectrum d) None of the above
2. The type of access used in GSM technology is
a) FDMA/TDMA b) CDMA
c) OFDMA d) None of the above
3. What is hand off?
a) When a mobile moves into a different cell while conversation in progress, the MSC
Automatically transfers the call from one cell to other cell without any interference.
b) When a mobile moves into a different cell while conversation in progress, the MSC
Automatically transfers the call from one cell to other cell with interference.
c) a & b
d) None of the above
4. IEEE has defined the specifications for a wireless LAN, called _______, which covers the physical &
data link layers.
a) IEEE 802.3 b) IEEE 802.5
c) IEEE 802.11 d) IEEE 802.2
5. The terms “data” and “information” mean the same thing.
a) True b) False
c) Same d) None of these
6. Transmission media lie below the _______ layer.
a) Physical b) Network
c) Transport d) Application
7. In an optical fiber, the inner core is _______ the cladding.
a) Denser than b) Less dense than
c) The same density as d) Another name for
8. Which of the following is not a guided medium?
a) twisted-pair cable b) Coaxial cable
c) fiber-optic cable d) Atmosphere
9. When the angle of incidence is _______ the critical angle, the light beam bends along the interface.
B) More than B) Less than
C) Equal to D) None of the above
10. Microwaves are _________.
A) omnidirectional B) Unidirectional
C) Bidirectional D) None of the above
11. Radio waves are _________.
A) omnidirectional B) unidirectional
C) Bidirectional D) None of the above
12. GSM is a digital system with an over-the-air bit rate of _________
(a) 9.6 kbps (b) 56 kbps
(c) 144 kbps (d) 270 kbps
13. When transistors are used in digital circuits they usually operate in the
a) Active region b) Breakdown region
c) Saturation and cutoff regions d) Linear region
14. The ratio between differential gain and common-mode gain is called
a) Amplitude b) Differential-mode rejection
c) Common-mode rejection d) Phase
15. Which logic circuit is the fastest?
a) TTL b) DTL
c) RTL d) All have same speed.
16. Which of the following sets represents a universal logic family?
a) NAND b) XOR
c) NAD d) None of the above
17. A half adder has
a) 2 inputs and 2 outputs b) 2 inputs and 3 outputs
c) 3 inputs and 3 outputs d) None of the above.
18. A debouncing circuit is
a) An astable MV b) A bistable MV
c) A latch d) A monostable MV
19. The number FF in Hexadecimal system is equivalent to —— in decimal system
a) 256 b) 255
c) 240 d) 239
20. 110112*100012=
a) 111101101 b) 111101100
c) 111110 d) 1100110
21. A buffer is
a) Always non-inverting b) always inverting
c) Inverting or non-inverting d) none of above
22. A first order system will never be able to give a __________ response
a) Band stop b) Band pass c) All pass
23. ASCII stands for:
a) American Standard Code for Information Interchange
b) American Serial Communication Interface
c) Additive Signal Coupling Interface
25. A register in the microprocessor that keeps track of results of any arithmetic or logic operation is
a) Stack pointer b) Program counter
c) Instruction pointer d) Accumulator
24. What is Bluetooth?
a) The simplest Bluetooth networks called piconet can have from two to eight nodes. Piconet is a
collection of Bluetooth devices which are synchronized to the same hopping sequence.
b) Bluetooth is an open specification for short range wireless voice & data communication that’s was
originally developed for cable replacement in personal area networking to operate all over the world.
c) The guard period is used to avoid overlapping with other bursts due to different path delays and to
give the transmitter time to turn on and off.
d) None of these
26. WLL stands as
a) Wireless Local Loop b) Wire-line Application Protocol
c) Wireless access protocol d) none of these
27. To measure current, an ammeter measures the voltage drop across a resistor in series with the
circuit. The ammeter resistance should be
a) Very small b) Equal to the circuit resistance
c) Very large d) Does not matter
28. Which of the following services use crystal local oscillators?
a) AM b)FM
c) Shortwave listener d)Aircraf
29. A decibel notation relative to a reference noise level.
a) dBa b)dBpwp
c) dBrn d)dBf
30. It is the representation of a waveform in such a way that its amplitude is displayed as a function
of frequency.
a) OTDR b) Frequency Domain
c) Time Domain d)Wave Shape
31. A radio receiver is called ____ ___if the local oscillator frequency is made equal to the wanted RF
signal frequency.
a) TRF b)Up-conversion
c) Homodyne d)Single-conversion
32. What frequencies are considered to be in the AF range?
a) 50 Hz – 50 kHz b) 20 Hz – 20 kHz
c) 300 Hz – 3000 kHz d) 15 Hz – 10 kHz
33. UMTS concepts were introduced in which year as an 3G technology?
a) 1999 b) 2000
c) 2007 d) 2014
34. WCDMA stands for?
a) Wideband Code diversion Multiplexing b) Wideband Code Division Multiple Access.
c) Woldwide Code Division Measure Access
35. LTE (Long Term Evolution) as per standards which generation?
a) 2G b) 4G
c) 5G d) IMS advanced.
36. Data speed occur in LTE (Release 9 ) at Mbps?
a. 1.0 Gbps b. 100 Mbps
c. 10 Mbps d.1.0 Mbps
37. MIMO stands for
a. Many Input Many Output b. Measure Input Minor Output
c. Multiple Input Multiple Output
38. What is the largest channel bandwidth is required for UE?
a. 10 Mhz b. 15 Mhz
c. 20 Mhz d. 25 Mhz
39. How will you print \n on the screen?
a) printf("\n"); b) echo "\\n";
c) printf('\n'); d) printf("\\n");
40. In C language when do we mention the prototype of a function?
A) Defining B) Declaring
C) Prototyping D) Calling
41. What will be the output of the program?
A) k == 1 is TRUE #include<stdio.h>
B) 1 == 1 is TRUE int main()
{ int k=1;
C) 1 == 1 is FALSE
D) K == 1 is FALSE printf("%d == 1 is" "%s\n", k, k==1?"TRUE":"FALSE");
return 0;}
42. To print out ‘a’ and ‘b’ given below, which of the following printf() statement will you use?
A) printf ("%f %lf", a, b); #include <stdio.h>
B) printf ("%Lf %f", a, b); float a=3.14;
double b=3.14;
C) printf ("%Lf %Lf", a, b);
43.Which of the following statements should be used to obtain a remainder after dividing 3.14 by 2.1?
a) rem = 3.14 % 2.1 b) rem = modf(3.14, 2.1)
c) rem = fmod(3.14, 2.1) d) Remainder cannot be obtain in floating point division
44. Three Primary Colors in TV Transmission are
a. Red, Green, Blue. b. Red, Yellow, Blue
c. Red, Cyan, Magenta d. None of the above
45. A ___________ identifies a user’s personal preferences and settings and allows the web site's
server to retrieve your information from its database.
A. cookie B. file
C. prototype D. profile
46. Internet works on
a) packet switching b) circuit switching
c) both (a) and (b) d) none of the mentioned
47. Which protocol assigns IP address to the client connected in the internet?
a) DHCP b) IP
c) RPC d) none of the mentioned
48. XML stands for
a. Extra Markup Language b. Excellent Markup Links
c. Extended Markup Language d. Extended Marking Link
49. What OS used as the base of the Android Stack?
a. Linux b. Java
c. Windows d. Applets
50. Which one is not a nickname of a version of Android?
a. Honeycomb b. Muffin
c. Gingerbread d. Cupcake
Answer Sheet Marks Obtained:

Name
College Name
Stream/Batch
Email Id
Contact Number
Address(Home)
Question 1 a B c d Question26 a b c d
Question 2 a B c d Question 27 a b c d
Question 3 a B c d Question 28 a b c d
Question 4 a B c d Question 29 a b c d
Question 5 a B c d Question 30 a b c d
Question 6 a B c d Question 31 a b c d
Question 7 a B c d Question32 a b c d
Question8 a B c d Question 33 a b c d
Question 9 a B c d Question 34 a b c d
Question 10 a B c d Question35 a b c d
Question 11 a B c d Question 36 a b c d
Question 12 a B c d Question37 a b c d
Question 13 a B c d Question38 a b c d
Question 14 a B c d Question39 a b c d
Question 15 a B c d Question40 a b c d
Question 16 a B c d Question41 a b c d
Question 17 a B c d Question42 a b c d
Question 18 a B c d Question43 a b c d
Question 19 a B c d Question44 a b c d
Question 20 a B c d Question45 a b c d
Question 21 a B c d Question46 a b c d
Question 22 a B c d Question47 a b c d
Question 23 a B c d Question48 a b c d
Question 24 a B c d Question49 a b c d
Question 25 a B c d Question50 a b c d

Вам также может понравиться