Development manager Interview Questions
12K
Development Manager interview questions shared by candidates
Why do you want to work for American Red Cross in this role?
10 Answers↳
Because I have strong passion for making a positive difference in people's lives, through any way that I can help them out. Less
↳
When I was in high school I was a volunteer for UCI Medical Center earned a lot of my high school credits that way I really thought I was going to be a nurse but then I pursue the career of being a cosmetologist and when my both my parents got sick my father he died from bone marrow cancer and I had to take him in to go get infusions three times a week and then my mother she passed away from a a blood disorder blood would get thick and was on medication and having to go and get treatments also so since then I've really wanted to be a phlebotomist so I took the course and my husband being in the Marine Corps moved back to California and now we've made home here in New York so it's time to pursue my dream I would really like to do this it's my passion to be a phlebotomist Less
↳
I cited the ARC mission, the important community work that is needed and how the priorities of ARC align with my personal beliefs. Less

Given real job problems and you must explain in a presentation format (to a rather large panel) how you would handle them.
6 Answers↳
Nice! Hope everything works out in your favor! Good Luck!!!
↳
could you tell me what some of the questions they asked were during the initial phone sreening and panel interview? Less
↳
Hi there, just wondering what the real world problem was that you needed to present to the panel? Any other questions that you can recall being asked? Less

1. Do you have experience selling software? 2. Are you comfortable with travel? 3. How do you feel about training others and/or are you willing to train others? 4. Why are you leaving your current place of work? 5. Without given a contact name or contact number for a company what are your procedures to obtain the information of a decision maker?
5 Answers↳
To be honestly i don't have an experience on selling software but i can do it as u are expecting on me Less
↳
Yes I'm comfortable on traveling and i love it
↳
Training to others is a good thing i feel proud about on it

Given two numbers n and m, divide n by m without using the division operator. Return both the integer answer as well as the remainder.
5 Answers↳
I first assumed that both numbers were positive and then used repeated subtraction to come up with the answer. Upon further discussion I felt that this took too long and tried to come up with some kind of faster method to accomplish this but I could not design it in the time required. Thinking about it there are some other choices: 1) Treat the numbers as binary and then use shifting and subtraction to divide. I can't really solve this easily. 2) Calculate ..., 16m, 8m, 4m, 2m, 1m, etc. and the subtract each of those from n if possible. If you can subtract it shift the answer and add a 1. Finally, compare the signs of n and m to set the signs of the answer. Less
↳
10 ^ (log10 m - log10 n)
↳
The two answers don't give you the remainder; you will still have to write code to get that Less

Can you work more than 10 hours every day ?
5 Answers
Why do you want to get in health care industry
4 Answers↳
To grow more and improve my self with new things to succeed my goal
↳
My interest is in skin hair from my first job
↳
Iam interested in this feel

How to Develop Brand Availability
5 Answers↳
Ensuring Maximum Placement of the product in all outlets.
↳
Yes
↳
Consistently reach potential buyers

Convince them that i am appropriate for the roll
4 Answers↳
It's 'role', not 'roll'. Lucky for you they hired you based on your coomunication Less
↳
My knowledge includes generalisation in a lots of field . I have diversified skills in a lots of subjects. I am an MBA graduate in dual degree program HR and supply chain management and I am also a professional interior designer, graphic designer, digital marketer, SEO content writer , UIUX designer . I am overall a tech savvy person and can develop great profitable business ideas with the addition of technology. Less
↳
Communication, sorry

Who are you?
4 Answers↳
Personal traits and qualities
↳
And you are also a brethren company who are well known for their discriminatory values and opinions who also pay different rates to brethren/non-brethren staff performing the same role Less
↳
Please state the nationalities of employees/ experience/ qualification and to what capacity they operate at within delta?? Less

Write a function that takes an input string, consisting of several words separated by spaces, and print out each word reversed, keeping the same order within the string.
4 Answers↳
Create a stack. Traverse the string and push the characters onto the stack until a space is encountered, then print all the characters off the stack until it's empty. When the end of the list is reached, empty and print the stack. Less
↳
I know that a Java answer isn't always what MS likes to hear. However, the technique is essentially the same if it's C#, C++, or even C. Extracting the tokens from the string and reversing them in the same order as the original string is the trick. ---------------------------------------------- import java.util.StringTokenizer; public class MsTest { public static void main(String[] args) { // TODO Auto-generated method stub String aString = "ABC 123 Doe Ray Me Fala=la 890"; System.out.println( "Original String: " + aString ); StringReverseElements( aString ); } private static void StringReverseElements(String Mess ) { StringTokenizer st = new StringTokenizer (Mess, " "); String tmpString; System.out.print( "Reversed String: " ); while (st.hasMoreTokens ()) { tmpString = (st.nextToken()); PrintReverse( tmpString.toCharArray(), tmpString.length()); } } private static void PrintReverse( char[] AnArray, int iLen ) { for ( int kk = 0; kk < iLen; kk++ ) System.out.print( AnArray [ iLen - kk -1] ); System.out.print( ' ' ); } } Less
↳
Clay - That would absolutely work, but during my interview I was told I couldn't use library functions, including Tokenizer. Less