Bloomberg LP Interview Question for Financial Software Developers


Country: United States
Interview Type: Phone Interview




Comment hidden because of low score. Click to expand.
3
of 3 vote

1. It will allocate the memory in the heap
2. Invokes the constructor of the object
3. Returns the address points to it.

- Swarupa. August 13, 2013 | Flag Reply
Comment hidden because of low score. Click to expand.
1
of 1 vote

1:-When u create a object by using new key word in java it will create memory in heap area . that means when u execute the program the command prompt interacts with OS and fetch the memory. because u r command prompt don't have its own memory

- Niranjan May 03, 2013 | Flag Reply
Comment hidden because of low score. Click to expand.
1
of 1 vote

1. An expression with the new operator, first calls function operator new (i.e., this function) with the size of its type specifier as first argument, and if this is successful,
2. It then automatically initializes or constructs the object (if needed).
3. Finally, the expression evaluates as a pointer to the appropriate type.

- Rajesh May 28, 2013 | Flag Reply
Comment hidden because of low score. Click to expand.
1
of 1 vote

in C++: the operator new allocate memory only; the new operator allocate memory, call constructor, and return pointer to the allocated address.

- Passerby_A March 15, 2014 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More