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   interview questions urls   External Links  Contact Us     Login  |  Sign Up                      
tip   SiteMap shows list of All Categories in this site.
Google
 
Categories >> Software >> Operating-Systems >> Windows
 
  SDK (12)  Windows-Threads (6)  Windows-AllOther (107)
 


 

Back to Questions Page
 
Question
How do you declare an object in VBscript?
Rank Answer Posted By  
 Question Submitted By :: Guest
This Interview Question Asked @   Microsoft
I also faced this Question!!   © ALL Interview .com
Answer
object_name instance
 
0
Anjana
 
 
Answer
dim object_name
 
0
Sam
 
 
Answer
dim name as object
like we want to an intiger then we write
dim a as integer.
 
0
Sanjeev Sinha
 
 
 
Question
what are the differnt file system in windows / plz give 
description
Rank Answer Posted By  
 Question Submitted By :: Ajay
This Interview Question Asked @   CybAge
I also faced this Question!!   © ALL Interview .com
Answer
There are two types of file systems ntfs and fat
ntfs is used for secutity encription and for sharing of 
space.
 
0
Knr
 
 
Answer
there is 3 type of file system in Windows operating 
systems. FAT, FAT32 & NTFS. NTFS having file/folder level 
security and parition limit is more.
 
0
Subramani
 
 
Answer
• File Allocation Table (FAT)
 
• NTFS
 
• Universal Disk Format (UDF)
 
0
Syedmsd84
 
 
Answer
FAT(File Allocation Table)
FAT16: It is available in win95
FAT32 : It is available in win98,winXP,Win Me
NTFS (New Technology File System): It is available in Win 
NT3.5, Win NT 4.0, Win Nt 5.0, Win XP, Win2000, Win2K3
 
0
P.jegan Raja
 
 
Answer
NTFS - you can assign disk quota
     -  file level permission, encryption and decryption

fat does not have
 
0
David
 
 
Answer
High Sierra
    ISO 9660
    Joliet
    UDF (Universal Disk Format)
    Mac HFS (Hierarchical File Format) not for windows 
    Rock Ridge
    Mount Rainier
    Ntfs
    Fat
 
0
Venkatesh
 
 
Question
what is mean by 32 and 64 bit appplication
Rank Answer Posted By  
 Question Submitted By :: Ajay
This Interview Question Asked @   CybAge , Southernland
I also faced this Question!!   © ALL Interview .com
Answer
32 bit application can run 32 bit processor .64 bit 
application can run 64 bit processor.also 64 bit can run on 
32 bit processor.
 
0
Kaviraj
 
 
Answer
bit is a lenght of the data, if it is 32 or 64 bit 
application, to run this application hardware  should have 
the capacity to support this much of data bit.
 
3
Nirup Kumar
 
 
Answer
The capacity of microprocessor  to process the data at a 
time determines the bit lengh of  application software.
 
0
Rajendra Agare
 
 
Question
semaphore variable is different from ordinary variable by ?
Rank Answer Posted By  
 Question Submitted By :: Tribhuvan Sharma
I also faced this Question!!   © ALL Interview .com
Answer
semaphore uses one thread .so it can access little slower 
than ordinary variable.
 
0
Suja
 
 
Answer
Semaphore variable is used under 'n' process solutions to
handshake mutual exclusion rule, where as ordinary variable
is used such circumstance is error prone if set that
variable as boolean type even you get problem while setting
value to parent thread.

where n>1 

check it out!
 
0
Nirmalraj
 
 
Question
Which one is not needed for Multi-program enviornment?

1) virtual memory
2) security
3) time sharing
4) none of the above.
Rank Answer Posted By  
 Question Submitted By :: Tribhuvan Sharma
This Interview Question Asked @   Siemens
I also faced this Question!!   © ALL Interview .com
Answer
4.None of the above
 
0
Suja
 
 
Answer
3)time sharing
 
0
R.sathya
 
 
Answer
2)security
 
0
R.sudha
 
 
Answer
virtual memory
 
0
Sahadev Tarei
 
 
Answer
time sharing
 
0
Nagaraju
 
 
Question
Which one you will use to implement critical section?
Rank Answer Posted By  
 Question Submitted By :: Tribhuvan Sharma
This Interview Question Asked @   HCL
I also faced this Question!!   © ALL Interview .com
Answer
Critical Section comes in single process environment they
didn't share accross process boundary.

In C if you wish to implement criticalsection you have to
use windows datastructure CRITICAL_SECTION and create a
object to access its members.

Initialize it
  InitializeCriticalSection(&cs);
------------
-----------
function to call();
------------
DeleteCriticalSection(&cs);
.
.
call()
{
}
 
0
Nirmalraj
 
 
Answer
Now sure what is asked but anyway:
1. If the question is how would you implement critical 
section mechanism then the answer is to use a mutex.
2. If the question is to show how to use the critical 
section then the following code fragment adresses that:
//
//  Global variable or a member of some
//  dynamically allocated structure, usualy within
//  the data access to which it is protecting.
//
CRITICAL_SECTION cs;

VOID Init(VOID) {
   InitializeCriticalSection( &cs );
}

VOID SomeCall(VOID) {
  EnterCriticalSection( &cs );
  //
  //  Thread-safe block of code protected by critical 
section.
  //
  LeaveCriticalSection( &cs );
}

VOID
UnInit(VOID) {
  DeleteCriticalSection( &cs );
}
 
0
Svinto
 
 
Question
What is semaphores and why it is used?
Rank Answer Posted By  
 Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
Semaphores are used to make system free from conflicts and 
hang. when more than one program are executed 
simultaniously then computer hangs and sometimes gives 
wrong output so instead to come out from this situation 
semaphore is used which takes care for program execution 
and manages it.
 
0
Pritesh Parmar
 
 
Question
What is Mutex Object and why it is used?
Rank Answer Posted By  
 Question Submitted By :: Guest
This Interview Question Asked @   HCL
I also faced this Question!!   © ALL Interview .com
Answer
In computer programming, a mutex (mutual exclusion object)
is a program object that is created so that multiple program
thread can take turns sharing the same resource, such as
access to a file. Typically, when a program is started, it
creates a mutex for a given resource at the beginning by
requesting it from the system and the system returns a
unique name or ID for it. After that, any thread needing the
resource must use the mutex to lock the resource from other
threads while it is using the resource. If the mutex is
already locked, a thread needing the resource is typically
queued by the system and then given control when the mutex
becomes unlocked (when once more, the mutex is locked during
the new thread's use of the resource).
 
0
Bond
 
 
Question
What are Named Objects?
Rank Answer Posted By  
 Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
Named Objects. A name may be associated with any primitive, 
aggregate, ... An object thus named may then be 
instantiated (with possible additional ...
 
0
Suja
 
 
 
Back to Questions Page
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

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