T& P Tech 26-7-2020

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 29

7/27/2020 T& P TECH 26-7-2020

T& P TECH 26-7-2020


302 responses

Publish analytics

Name
302 responses

Vedanthreddy. P

K.lakshmidevi

S.Arthika Izmah

Pushpa Leela

R.chennamma

M.Ashokkumar

G.rajappa

A. Afrin

H. HARIKRISHNA

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 1/29
7/27/2020 T& P TECH 26-7-2020

HT NO
302 responses

17hu1a0510

16hu1a0311

16HU1A0322

18hu1a0503

17hu1a0142

16hu1a0516

18hu1a0427

17hu1a0106

19hu5a0303

BRANCH
302 responses

CE
EEE
31.5%
ME
ECE
28.1%
CSE

11.9%

11.9%
16.6%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 2/29
7/27/2020 T& P TECH 26-7-2020

Year
301 responses

I Year
II Year
III Year
54.8%
11.6% IV Year

33.6%

162 responses

Option 1

100%

How many main() function we can have in our project?


302 responses

1
2
No limit
14.6% Depends on Compiler

75.2%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 3/29
7/27/2020 T& P TECH 26-7-2020

What is sizeof() in C?
302 responses

Operator
19.2% Function
Macro
None of these
7.6%

69.5%

int main() {externint i; i = 20;printf("%d", sizeof(i));return 0; }


302 responses

20
0
27.8% Undefined reference to i
21.9%
Linking Error

9.9%

40.4%

int main() {int x = 10; { int x = 0;printf("%d",x); }return 0;}


302 responses

10
48.7% Compilation Error
0
Undefined
6%

19.5%
25.8%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 4/29
7/27/2020 T& P TECH 26-7-2020

int x = 10; int main(){int x = 0;printf("%d",x);return 0;}


302 responses

10
0
18.9%
Compilation Error
undefind

55%
19.5%

Which programming language is more faster among these?


302 responses

Java
54.3% PHP
C
Visual Basic

37.1%

Which of the following is executed by Pre-process?


302 responses

#include<stdio.h>
8.9% return 0
9.6% void main(intargc , char ** argv)
None of above
9.3%

72.2%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 5/29
7/27/2020 T& P TECH 26-7-2020

int main() {int a = 5;int b = 10;int c = a+b;printf("%i",c); }


302 responses

0
15
13.2% Undefined i
Any other Compiler Error

76.5%

How many times CppBuzz.com is printed? int main(){int a = 0;while(a++ <


5)printf("CppBuzz.com");return 0;}
302 responses

4 times
5 times
0 time
14.9% Infinite times

60.3%
17.5%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 6/29
7/27/2020 T& P TECH 26-7-2020

What is the output of below program? int main(){for(; ;)for(;


;)printf("Hello..");return 0;}
302 responses

Compilation Error
54.3% Runtime Error
Hello is printed one time
Hello is printed infinite times

13.2%
18.9%
13.6%

What does the following function do for a given Linked List with the first
node as the head?void fun1(struct node* head){if(head == NULL)
return;fun1(head->next);printf("%d ", head->data);}
302 responses

Prints all nodes of linked lists


Prints all nodes of linked list in
12.9% reverse order
Prints alternate nodes of Linked
9.3% List
Prints alternate nodes in
64.9% reverse order
12.9%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 7/29
7/27/2020 T& P TECH 26-7-2020

Which one of the following is an application of Stack Data Structure?


302 responses

Managing function calls


The stock span problem
69.5% Arithmetic expression
evaluation
All of the above

9.3%

14.6%

Given a hash table T with 25 slots that stores 2000 elements, the load
factor α for T is _________
302 responses

80
15.2% 0.0125
8000
1.25

71.9%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 8/29
7/27/2020 T& P TECH 26-7-2020

The number of leaf nodes in a rooted tree of n nodes, with each node
having 0 or 3 children is:
302 responses

n/2
(n-1)/3
71.5% (n-1)/2
(2n+1)/3

9.9%

9.9%
8.6%

A binary tree T has 20 leaves. The number of nodes in T having two


children is
302 responses

18
19
17

11.6% Any number between 10 and 20

72.8%
10.3%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 9/29
7/27/2020 T& P TECH 26-7-2020

The time complexity of computing the transitive closure of a binary


relation on a set of n elements is known to be
302 responses

O(n)
58.6% O(nLogn)
O(n ^ (3/2))
O(n^3)

9.9%

9.9%
21.5%

Given an undirected graph G with V vertices and E edges, the sum of the
degrees of all vertices is
302 responses

E
2E
V
12.9% 2V

76.2%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 10/29
7/27/2020 T& P TECH 26-7-2020

How many undirected graphs (not necessarily connected) can be


constructed out of a given set V = {v1, v2, …vn} of n vertices?
302 responses

n(n-1)/2
2n
67.5%
n!
2n(n-1)/2

14.2%

8.6%
9.6%

What is the worst-case possible height of AVL tree?


302 responses

2Logn Assume base of log is 2


1.44log n Assume base of log is
19.5% 2
Depends upon implementation
Theta(n)

71.5%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 11/29
7/27/2020 T& P TECH 26-7-2020

A B-tree of order 4 is built from scratch by 10 successive insertions. What


is the maximum number of node splitting operations that may take place?
302 responses

3
4
5
71.9% 6

7.9%

14.6%

The basic requirement of a dc armature winding is that it must be


302 responses

A closed one
9.6% A lap winding
8.9% A wave winding
Either b or c
9.3%

72.2%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 12/29
7/27/2020 T& P TECH 26-7-2020

The critical resistance of the dc generator is the resistance of


302 responses

Armature
Field
Load
9.6% Brushes
73.2%

14.2%

An ideal dc generator has .......... voltage regulation.


302 responses

Low
Zero
Positive
11.3% Negative

76.8% 8.6%

Which generator has poorest voltage regulation


302 responses

Series
16.9% Shunt
Compound
9.9% High

71.9%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 13/29
7/27/2020 T& P TECH 26-7-2020

The voltage regulation of an over compound dc generator is always


302 responses

Positive
Negative
10.9% Zero
High

72.8% 9.6%

At lagging loads, armature reaction in an alternator is


302 responses

Cross-magnetising
57.6% Demagnetising
Non-effective
Magnetising

20.2%

15.6%

Armature reaction in an alternator mainly affects


302 responses

Rotor speed
59.3% Terminal voltage per phase
Frequency of armature current
Generated voltage per phase

18.5%
15.6%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 14/29
7/27/2020 T& P TECH 26-7-2020

The effect of increasing air gap length in the induction motor will increase
the
302 responses

Power factor
Speed
Magnetising current

66.6% Air gap flux


10.9%

10.3%

12.3%

The principle of operation of a 3 phase induction motor is most similar to


that of a
302 responses

Synchronous motor
Repulsion start induction motor
Transformer with a shorted
secondary
71.5%
7.9% Capacitor start, induction run
motor
11.6%

8.9%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 15/29
7/27/2020 T& P TECH 26-7-2020

Harmonics in transformer result in


300 responses

Increased core losses


Increased I2R losses
68.7%
Magnetic interference with
communication circuits
All of the above

12%

9%
10.3%

What is the Register address which matches the address of the stack?
302 responses

03H
07H
013H
13.2%
13H

66.9%

15.6%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 16/29
7/27/2020 T& P TECH 26-7-2020

Which of the following chip is used in 8085 microprocessor 3-chip


configuration?
302 responses

IC 8255
IC 8155
IC 8251
9.9%
IC 8257

74.5%
11.3%

The following are the interrupts of 8085 microprocessor: INTR TRAP RST 7.5
RST 5.5The correct order in which these interrupts will be executed if
arrive simultaneously:
302 responses

1, 2, 3, 4
2, 3, 1, 4
63.9%
2, 3, 4, 1
4, 1, 2, 3

14.9%

19.2%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 17/29
7/27/2020 T& P TECH 26-7-2020

In an 8085 microprocessor, the shift registers which store the result of an


addition and the overflow bit are, respectively
302 responses

B and F
A and F
H and F
9.9%
A and C

73.2%
11.6%

In a p-n junction diode at equilibrium, which one of the following


statements is NOT TRUE?
302 responses

The hole and electron diffusion


60.3% current components are in the
same direction.
The hole and electron drift
current components are in the
same direction.
9.6% On an average, holes and
electrons drift in opposite dire…
On an average, electrons drift
19.9%
and diffuse in the same directi…

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 18/29
7/27/2020 T& P TECH 26-7-2020

A MOSFET in saturation has a drain current of 1 mA for VDS = 0.5 V. If the


channel length modulation coefficient is 0.05 V–1 , the output resistance
(in kΩ) of the MOSFET is _______.
302 responses

25
18
62.6% 20
30

12.9%

19.9%

The built-in potential of an abrupt p-n junction is 0.75 V. If its junction


capacitance (Q) at a reverse bias (VR) of 1.25 V is 5 pF, the value of CJ (in
pF) when VR = 7.25 V is________.
302 responses

3.4
2.5
15.2% 4.7
3.5

8.3%
69.9%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 19/29
7/27/2020 T& P TECH 26-7-2020

Tunnel diode is basically a junction diode with


302 responses

High doping in P-region alone


High doping in p and n regions,
both
12.6%
High doping in n region alone
Low doping in both P and n
regions
75.2% 7%

A BJT is biased in forward active mode, Assume 0.7, / 25 V kT q mV BE ==


and reverse saturation current 13 10 . s =I A = The trans conductance of the
BJT (in mA/V) is ________.
301 responses

4.425
52.5% 4.475
5.525
5.785

9%
15.9%

22.6%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 20/29
7/27/2020 T& P TECH 26-7-2020

JMP 2034H in 8085 μp is an example of __________.


302 responses

1 byte instruction
2 byte instruction
50.7% 3 byte instruction
None of the above
10.9%

20.9%

17.5%

A linear Hamming code is used to map 4- bit messages to 7-bit


codewords. The encoder mapping is linear. If the message 0001 is mapped
to the codeword 0000111, and the message 0011 is mapped to the
codeword 100110, then the message 0010 is mapped to
302 responses

1111000
48% 0010011
1111111
1100001

11.3%
16.2%

24.5%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 21/29
7/27/2020 T& P TECH 26-7-2020

The Boolean expression ( )( )( ) X Y X Y X Y X simplifies to


302 responses

X
Y
XY
22.5%
X+Y

60.9% 7.3%

9.3%

In a DRAM,
302 responses

periodic refreshing is not


12.9% required
information is stored in a
19.9% capacitor
information is stored in a latch
both read and writes operations
can be performed
simultaneously
63.9%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 22/29
7/27/2020 T& P TECH 26-7-2020

ASCII code has 128 characters, which are binary coded. If a computer
generates 10000000 characters per second, then minimum bandwidth
required to transmit this signal will be
300 responses

1.4 mbps
14 mbps
34.3%
7 mbps
0.7 mbps

33.3%
14.3%

18%

A multiplexer :(i) Selects one of the several inputs and transmits to a single
output. (ii) Routes the data from a single input to one of many outputs. (iii)
Converts parallel data into serial data. (iv) It is a combinational circuit.
Which one of the following is correct?
300 responses

(i), (ii) & (iv)


(ii), (iii) & (iv)
56.7% (i), (iii) & (iv)
(i), (ii) & (iii)

12%

25%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 23/29
7/27/2020 T& P TECH 26-7-2020

Which of the following circuit comes under the class of sequential logic
circuits?
301 responses

Multiplexer
RS Latch
16.9%
Full Adder
ROM
8%
52.8%

22.3%

Microprocessor development had happened because of LSI. What is LSI ?


302 responses

Large Scale Integral


Large Signal Integration
67.9% Large Scale Integration
Long Signal Integration

14.9%

15.9%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 24/29
7/27/2020 T& P TECH 26-7-2020

In 8085, example for Non-maskable interrupts is


302 responses

Trap
RST 6.5
27.5%
16.9% INTR
RSTO

53.6%

A 16 Kb (=16,384 bit) memory array is designed as a square with an aspect


ratio of one (number of rows is equal to the number of columns). The
minimum number of address lines needed for the row decoder is
__________ .
302 responses

5
7
23.8%
8
9

11.3%
61.3%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 25/29
7/27/2020 T& P TECH 26-7-2020

In UJT, the value of stand-off ratio is


302 responses

0.2
26.5% 0.4
0.7
0.98

9.3%
57.6%

Dolphin is related to Whale as Hammerhead is related to ...?...


302 responses

Shark
15.9% Rhino
Lion
Giraffe
8.9%

67.9%

Sketch is related to Outline in the same way as ...?... is related to Plans.


302 responses

Execution
47% Completion
Implementation
Preparation

18.2%
23.8%
10.9%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 26/29
7/27/2020 T& P TECH 26-7-2020

Typewriter is related to Computer as ...?...is related to Calculator.


302 responses

Graph
Numbers
60.9%
Abacus
Tables

7%

28.1%

Captain is related to Team as ...?... is related to Group.


302 responses

Strongest
Tallest
Manager
78.8%
Leader

Nap is related to Sleep in the same way as ...?... is related to Meal.


302 responses

Coffee
Desert
66.6%
Bite
Snack

7%

14.2%
12.3%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 27/29
7/27/2020 T& P TECH 26-7-2020

Calamity is related to Nature as ...?... is related to Error.


302 responses

Accident
46.4% Blast
Earthquake
None of these

10.6%
32.1%
10.9%

Honor is related to Award as Bonus is related to ...?...


302 responses

Gift
Honorarium
Salary
16.6% Profit
59.9%

11.6%

11.9%

Punishment is related to Crime as Reprimand is related ...?...


302 responses

Mistake
38.7% Blunder
Absence
9.6% Argument

11.3%

40.4%

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 28/29
7/27/2020 T& P TECH 26-7-2020

Century is related to Cricket in the same way as ...?... is related to Football.


302 responses

Goal
16.6% Hat trick
Penalty
8.6% Save

72.5%

Cash is related to Pocket as ...?... is related to Bank.


302 responses

Interest
Dividend
Deposit
72.8% Earnings

14.9%

This content is neither created nor endorsed by Google. Report Abuse - Terms of Service - Privacy Policy

 Forms

https://docs.google.com/forms/d/1R47X5BpLH0RNHKUMdccmCs_EE8kmuQplcKAtddBMHts/viewanalytics 29/29

You might also like