ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip   SiteMap shows list of All Categories in this site.
Google
 
Categories >> Software >> Operating-Systems >> Operating-Systems-AllOther
 
 


 

Back to Questions Page
 
Question
Can I install the Operating System in USB Poratable Drive 
in 250 or 120GB?
Rank Answer Posted By  
 Question Submitted By :: Abdul Haneef
This Interview Question Asked @   IBM
I also faced this Question!!   © ALL Interview .com
Answer
Yes, we can Install the Operating System in USB Portable 
Drive.
 
0
Pradeep Agarwal
 
 
Question
MY system is showing "BOOT FAILURE:SYSTEM HALTED" after 
restarting the system
please give me the solution for this problem
       thanking you...........
Rank Answer Posted By  
 Question Submitted By :: Jaan
This Interview Question Asked @   ITC-Infotech
I also faced this Question!!   © ALL Interview .com
Answer
first chekout the inside buscables,powrcables. after that
repair the operating system.
 
0
Madhu_m
 
 
Question
What is TSY?
Rank Answer Posted By  
 Question Submitted By :: Reejusri
This Interview Question Asked @   Samsung , Samsung, Tata
I also faced this Question!!   © ALL Interview .com
Answer
Technology Systems
 
0
Kalyani
 
 
 
Answer
technology systems
 
3
Bade Veeranjaneyulu
[********]
 
 
Answer
As i know these 3 are the Definition of "TSY" Acronym.
TSY Technology Systems (Bellcore) 
TSY Telephony Subsystem 
TSY The Sophomore Year (band)
 
0
Pradeep Agarwal
[********]
 
 
Question
What operating systems provide threads?
Rank Answer Posted By  
 Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
java provides thread mechanism
 
3
Pavi
 
 
Answer
java
 
3
Pavi
 
 
Answer
Java is not the operating system.
Unix provide multithreading but ms-dos doesnt.
 
0
Vinay
 
 
Answer
java
 
0
Bade Veeranjaneyulu
 
 
Question
what are Prerequisites to Install Active Directory in 
windows 2000 server?
Rank Answer Posted By  
 Question Submitted By :: Saim.saiyed
This Interview Question Asked @   ISL
I also faced this Question!!   © ALL Interview .com
Answer
DNS
 
0
Saim.saiyed
 
 
Answer
Static IP, Network cable should be terminated, Server Name
and Domain Name
 
0
Karthick
[Intellvisions Software Ltd.]
 
 
Question
Virtual memory size depends on
    [a] address lines    [b] data bus
    [c] disc space       [d] a & c    [e] none
Rank Answer Posted By  
 Question Submitted By :: Guest
This Interview Question Asked @   Wipro , VIT Infotech
I also faced this Question!!   © ALL Interview .com
Answer
e
 
1
Ramakroshna
 
 
Answer
a
 
0
Xx
 
 
Answer
c      bcoz virtual memoy means the external memory that we 
connect to our system ie harddisk
 
0
Sairam
 
 
Answer
a
 
0
Liam
 
 
Answer
[d] a & c
 
0
Abdul Mannan
 
 
Answer
Size of Virtual Memory depends on the size of the System 
RAM installed, generally the size spans a minmimum 1.5-2 
times to maximum 3-4 times of the RAM. However, this space 
is taken from free space available on the Hard Disk Drive 
of Computer.
If I understand correctly, the "size" of Virtual Memory 
depends on the RAM installed. Hence, the answer should 
be "[e]".
 
0
Tulsi
 
 
Question
What is a semaphore?
Rank Answer Posted By  
 Question Submitted By :: Guest
This Interview Question Asked @   Motorola
I also faced this Question!!   © ALL Interview .com
Answer
Semaphores r software, blocking, OS assistance solution to 
the mutual exclusion problem .It is
basically a non-negative integer variable that saves the 
number of wakeup signals sent so they are not lost if the 
process is not sleeping 

another interpretation is that the semaphore value 
represents the number of resources available 
 
0
Swetcha
 
 
Answer
Semaphore is a machanism to resolve resources conflicts by
tallying resource seekers what is the state of sought
resources, achieving a mutual exclusive access to resources.
Often semaphore operates as a type of mutual exclusive
counters (such as mutexes) where it holds a number of access
keys to the resources. Process that seeks the resources must
obtain one of those access keys, one of semaphores, before
it proceeds further to utilize the resource. If there is no
more such a key available to the process, it has to wait for
the current resource user to release the key.
 
0
Kwrtos
 
 
Answer
A semaphore, a new variable type.
A semaphore could have the value 0,indicating that no 
wakeups were saved, or some positive values if one or more 
wakeups were pending.
a semaphore s is an integer variable that apart from 
initialization, is accesssed only through two standard 
atomic operations, wait and signal. these operations were 
orignially termed p(for wait to test) and v(for signal to 
increment).
The classical defination of wait in psedocode is
wait(s)
{
while(s<=0)
;// no-op
s--;
}
The classical defination of signal in psedocode is
signal(s)
{
s++;
}
Modification to the integer value of smaphore in wait and 
signal operations must be executed individually.
that is, when one process modifies the semaphore value no 
other process can simultaneously modifiy that same 
semaphore value.
 
0
Jethva_trupti
 
 
Answer
semopore is s\w
 
0
Sankar
 
 
Question
What is deadlock? How do you avoid it?
Rank Answer Posted By  
 Question Submitted By :: Guest
This Interview Question Asked @   Motorola
I also faced this Question!!   © ALL Interview .com
Answer
A set of processes is deadlocked if each process in the set 
is waiting for an event that only another process in the 
set can cause (including itself). 
To avoid these r the stratagies to be followed

 
Attacking Mutex condition 
Attacking preemption 
Attacking hold and wait condition 
Attacking circular wait
 
0
Swetcha
 
 
Answer
Deadlock is permanent blocking of the set processes that 
either compete for system resources or communicate each 
other.
we can avoid deadlock by avoiding the following conditions:
1.Mutual Exclusion
2.Hold and wait.
3.No preemption.
4.circular wait.
 
0
Kalyani
 
 
Question
How does the scheduler know the time how it should be scheduled.
Rank Answer Posted By  
 Question Submitted By :: Guest
This Interview Question Asked @   Motorola
I also faced this Question!!   © ALL Interview .com
Answer
It depends on what type of scheduling policy has been
chosen. In general, the way to schedule the time quantum
(time slice)is either to take a fixed or variable length of
time unit. In an adaptive style of scheduling policy, the
scheduler will give a high priority process as much time as
it needs unless another higher priority process comes in the
ready queue to demand quantum of execution time. In this
case, a variable number of time units will be given to that
process. However, in a round-robin style of scheduling
policy, the time quantum is fiexed and predefined, and each
of processes that gets its turn to run through the time
quantum will complete the full length of the time unit
allocated to it before a context switch takes place. In
other words, the scheduler has to schedule the processes
according to its scheduling policy as it's been designed.
 
0
Kwrtos
 
 
Question
DMA - abbrevation   (Direct Memory Access,Discrete memory
Access,Disk memoryaccess)
Rank Answer Posted By  
 Question Submitted By :: Guest
This Interview Question Asked @   Mascot
I also faced this Question!!   © ALL Interview .com
Answer
Direct memory access
 
0
Swetcha
 
 
Answer
DMA--> Direct Memory Access is the Right answer
  which is given in gelvin Operating System 6Th edition...
 
0
Auradi
 
 
Answer
Direct Memory Access
 
0
Ravi Kumar Cv
 
 
Question
One Gigabyte =?( 2 power30 , 2 power 20 ,2 power 10 none)
Rank Answer Posted By  
 Question Submitted By :: Guest
This Interview Question Asked @   Mascot
I also faced this Question!!   © ALL Interview .com
Answer
2 power30
 
0
Kalyani.kalamata@gmail.com
 
 
Answer
why is it 2 power 30, and not 4 power 15?
 
0
Liam
 
 
Question
In the process table entry for the kernel process, the
process id value is

a) 0 b) 1 c) 2 d) 255 e) it does not have a process table entry
Rank Answer Posted By  
 Question Submitted By :: Guest
This Interview Question Asked @   IBM
I also faced this Question!!   © ALL Interview .com
Answer
answer is 'A'
 
0
Guest
 
 
 
Back to Questions Page
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com