Loading...
November 23, 2008
Home
Sign-In
My Interview Questions
Questions
1 - 10
of
19
Search Filters
Unanswered
All
Please Wait...
Filters not found for the search result
See Questions
See Questions & Answers
Date Desc
Date Asc
Ups Desc
Ups Asc
104
UPs
How is structure passing and returning implemented?
Comments (
0
)
|
Email
|
Inappropriate
|
Asked By: tarun
|
See Answer
Edit
Your Name:
To Email:
Subject:
Note to go along with the question:
(Optional, no more than 1,000 characters)
structures can be passed by reference.
they can be returned as pointers.
Create Date
:
Saturday, March 15, 2008
Tags
:
structure
,
C
,
passing
,
returning
Asked At
:
None
Job Positions
:
c
Click here
to improve the Interview Question, Answer and other fields.
Comments (
0
) :
69
UPs
When does the condition 'rendezvous' arise?
Comments (
0
)
|
Email
|
Inappropriate
|
Asked By: parktren
|
See Answer
Edit
Your Name:
To Email:
Subject:
Note to go along with the question:
(Optional, no more than 1,000 characters)
In message passing, it is the condition in which, both, the sender and receiver are blocked until the message is delivered.
Create Date
:
Tuesday, May 13, 2008
Tags
:
Operating System
Asked At
:
None
Job Positions
:
Software Engineer
Click here
to improve the Interview Question, Answer and other fields.
Comments (
0
) :
66
UPs
How can a subclass call a method or a constructor defined in a superclass?
Comments (
0
)
|
Email
|
Inappropriate
|
Asked By: Dreamingcrow
|
See Answer
Edit
Your Name:
To Email:
Subject:
Note to go along with the question:
(Optional, no more than 1,000 characters)
Use the following syntax: super.myMethod(); To call a constructor of the superclass, just call super() in the first line of the subclass's constructor, passing any required parameters.
Create Date
:
Tuesday, May 13, 2008
Tags
:
Java
Asked At
:
None
Job Positions
:
Web Specialist
Click here
to improve the Interview Question, Answer and other fields.
Comments (
0
) :
71
UPs
Can you call one constructor from another if a class has multiple constructors?
Comments (
0
)
|
Email
|
Inappropriate
|
Asked By: Dreamingcrow
|
See Answer
Edit
Your Name:
To Email:
Subject:
Note to go along with the question:
(Optional, no more than 1,000 characters)
Yes. Use this() syntax, passing any required parameters.
Create Date
:
Tuesday, May 13, 2008
Tags
:
Java
Asked At
:
None
Job Positions
:
Web Specialist
Click here
to improve the Interview Question, Answer and other fields.
Comments (
0
) :
112
UPs
What is OLE ? How do you handle drag and drop in OLE ?
Comments (
0
)
|
Email
|
Inappropriate
|
Asked By: shandy
|
See Answer
Edit
Your Name:
To Email:
Subject:
Note to go along with the question:
(Optional, no more than 1,000 characters)
Object Linking and Embedding (OLE) clipboard is a more capable clipboard than the windows traditional clipboard. To transfer a large image using a legacy clipboard one must allocate enough memory space to copy this image. However using the OLE clipboard you can transfer the bitmap in a more sensible medium like a file on a hard disk.OLE drag and drop is a visual method of transferring data. Unlike having separate commands like cut, copy and paste the OLE drag and drop lets you grab a piece of data with the mouse and drop it in the desired location.So to summarize it there are two broad differences between OLE and legacy clipboard. OLE clipboard is completely COM based and secondly it supports storage medium other than global memory.OLE drag and drop is programmatically very similar to OLE clipboard. The data provider or data source creates a data object that encapsulates the data and makes an IDataObject pointer available. The data consumer or drop target retrieves the IDataObject and uses it to extract data from the data object. The drop source initiates a drag and drop operation by passing an IDataObject pointer to ::DoDragDrop. Any window that is interested inbeing a drop target registers itself with the system by calling ::RegisterDragDrop. If drop occurs in a registered window then the drop target is handed the IDataObject pointer passed to ::DoDragDrop.
Create Date
:
Saturday, May 10, 2008
Tags
:
MICROSOFT
,
VC++
Asked At
:
None
Job Positions
:
Junior Programmer
Click here
to improve the Interview Question, Answer and other fields.
Comments (
0
) :
75
UPs
How you were passing cursor variables in PL/SQL 2.2?
Comments (
0
)
|
Email
|
Inappropriate
|
Asked By: hotdog
|
See Answer
Edit
Your Name:
To Email:
Subject:
Note to go along with the question:
(Optional, no more than 1,000 characters)
In PL/SQL 2.2 cursor variables cannot be declared in a package.This is because the storage for a cursor variable has to be allocated using Pro*C or OCI with version 2.2,the only means of passing a cursor variable to a PL/SQL block is via bind variable or a procedure parameter.
Create Date
:
Saturday, May 10, 2008
Tags
:
Oracle
Asked At
:
Oracle
Job Positions
:
Systems Administrator
Click here
to improve the Interview Question, Answer and other fields.
Comments (
0
) :
68
UPs
How you were passing cursor variables in PL/SQL 2.2?
Comments (
0
)
|
Email
|
Inappropriate
|
Asked By: hotdog
|