Most answered questions in Non GATE

6 votes
3 answers
81
Consider the following pseudo- codewhile (m<n) if (x>y ) and (a<b) then a=a+1 y=y-1 end if m=m+1 end whileWhat is cyclomatic complexity of the above pseudo -code?2345
5 votes
3 answers
84
In Java, after executing the following code what are the values of x, y and z?int x,y=10; z=12;x=y++ + z++;x=22, y=10, z=12x=24, y=10, z=12x=24, y=11, z=13x=22, y=11, z=1...
5 votes
3 answers
85
Which of the following is not an image type used in $\text{MPEG}?$$\text{A}$ frame$\text{B}$ frame$\text{D}$ frame$\text{P}$ frame
4 votes
3 answers
86
To add a background color for all <h1 elements, which of the following HTML syntax is usedh1 { background-color :#FFFFFF}{ background-color :#FFFFFF} . h1h1 { background-...
4 votes
3 answers
88
The feature in object-oriented programming that allows the same operation to be carried out differently, depending on the object, isInheritancePolymorphismOverfunctioning...
3 votes
3 answers
89
5 votes
3 answers
90
A Steiner patch isBiquadratic Bezeir patchBicubic patchCircular patch onlyBilinear Bezier patch
6 votes
3 answers
91
The device which is used to connect a peripheral to bus is known ascontrol registerinterfacecommunication protocolnone of these
4 votes
3 answers
92
The advantage of MOS devices over bipolar devices is thatit allows higher bit densities and also cost effectiveit is easy to fabricateit is higher-impedance and operation...
5 votes
3 answers
93
Which of the following models used for software reliabilityWaterfallMusaCOCOMORayleigh
3 votes
3 answers
94
In UML diagram of a classstate of object cannot be representedstate is irrelevantstate is represented as an attributestate is represented as a result of an operation
8 votes
3 answers
95
An email contains a texual birthday greeting, a picture of a cake and a song. The order is not important. What is the content-type?Multipart/mixedMultipart/parallelMultip...
5 votes
3 answers
96
How much memory is required to implement $z$-buffer algorithm for a $512 \times 512 \times 24$ bit-plane image?$768$ KB$1$ MB$1.5$ MB$2$ MB
2 votes
3 answers
97
Which of the following testing methods uses fault simulation technique?Unit testingBeta testingStress testingMutation testing
7 votes
3 answers
98
If the frame buffer has 8 bits per pixel and 8 bits are allocated for each of the $R, G, B$ components, what would be the size of the lookup table?$24$ bytes$1024$ bytes$...