___is the statement block of for loop lies inside block of another for loop:

a. Nested for loop
b. Nested while loop
c. Nested do-while loop
d. None of these

1 Answer

Answer :

a. Nested for loop

Related questions

Description : A subroutine called by another subroutine is called: a. Nested b. For loop c. Break d. Continue

Last Answer : a. Nested

Description : Memory —mapped ___is used this is just another memory address. a. Input b. Output c. Both d. None

Last Answer : c. Both

Description : ___is the data paths link CPU registers with memory or I/O modules. a. External data paths b. Internal data paths c. Boreal data paths d. Exchange data paths

Last Answer : a. External data paths

Description : The continue statement is used to transfer the control to the_ ___ of astatement block in a loop. a. End b. Beginning c. Middle d. None of these

Last Answer : b. Beginning

Description : The statement is used to transfer the control to the end of statement block in a loop. a. Continue b. Break c. Switch d. Goto

Last Answer : b. Break

Description : By defining the _ __ register as last in first out stack the sequence can handle nested subroutines: a. S b. J ce. R d. T

Last Answer : ce. R

Description : statement block is executed atleast once for any value of the condition. a. For statement b. Do-while statement c. While statement d. None of these

Last Answer : b. Do-while statement

Description : Types of loop control statements are. a. For loop b. While loop c. Do-while loop d. All of these

Last Answer : d. All of these

Description : What is Nested Loop ?

Last Answer : If one or more loops are placed inside a loop , it is called a nested loop. If multiple for statements are used in multiple programs , the first statement is called the outer loop and the next statement is called the Inner loop .

Description : How many types of loop control structures in C language. a. 4 b 65 c. 2 d. 8

Last Answer : d. 8

Description : _is sequence of instructions is executed and repeated any no. of times in loop until logical condition is true: a. Iteration b. Repetition c Botha&b d. None of these

Last Answer : c Botha&b

Description : is a small program tested separately before combining with final program: a Module b. Block c. selection d. none of these

Last Answer : a Module

Description : A is written as separate unit, apart from main and called whenever necessary: a. Subroutine b. Code c. Block d. None of these

Last Answer : a. Subroutine

Description : In RISC architecture access to registers is made as a block and register file in a particular register can be selected by using: a. Multiplexer b. Decoder c. Subtractor d. Adder

Last Answer : b. Decoder

Description : Linux command to create nested directories (a directory inside a directory) -Web-Development

Last Answer : answer:

Description : Which functions are performed by CU: a. Data exchange b/w CPU and memory or I/O modules b. External operations c. Internal operations inside CPU d Botha&c

Last Answer : d Botha&c

Description : Which are internal operations inside CPU: a. Data transfer b/w registers b. Instructing ALU to operate data c. Regulation of other internal operations d. All of these

Last Answer : d. All of these

Description : Which lock can arise when two processes wait for phone calls from one another. a. Spine lock b. Dead lock c. Both d. None of these

Last Answer : b. Dead lock

Description : sof anumber from another can be accomplished by adding the complement of the subtrahend to the minuend. a. Subtraction b. Multiply c. Divide d. — Allof these

Last Answer : a. Subtraction

Description : Which micro operations carry information from one register to another. a. Register transfer b. Arithmetic c. Logical d. — Allof these

Last Answer : a. Register transfer

Description : __is data paths there is movement of data from one register to another or b/w ALU and a register. a. External b. Boreal c. Internal d. Exchange

Last Answer : c. Internal

Description : In Goto statement the place to which control is transferred is identified by a statement so a. Label b. Display c. Break d. None of these

Last Answer : a. Label

Description : subroutines are invoked by using their___ _ ina subroutine call statement and replacing formal parameters with__ __ parameters: a. Identifier and formal b. Identifier and actual c. Expression and arguments d. None of these

Last Answer : b. Identifier and actual

Description : In program control the instruction is set for the statement in a: a. Parallel b. Sequence c. Both d. None

Last Answer : b. Sequence

Description : ___is rupture of red cells with release of intracellular haemoglobin can occur if the Antibody has the property of hemolysin. a) Agglutination b) Hemolysis c) Reaction

Last Answer : b) Hemolysis is the rupture of red blood cells with the release of intracellular hemoglobin, and it can occur if the antibody has the property of hemolysin. Hemolysis is the destruction or ... bacteria, and viruses, and it is a key principle in many diagnostic tests for infectious diseases.

Description : ___is defined as clumping of particles that have antigen on their surface and is brought about by anti-bodies. a) Agglutination b) Hemolysis c) Reaction

Last Answer : a) Agglutination is defined as clumping of particles that have antigen on their surface and is brought about by antibodies. Agglutination is a phenomenon that occurs when there are particles with antigens on ... reactions. In this context, it's not specific enough to be an answer to the question.

Description : ___is the example of CAM plant (Century plant). (A) Pineapple (B) Coconut (C) Sunflower (D) Watermelon

Last Answer : (A) Pineapple

Description : ___is known as mezzanine capital.(a)Development financing b) expansion financing c) replacement finance)

Last Answer : .(a)Development financing

Description : In root locus plot, a point on the real axis lies on the locus, if the number of open loop poles plus zeros on real axis to the a) left of the point is odd b) left of the point is even . c) right of the pointis odd d) right of the point is even

Last Answer : In root locus plot, a point on the real axis lies on the locus, if the number of open loop poles plus zeros on real axis to the right of the pointis odd

Description : Can you solve this Russian nested doll problem?

Last Answer : Each individual piece (either top or bottom) differs in height from the next smallest or next largest by the thickness of the wood.

Description : What is Nested Hierarchy ?

Last Answer : A method of classification. State subset episode , episode subset class

Description : Can you have nested namespaces? 

Last Answer : Yes

Description : Can nested classes use any of the 5 types of accessibility?

Last Answer : Yes

Description : What is a nested class?

Last Answer : A class declare within a class. 

Description : Define what is nested class?

Last Answer : Nested classes are classes within classes. A nested class is any class whose declaration occurs within the body of another class or interface.

Description : Inner classes are A) anonymous classes B) nested classes C) sub classe

Last Answer : B) nested classes

Description : …………… table store information about database or about the system. A) SQL B) Nested C) System D) None of these

Last Answer : C) System

Description : In the past, the method for expressing an opinion has been to frame a ____ question based on available factual evidence. (A) Hypothetical (B) Nested (C) Challenging (D) Contradictory

Last Answer : (A) Hypothetical

Description : In the past, the method for expressing an opinion has been to frame a ____ question based on available factual evidence. A. Hypothetical B. Nested C. Challenging D. Contradictory

Last Answer : A. Hypothetical

Description : Explain nested if-else with example.

Last Answer : When a series of decision is required, nested if-else is used. Nesting means using one if-else construct within another one. If the condition in the outer if, is true, then only the inner if-else will get executed. ... } else { printf("Number is less than 5"); } getch(); }

Description : Give a method to create, declare and initialize structure also develop a program to demonstrate nested structure.

Last Answer : Declaration of structure:- struct structure_name { data_type member 1; data_type member 2; . . . data_type member n; } structure variable 1, structure variable 2,..., structure variable n ... .collegeid); printf("\n College name=%s",s.c.collegename); getch(); }

Description : In the past, the method for expressing an opinion has been to frame a ____ question based on available factual evidence. A. Hypothetical B. Nested C. Challenging D. Contradictory

Last Answer : A. Hypothetical  

Description : It is possible to define a class within a class termed as nested class. There are ............ types of nested classes. (A) 2 (B) 3 (C) 4 (D) 5

Last Answer : Answer: A, C

Description : emaphore provides mutual exclusion for accesses to the buffer pool and is initialized to the value: a. Mutex b. Mutual Cc. Memory d. __ Allof these

Last Answer : Mutex

Description : Which section is basically a sequence of instruction with a clear indication of beginning and end for updating shared variables. a. Racing section b. Critical section c. d. Both None of thes

Last Answer : . Critical sectio

Description : In which section only one process is allowed to access the shared variable and all other have to wait. a. Critical section b. Racing section Cc. Entry section d. Remainder section

Last Answer : . Critical section

Description : hich section is the remaining part of a process’s code: a. Racing section b. Critical section Cc. Entry section d. Reminder secti

Last Answer : b. Entry section

Description : Which are the characteristics of deadlocks. a. Mutual exclusion b. Hold and wait Cc. No pre-emption d. = Circular wait e. Allof these

Last Answer : e. Allof these

Description : How many events concerning RAG can occur in a system: a. 1 b 2 c. 3 d 4

Last Answer : c. 3