Answer Posted / shanu zabeen
if the searched page is found in cache memory then it will
be a hit
if it is not found in cache memory then it is miss.
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
Do not use more than 3 nested IF. Use Evaluate statement in case of more IF required. Please give a detail explantion besides readability and clarity for Evaluate stmt.
what is best way to create a Thread class & why?
which worker is involved in all the phases of SDLC?
what is the use MDM(Master Data Management)and meaning
I m Abdullah Ansari compleated MCA from Jamia Hamdard,i have appeared the test of IBM on 2 august at oxford college of engineering Bangalore.waiting for hr round.. This is the first round for IBM.02/08/08 Paper consists of 4 sections 15 questions from matrices(time very less but no negative marking). 25 questions from series completion section (this section is very easy but negative marking) 15 questions from aptitude(little bit tough time limit 15 minute negative marking) 4th section is from computer science (c,c++,operating system,digital electronics ,basic question..) result came at 3 o'clock.i was selected... In interview they asked questions like 1 they asked about final yr project.. 2 what are dynamic and static memory location? 3 linked list and array difference between them. 4 what is function ? what is difference betwen function and inline function? 5 about structure 6 about binary tree, traversal, call by value. 7 storage class and many more basic questions..
what is integration testing in real time applications?
what is the use of occurs 10 or (any number) in the internal table declaration with header line.
details description on this mantis? who is founder of this mantis?
When will you use shell script/Perl ahead of C/C++?
Given an array all of whose elements are positive numbers, find the maximum sum of a subsequence with the constraint that no 2 numbers in the sequence should be adjacent in the array. So 3 2 7 10 should return 13 (sum of 3 and 10) or 3 2 5 10 7 should return 15 (sum of 3, 5 and 7)
Define distributed queries. can you explain me as soon as possible
how do we provide security for web services
how we can know the funcions available in a class recording java?
How can recruiter justified that the candidate is expert in Algorithm and datastructure for Software product development ?
SAS question: I have 50 fils a1,a2,...,a50. the primary key is upc. then if i want to merge all 50 files, the code is as follows, data test; merge a1 ... a50; by upc; run; we know that writing all 50 files name is time consuming, is there any standard format of this code?