Recent questions tagged non-gate

0 votes
2 answers
511
4 votes
2 answers
514
Configuration management is not concerned withcontrolling changes to the source codechoice of hardware configuration for an applicationcontrollling documentation changesm...
1 votes
1 answer
516
3 votes
1 answer
518
A computing architecture, which allows the user to use computers from multiple administrative domains to reach a common goal is called asGrid ComputingNeutral NetworksPar...
6 votes
1 answer
519
A web client sends a request to a web server. The web server transmits a program to that client ans is executed at client. It creates a web document. What are such web do...
5 votes
1 answer
520
7 votes
2 answers
522
The conic section that is obtained when a right circular cone is cut through a plane that is parallel to the side of the cone is called _____parabolahyperpolacircleellips...
4 votes
1 answer
523
If the maximum output voltage of a DAC is $V$ volts and if the resolution is $R$ bits then the weight of the most significant bit is ________$V/(2^R -1)$$(2^{R-1}).V/(2^R...
4 votes
2 answers
525
Which of the following is not a maturity level as per Capability Maturity Model?InitialMeasurableRepeatableOptimized
2 votes
1 answer
527
Why Java does not support multiple inheritance?i want answer in simple words. i have searched for this answer in every textbook.Everytext just says that it doesnot suppor...
1 votes
1 answer
528
Which of the following methods from Object is final ( that it cannot be overriden ) ?(A) finalize method(B) clone method(C) hashCode method(D) getClass method
2 votes
2 answers
531
3 votes
4 answers
532
6 votes
3 answers
533
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
3 votes
2 answers
534
Logic family popular for low power dissipationCMOSECLTTLDTL
7 votes
2 answers
535
In HTML, which of the following can be considered a container?<SELECT><Value><INPUT><BODY>
7 votes
2 answers
536
Find the output of the following Java code line System.out.printIn(math.floor(-7.4))-7-8-7.4-7.0
4 votes
4 answers
537
Which of the following UNIX command allows scheduling a program to be executed at the specifies time?cronnicedate and timeschedule
4 votes
2 answers
538
GivenX:01016Y:61628The interpolated value X=4 using piecewise linear interpolation is1142210
6 votes
2 answers
539
Warnier Diagram enables the analyst to representClass structureInformation HierarchyData FlowState Transition
5 votes
3 answers
540
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...