Questions 1 - 9 of 9
Close
Flag this interview question as inappropriate Inappropriate
See Answer
It is a particular way of conducting a float where the price at which shares are sold is not fixed, but rather is determined following a process in which interested investors bid for shares. This is quite a common way of determining the price paid for shares by institutional investors (Funds Managers).
Create Date
:
Saturday, April 26, 2008
Tags
:
Asked At
:
None
Job Positions
:
Click here to improve the Interview Question, Answer and other fields.
Comments (0) :
Goto add your comment on the Question 
Flag this interview question as inappropriate Inappropriate
See Answer
Sensex is an abreviation of Sensitive Index - the benchmark index of BSE. The index is calculated based on a free-float capitalization method when weighting the effect of a company on the index.The free-float method, therefore, does not include restricted stocks, such as those held by company insiders that can't be readily sold.
Create Date
:
Tuesday, March 18, 2008
Tags
:
Asked At
:
None
Job Positions
:
Click here to improve the Interview Question, Answer and other fields.
Comments (0) :
Goto add your comment on the Question 
Flag this interview question as inappropriate Inappropriate
See Answer
Java is object-oriented to a great extent, it is not a pure object-oriented language. One of the reasons Java is not purely object-oriented is that not everything in it is an object. For example, Java allows you to declare variables of primitive types (int, float, boolean, etc.) that aren't objects. And Java has static fields and methods, which are independent and separate from objects.
Create Date
:
Sunday, March 16, 2008
Asked At
:
None
Job Positions
:
Click here to improve the Interview Question, Answer and other fields.
Comments (0) :
Goto add your comment on the Question 
Flag this interview question as inappropriate Inappropriate
See Answer

you can instantiat a template in two ways. 1. Implicit instantiation and 2. Explicit Instantion. implicit instatanitioan can be done by the following ways:
template <class T>
class A
{ public: A(){}
   A(){}
void x(); void z(); };
void main()
{ A<int> ai; A<float> af; }

External Instantion can be done the following way:
int main()
{ template class A<int>; template class A<float>; }

Create Date
:
Saturday, March 15, 2008
Asked At
:
None
Job Positions
:
Click here to improve the Interview Question, Answer and other fields.
Comments (0) :
Goto add your comment on the Question 
Flag this interview question as inappropriate Inappropriate
See Answer
A structure is a union in which each defined data type will have its own memory.
Where as in union the highest memory data type will be memory for entire union.Suppose if a float element is intialaised and an int element, the int will be first located on 2 bytes and then the next 2 bytes will be the float.
Create Date
:
Saturday, March 15, 2008
Tags
:
Asked At
:
None
Job Positions
:
Click here to improve the Interview Question, Answer and other fields.
Comments (0) :
Goto add your comment on the Question 
Flag this interview question as inappropriate Inappropriate
See Answer
FLOATs store floating point numbers with 8 place accuracy and take up 4 bytes.
DOUBLEs store floating point numbers with 16 place accuracy and take up 8 bytes.
Create Date
:
Sunday, March 09, 2008
Asked At
:
None
Job Positions
:
Click here to improve the Interview Question, Answer and other fields.
Comments (0) :
Goto add your comment on the Question 
Flag this interview question as inappropriate Inappropriate
See Answer