______ involves traversing the entire file system, marking everything that can be accessed. (1) Index pointer (2) Garbage collection (3) File system (4) Stack pointer

1 Answer

Answer :

Garbage collection

Related questions

Description : The stack pointer in the 8085 microprocessor is a: a) 16 bit register that points to stack memory locations b) 16 bit accumulator c) Memory location in the stack d) None of The Above

Last Answer : a) 16 bit register that points to stack memory locations

Description : What is the name of a memory buffer used to accommodate a speed differential ? (1) Cache (2) Stack Pointer (3) Accumulator (4) Disc

Last Answer : Cache

Description : The traveling salesman problem involves n cities with paths connecting the cities. The time taken for traversing through all the cities, without knowing in advance the length of a minimum tour, is ___________ a) O(n) b) O(n2) c) O(n!) d) O(n/2)

Last Answer : c) O(n!)

Description : What’s the .NET collection class that allows an element to be accessed using a unique key? 

Last Answer : HashTable. 

Description : What’s the .NET collection class that allows an element to be accessed using a unique key?

Last Answer : HashTable.

Description : When subroutine is called contents of program counter is location address of __ instruction following call instruction is stored on _ __and program execution is transferred to __ address. a. Non ... , Stack and Main program Cc. Executable, Queue and Subroutine d. Executable, Stack and Subroutine

Last Answer : d. Executable, Stack and Subroutine

Description : The _stack can be 4-word memory addressed by 2 bits from an up/down counter known as the stack pointer: a. FIFO b. PIPO c. SISO d. LIFO

Last Answer : d. LIFO

Description : Opcode is the machine instruction obtained from decoding instruction stored in. a. Stack pointer b. Address pointer Cc. Instruction register d. Incrementer

Last Answer : Cc. Instruction register

Description : In stack organization address register is known as the: a. Memory stack b. Stack pointer c. Push operation d. Pop operation

Last Answer : b. Stack pointer

Description : Which operation are done by increment or decrement the stack pointer: a. Push b. Pop ce. Both d. None

Last Answer : ce. Both

Description : The stack pointer is maintained in a : a. Data b. Register c. Address d. None of these

Last Answer : b. Register

Description : In microprocessor the next instruction to be executed is stored in a) Program Counter b) Stack Pointer c) Memory Pointer d) Accumulator

Last Answer : Ans: Program Counter

Description : When the RET instruction at the end of subroutine is executed, a. the information where the stack is iniatialized is transferred to the stack pointer b. the memory address of the RET instruction is ... two data bytes stored in the top two locations of the stack are transferred to the stack pointer

Last Answer : c. two data bytes stored in the top two locations of the stack are transferred to the program counter

Description : When a subroutine is called, the address of the instruction following the CALL instructions stored in/on the a. stack pointer b. accumulator c. program counter d. stack

Last Answer : d. stack

Description : A stack pointer is a. a 16-bit register in the microprocessor that indicate the beginning of the stack memory. b. a register that decodes and executes 16-bit arithmetic expression. c. The first memory location where a subroutine address is stored. d. a register in which flag bits are stored

Last Answer : a. a 16-bit register in the microprocessor that indicate the beginning of the stack memory.

Description : SP stand for: a. Stack pointer b. Stack pop c. Stack push d. None of these

Last Answer : a. Stack pointer

Description : The processor uses the stack to keep track of where the items are stored on it this by using the: a. Stack pointer register b. Queue pointer register c. Both a & b d. None of these

Last Answer : a. Stack pointer register

Description : The subprogram finish the return instruction recovers the return address from the: a. Queue b. Stack c. Program counter d. Pointer

Last Answer : b. Stack

Description : SP stands for: a. Status pointer b. Stack pointer c. a and b d. None of these

Last Answer : b. Stack pointer

Description : In 8085 name the 16 bit registers? a) Stack pointer b) Program counter c) a & b

Last Answer : c) a & b

Description : What Is A Stack Pointer Register, Describe Briefly.?

Last Answer : Answer :The Stack pointer is a sixteen bit register used to point at the stack. In read write memory the locations at which temporary data and return addresses are stored is known as the stack. ... to avoid program crashes a program should always be written at one end and initialized at the other.

Description : What Is Stack Pointer?

Last Answer : Answer :Stack pointer is a special purpose 16-bit register in the Microprocessor, which holds the address of the top of the stack.

Description : Describe the functions of stack pointer and program counter of 8085. 

Last Answer : Stack pointer: 1. It is a 16 bit register which is used to store the address of topmost filled memory location of stack memory. 2. SP always points current top of stack. 3. If data is ... of memory and in 8085 the address of memory is 16 bit. Hence program counter is 16 bit register.

Description : When you start an Oracle DB which file is accessed first?

Last Answer : Oracle first opens and reads the initialization parameter file (init.ora) [oracle@hostname ~]$ls -la $ORACLE_HOME/dbs/initDB1_SID.ora -rw-r--r-- 1 oracle oinstall 1023 May 10 19:27 /u01/app/oracle/product/ ... 1 0 12:59 ? 00:00:05 ora_pmon_DB1_SID oracle 6779 1 0 12:59 ? 00:00:06 ora_smon_DB1_SID

Description : In the ………………… mode any record in the file can be accessed at random A) Sequential access B) Random access C) Standard access D) Source access

Last Answer : B) Random access

Description : What is a Garbage collection?

Last Answer : Garbage collection is the mechanism that reclaims the memory resources of an object when it is no longer referenced by a variable. And Net Runtime performs automatically performs garbage collection

Description : Briefly describe how garbage collection works.

Last Answer : The garbage collector is a thread that runs in the background of managed .NET applications. It constantly traces the reference tree and attempts to find objects that are no longer referenced. When a nonreferenced object is found, its memory is reclaimed for later use.

Description : Describe garbage collection (in simple terms).

Last Answer : Garbage collection eliminates uneeded objects. 1. the new statement allocates memory for an object on the heap. 2. When no objects reference the object it may be removed from the heap (this is a non deterministic process). 3. Finalize is called just before the memory is released.

Description : Does garbage collection guarantee that a program will not run out of memory?

Last Answer : Ans. Garbage collection does not guarantee that a program will not run out of memory. It is possible for programs to use up memory resources faster than they are garbage collected. It is also possible for programs to create objects that are not subject to garbage collection

Description : Describe the java garbage collection mechanism?

Last Answer : Since objects are dynamically allocated by using the new operator, you might be wondering how such objects are destroyed and their memory released for later reallocation. The technique that accomplishes this is ... to be no longer needed, and the memory occupied by the object can be reclaimed.

Description : _________is a copy of Basic Input/Output Operating System (BIOS) routines from Read Only Memory (ROM) into a special area of RAM so that they can be accessed more quickly. A. Dynamic RAM B. Shadow RAM C. Synchronous Graphics RAM D. Video RAM

Last Answer : B. Shadow RAM

Description : As compared to diskettes, the hard disks are A) More expensive B) More portable C) Less rigid D) Slowly accessed

Last Answer : Answer : A

Description : Critical Region is: a) a set of instructions that access common shared resources which exclude one another in time b) the portion of the main memory which can be accessed only by one process at a time. c) Both of The Above d) None of The Above

Last Answer : a) a set of instructions that access common shared resources which exclude one another in time

Description : A collection of interrelated records is called a 1) Management Information System 2) Spread Sheet 3) Database 4) Text file

Last Answer : 3) Database

Description : A collection of related instructions organized for a common purpose is referred to as A) File B) Database C) Program D) None of above

Last Answer : Answer : C

Description : A _______ is a collection of information saved as a unit: a) Folder b) File Extension c) File d) Path e) Print Out

Last Answer : c) File

Description : The Assistant is -. 1) an application that allows you to take notes and save them in a file 2) an animated character that provides help and suggestions 3) a button on the standard Toolbar that executes the Print command 4) a collection of frequently misspelled words in a dictionary file

Last Answer : 2) an animated character that provides help and suggestions

Description : The Unix Kernel maintains two key data structures related to processes, the process table and the user structure. Which of following information is not the part of user structure? (A) File descriptor table (B) System call state (C) Scheduling parameters (D) Kernel stack

Last Answer : (C) Scheduling parameters

Description : Prior to taking a resistance reading with a volt-ohm-milliammeter, the 'zero' setting must be adjusted. After clipping the two leads together, you find the adjustment knob will not return the pointer ... range setting B. weak batteries C. a faulty zero ohms knob D. a faulty meter movement

Last Answer : Answer: B

Description : In plant breeding programmes, the entire collection (of plants/seeds) having all the diverse alleles for all genes in a given crop is called (a) evaluation and selection of parents (b) germplasm collection (c) selection of superior recombinants (d) cross-hybridisation among the selected parents.

Last Answer : (b) germplasm collection

Description : Energy audit involves and of energy related data on regular basis and in a methodological manner. a) collection. c) Both a&b. b) Analysis. d) Only a.

Last Answer : Both a&b. 

Description : LIFO is ______ where as FIFO is ________ a) Stack, Queue b) Queue, Stack c) Priority Queue, Stack d) Stack. Priority Queue

Last Answer : a) Stack, Queue

Description : A global - as opposed to international - strategy involves: a) a wide variety of business strategies across countries. b) a single strategy for a subsidiary of a multinational firm. c) ... and partners. d) a wide variety of subsidiary strategies within the global network of subsidiaries

Last Answer : a single strategy for the entire global network of subsidiaries and partners.

Description : Which one of the following procedures for getting accurate orientation is the most distinctive feature of the art of plane tabling? (A) Radiation (B) Intersection (C) Traversing (D) Resection

Last Answer : (D) Resection

Description : The methods used for locating the plane table stations are (i) Radiation (ii) Traversing (iii) Intersection (iv) Resection The correct answer is (A) (i) and (ii) (B) (iii) and (iv) (C) (ii) and (iv) (D) (i) and (iii)

Last Answer : (C) (ii) and (iv)

Description : The process of determining the locations of the instrument station by drawing re sectors from the locations of the known stations is (A) Radiation (B) Intersection (C) Resection (D) Traversing

Last Answer : (C) Resection

Description : Which of the following methods of plane table surveying is used to locate the position of an inaccessible point? (A) Radiation (B) Intersection (C) Traversing (D) Resection

Last Answer : (B) Intersection

Description : The two point problem and three point problem are methods of (A) Resection (B) Orientation (C) Traversing (D) Resection and orientation

Last Answer : (D) Resection and orientation

Description : Detailed plotting is generally done by (A) Radiation (B) Traversing (C) Resection (D) All of the above

Last Answer : (A) Radiation