| 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  |
| Anjana |
| |
| |
| Answer | dim object_name  |
| Sam |
| |
| |
| Answer | dim name as object
like we want to an intiger then we write
dim a as integer.  |
| 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.  |
| 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.  |
| Subramani |
| |
| |
| Answer | • File Allocation Table (FAT)
• NTFS
• Universal Disk Format (UDF)  |
| 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  |
| P.jegan Raja |
| |
| |
| Answer | NTFS - you can assign disk quota
- file level permission, encryption and decryption
fat does not have  |
| 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  |
| 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.  |
| 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.  |
| Nirup Kumar |
| |
| |
| Answer | The capacity of microprocessor to process the data at a
time determines the bit lengh of application software.  |
| 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.  |
| 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!  |
| 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  |
| Suja |
| |
| |
| Answer | 3)time sharing  |
| R.sathya |
| |
| |
| Answer | 2)security  |
| R.sudha |
| |
| |
| Answer | virtual memory  |
| Sahadev Tarei |
| |
| |
| Answer | time sharing  |
| 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()
{
}  |
| 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 );
}  |
| 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.  |
| 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).  |
| 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 ...  |
| Suja |
| |
| |
|
| |
|
Back to Questions Page |