Logo Background RSS

Most Recent News

  • A Senior Application Programmer is a person who has computer programming expertise. He or she has a long and extensive experience in software development industry.

    Given below are some common interview questions that are frequently asked to a Senior Application Programmer.

    1. How will you reverse a linked list?
    It is purely technical question. The possible answer to this question is as under:
    iterative loop curr->next = prev;
    prev = curr;
    curr = next;
    next = curr->next endloop recursive reverse(ptr) if (ptr->next == NULL) return ptr;
    temp = reverse(ptr->next);
    temp->next = ptr;
    return ptr;
    end.

    2. How will you implement a breadth first traversal of a binary tree?
    It is yet another technical question. The breadth first traversal of a binary tree can be accomplished by making use of a queue to store the elements from the tree that need to be printed next. Assuming a node in the binary tree is defined as follows:

    struct Node { int value; Node* left; Node* right; };
    Here is an implementation in C++ using the STL: void Traverse(Node* head) { if(!head){ return; } std::queue<Node*> queue;
    queue.push(head); while(!queue.empty()){ Node* node = queue.front(); queue.pop();
    std::cout << node->value << ‘\n’;
    if(node->left){ queue.push(node->left); } if(node->right){ queue.push(node->right); } } }

    3. Where do you want to see yourself after 5 years from now?

    Remember this question is asked to check what you really want to do. Many people are not sure of what they want to do. That’s why interviewer asks this question. Just mentioning a designation is not enough, you must tell the interviewer your goals and what you hope to achieve in future. In the software industry it is easy to say that you want to become a team or tech lead, but what the employer is looking at from this question is the kind of roles and responsibility that you would want to handle.

    4. Please elaborate some of your technical skills?
    I have an extensive experience of seven years in this field where I worked on Windows9X, Windows2000, Windows ME, Windows XP, Windows Vista, Linux, UNIX, and MS DOS. I have good knowledge of html tools such as Macromedia Dreamweaver, Microsoft FrontPage,  and Adobe GoLive; computer languages such as Pascal, Turbo Pascal, C, C++, Java, Java Swing, and Python; and  graphical tools such as Macromedia Flash, Macromedia Fireworks, Adobe Photoshop, Adobe PageMaker, Adobe Illustrator, 3D Max, and Bryce 3D.

    These are some of the frequently asked interview questions. Do not forget to say ‘Thank You’ to the person or people who interviewed you.


  • Project management is the discipline of planning, organizing, and managing resources to bring about the successful completion of specific project goals and objectives and a Project Manager is a professional in the field of project management. He or she is responsible for planning, executing, and closing any project. These projects can be related to construction industry, architecture, computer networking, telecommunications or software development.

    Given below are some common interview questions that come up again and again during interviews for the post of Project Manager.

    1. What do you mean by project management?
    Well, project management is a very broad field, it is an application of knowledge, skills, tools and techniques to plan and develop activities that are required to meet the project goals. It is the discipline of planning, organizing and managing resources to bring about the successful completion of specific project goals and objectives.

    2. Please elaborate the roles and responsibilities of a project manager?
    A project manager has a very important position in any organization. The roles and responsibilities are very broad. He or she is responsible for establishing and maintaining relationship with project sponsors, accountable for the coordinating management of multiple related projects directed toward strategic business and other organizational objective, building credibility, establishing rapport, and maintaining communication with stakeholder at multiple levels. He is also liable for coaching, mentoring and leading personnel within a technical team environment.

    3. Tell us how will you handle non-productive team members?
    Being a project manager, it is my duty to make sure that the team’s output meets the performance requirements. If I find anyone unproductive or with weak skill set then I will definitely provide him or her training or coaching. I will talk to that person in a friendly manner and suggest him or her different ways for improving the productivity.

    4. Please tell us how will you motivate team members who are burned out or bored?
    Well, when my team members are in this situation, I provide them new challenges and performance targets. I even offer them incentives for reaching certain goals. I also shuffle them around to refresh them.

    It is very important to be prepared for an interview. During the entire course of an interview, you may be asked various questions. Just one bad answer can stand out and cost you the job. So prepare well before appearing for an interview. Do not forget to say “Thank you” to the people who interviewed you.


  • A Product Support Manager is a specialized person who manages the product life-cycle for a range of products. He or she is responsible for product planning and execution throughout the product life cycle. The typical activities of a product manager includes gathering and prioritizing products and customer requirements, defining the product vision, and working closely with engineering, sales, marketing departments and providing necessary support to ensure customers satisfaction and goals are met.

    In this article, I would like to provide you some questions that come up again and again in interviews for the post of Product Support Manager.

    1. Can you please tell me something about the job specific tasks that you have performed in your previous organization?
    The occupation specific tasks which I have performed include creating designs specifications, summary and functional specifications, controlling the employees and process of the technical product support experts, deciding technologies and monitoring project status. I have also produced, maintained, and executed principles and strategies for delicate computer software and computer hardware. Apart from this I have successfully carried out numerous other duties that were assigned to me.

    2. Please elaborate some of the technical and non technical skills that you possess for this job?
    The job of a product support manager is very important. Well, I have excellent ability to work independently and in a team environment. I have strong communication, analytical, interpersonal, organizational, problem soling and decision making skills. I am proficient in computer programming languages such as Pascal, Turbo Pascal, C, C++, Java, Java Swing, and Python, office packages such as Microsoft Word, Microsoft Excel, Microsoft Access, Microsoft PowerPoint, and Microsoft Outlook Express, and hardware tools such as Vax, Intel Touchstone Delta, Unix Workstations with numbers of DSP chips with array processors, and TC/IP configuration LAN and Networking.

    3. Why do you want to make a career in product management?
    It is an excellent question for you to shine. The way you answer this question will discriminate you from the rest of the candidates.  You could talk about the wide scope of development in this field. Just make a complete research of this field. Tell about the range of opportunities which you are expecting from this job.

    4. What is your academic and professional qualification?
    For answering this question just mention your general qualification including post graduation, graduation and high school along with the year of passing. Apart from this you also have to reveal your professional course. Just state the degree or certification course that you may have undertaken.

    Well, these are some of the frequently asked interview questions.


  • Before moving further into the article, let me give you a brief introduction of a Network. Well, a network is a group of interconnected computers. It is designed to give staff in an organization access to files, documents, business applications, corporate systems, email, internet, printers and other devices. A network manager is a person who is responsible for maintain an organization’s computer network system.  He or she designs, installs and monitors the network of an organization.

    Listed below are some common interview questions that come up again and again during interviews for the post of Network Manager.

    1. What is the difference between a hub, a switch, and a router?
    A hub is a small, simple, low-priced device that joins multiple computers together. A switch is a small hardware device that joins multiple computers together within one local area network (LAN) and they operate at layer 2 of the OSI model. Routers are the physical devices that join multiple wired or wireless networks together and they operate at layer 3 of OSI model.

    2. What is the difference between TCP and UDP?
    TCP is acronym of transmission control protocol whereas UDP is short-form of user datagram protocol. TCP is a connection oriented protocol in which a connection is made between client and server but UDP is a message based connectionless protocol. TCP is reliable, ordered and heavyweight whereas UDP is unreliable, not ordered and lightweight.

    3. Please tell us some job specific tasks that you have performed in your previous organization?
    The profession specific tasks that I have performed include installing the original, new version software, keeping record of all the changes to the network environment, managing local area network and providing backup. I had also supervised all the activities on the network and developed management information solutions by using business objects.

    4. What are your technical and non-technical skills?

    Well, I have 8 year experience as network manager. During the entire course of my profession I have acquired various technical and non-technical skills. I have gained good logical and technical knowledge of networking and software. I have intensive knowledge of Oracle database systems, design, crystal reports and .NET. Apart from this, I have excellent communication and interpersonal skills and I have the ability to function successfully in both team and independent work environments.

    These are some of the frequently asked interview questions. I hope now you will not face any problem in answering the above questions.


  • Z/OS Release Manager has to implement, design and develop detailed release plans. It is a very challenging position as they have to coordinate with team members for infrastructure releases and operational readiness tests. He or she might also require working for long hours under pressurized environments. Sometimes in additional to the day to day tasks the Z/OS Release Manager might also have to perform supervisory duties.

    So, for the benefit of all those trying for the position of a Z/OS Release Manager let me tell you about some very essential questions that are asked in the Z/OS Release Manager Interview.

    1. Can you elaborate about your duties that you performed in your jobs?
    In my previous jobs I was responsible for numerous different tasks, my responsibilities included management of the release pipeline, scheduling and prioritizing release, Designing, developing and implementation of the detailed release plans, managed the configuration and changes and coordinated project teams and communicated with the facilitate team. I also had to work for long hours in order to complete the work within set limits.

    2. Tell us something about your duties in experience as a Z/OS Release Manager?
    In my previous position as a Z/OS Release Manager, my duties included to installation, deployment and test of the releases, to coordinate the implementation of the infrastructure releases and I had to also ensure the release plan and implementation according to the schedule time and availability and I also performed supervisory duties including training and specialization of new staff members.

    3. What are the skills that you possess that make you stand above all the candidates we have interviewed?
    While answering this question, try to include all your positive points that would show you in a good light. I have a strong ability of management and organization; I possess good interpersonal, technical and communication skills and an extensive experience of seven years in the area of Z/OS release management. In addition to all this I have great ability to work under pressure with full efficiency, I am able to lead a team and work alone and I am also Very hardworking and passionate about the things I do.

    4. Please highlight on your qualifications?
    I have done my bachelor’s degree in science background from the reputed XZY University and have done various diploma courses in computer in the last five years.

    Well these are some very important Z/OS Release Manager interview questions that are frequently asked in interviews.


  • A System Administrator is responsible for various aspects systems administration including networks, applications, databases, and telecommunications. He or she has to perform a great number of tasks and also have to work under pressurized environments. They have to work under constant supervision and are often given high profile projects.

    In this article I would mainly provide you some interview questions that are frequently asked in a System Administrator.

    1. Tell us something about the responsibilities and authorities that you had in your previous positions?
    In my previous positions I performed a variety of tasks, I had to assist in developing, implementing, testing and maintaining server level disaster recovery plans, I also Managed troubleshoot networks, intranet and internet connectivity throughout the organization was responsible for implementation, configuration, coordination, control, maintenance, security, usage monitoring and the development of specialized system procedures.

    2. Tell us something about the skills that are required to become a good System Administrator?
    This is a very important position in an IT firm hence it requires outstanding customer service and organizational skills to support administrative personnel, department supervisors, staff, and library patrons. People who hold this position should also have the ability to function successfully in both team and independent work environments. They have to maintain respectful interactions among all the team members and other staff members.

    3. Please elaborate about your educational qualifications, experience and skills?
    I have an extensive experience of seven years in this field where I worked with Windows 2000/2003 Server platforms with an emphasis on Active Directory. I have a great knowledge of LAN/WAN configuration, Internet firewalls, and wireless technology. I am also experienced in setting up and managing database systems such as SQL Server. I possess very good advanced hardware and software troubleshooting skills, customer service skills, interpersonal, management, organizational and problem solving skills.

    4. Can you tell us something about the occupation specific tasks that you have performed?
    I am a very goal oriented personnel and the occupation specific tasks that I have performed include analyzing equipment performance records, coordinating with vendors and with company personnel, I had to design, configure, and test computer hardware, networking software and operating system software, operated master consoles in order to monitor the performance of computer systems and networks and performed routine network startup and shutdown procedures.

    Well these are some very important questions that are asked in a System Administrator interview and I am very sure my article would surely help you to answer then with great confidence.


  • NOC means Network operation center and a technician is wholly responsible for its management and all the operations. NOC is one or more locations from which control is exercised over a computer, television broadcast, or telecommunications network. The technicians are responsible for monitoring the network for alarms or certain conditions that may require special attention to avoid impact on the network’s performance.

    Here are some every important interview questions that are frequently asked in an NOC Technician Interview.

    1. Do you know about the tasks that NOC Technicians perform?
    NOC Technicians have to perform a wide variety of tasks which include analyzing problems, performing troubleshooting, communicating with site technicians and other NOCs, and tracking problems through resolution. Sometimes they also have to escalate problems to the appropriate personnel.

    2. Tell us something about the duties that you have performed in your previous jobs?
    In my previous position as a NOC Technician I provided technical support by in website technical support and provided support for the installation, configuration and shipment of the switches and routers. I had to work in diverse group of the network operation technicians for the repair activity of broadband, narrowband and wireless applications.

    3. Can you tell us something about the responsibilities that you had in your previous jobs?
    In the company where I worked before applying for this job, my responsibilities included implementing and maintaining the solutions that support and help the company’s wire line and wireless networks, resolved the customer’s and network issues in time and provide assistance on Linux and UNIX operating systems also.

    4. What skills do your require to become an efficient NOC Technician?
    There are a variety of skills that are required by a NOC Technician, he or she should have in-depth knowledge of networking protocols TCP/IP, UDP and ICMP, should be comfortable working on windows, UNIX, Linux, should possess strong knowledge of the modems, routers, switches and other hardware and they should have the ability to analyze and resolve the issues of the customers.

    5. What special qualifications and skills do you possess that make you stand above the rest?
    While you are answering this question you need to be calm and confident, just be brief but include all the points that you think make you stand above the rest. I have a bachelor’s degree in information technologies from XYZ University and I also hold a CCNA certificate.

    Well these are some very common questions that would surely be asked if you are going for a NOC Technician Interview.


  • The position of a Business Objects Developer is a challenging one and they also need to work for long hours under pressurized environments. A business Objects Developer has to full fill a variety of different tasks within a limited time period. If you want to apply for this job then you need to be very knowledgeable and skillful in numerous fields of business.

    So, for your benefit, let me now tell you about some very important questions that might be asked during a Business Objects Developer Interview.

    1. Explain to us what is domain and how many are there usually in a basic setup?
    Domain is nothing but logical grouping of system tables; there are three domains usually in a basic setup. They are Secure, Universe and Document. Business objects are sometimes called domain objects (where the word domain means the business), and a domain model represents the set of domain objects and the relationships between them.

    2. Tell us what is Business Objects repository and when is it created?

    The Business Objects repository is a set of relational data structures stored on a database. It enables Business Objects users to share resources in a controlled and protected environment. The repository is created by the general supervisor with the Setup wizard during the first-time use of the product. You can create and use more than one repository, typically to manage multiple sites.

    3. Out of all the candidates that we have interviewed why should we select you only?
    While answering this question you need to be very confident and sure about yourself. You can tell the interviewer about your special skills like communication, organization, technical and management, your knowledge in the business field and your special qualifications which would surely be an asset to the firm you are employed in.

    4. Do you have any knowledge of the Alerter, Filters, Breaks and Conditions?
    Alters are nothing but they are used to draw attention to a block of data by highlighting. Breaks are nothing but grouping the data without any change in the format. Condition is used to retrieve data which meets certain criteria. Filters are used to get necessary data.

    5. Can you tell us the difference between master-detail and Breaks?

    In break common fields are deleted (here in this case the table format is not changed) whereas in master-detail , we declare certain entity as a master to get the detailed information or report in this case the table format is changed.

    Well these are some very important questions that are frequently asked in a Business Objects Developer Interview.


  • An operation analyst supports an organization in its business problems. There are various aspects where an operation analyst plays a vital role. Some of these major areas are finance, sales, production, and information management. An operation analyst gathers the relevant information according to the input provided to him and gives possible solutions. The job is demanding and challenging but also has its own rewards.

    I am providing few important interview questions that are mainly asked in an interview of an operations analyst:

    1. Tell about your personal and professional skills and how do these qualify for this job?
    Start with your professional qualifications. The technical knowledge you have in the field of computer science and management. Specifically mention about your knowledge in different operating systems, HTML editing tools, office packages, and graphic tools and, programming languages. You can also add your working experience in these areas. In answering about your personal traits you can start your answer by saying that you are a goal oriented person who is highly motivated for achieving excellence in his work. Do mention your ability of managing financial and administrative systems. Quote that you are an adaptable person who loves to accept challenges. Stress brings out best in you.

    2. Tell us about your current team and your boss?
    Try to be precise and tricky. You can say that you were able to manage a healthy professional attitude with your current boss and your team. You were fortunate to learn from his experience and implement that in your own work with the help of your team. Good interpersonal skills helped you a lot in maintaining this kind of professional approach.

    3. Are you a good action taker or a good planner?
    A job of an operation analyst requires a balance between the two. So, you should start your answer by saying that your self control helps you maintaining a balance in between the two. You love taking actions that throw a challenge but you do plan a strategy before implementing any action. It is just like designing an algorithm before actually writing a code.

    4. How do you update yourself in terms of knowledge and skills?
    Give your answer with a genuine enthusiasm. Tell your employer that you love reading technical books related to your interest area. Updating your knowledge with latest technologies available keeps you going.

    These are some of the questions that are mainly asked in an interview of an operation analyst by an employer. All the Best!


  • Management information system controls and solves the business problems of an organization. These analyze other information systems by a group of methods that are humanly based or are supported by a decision support system. MIS combines business with tech to help people in proving relevant information which they need to do their jobs faster and smarter.

    I would like to list few important interview questions that are generally asked by an employer:

    1. What duties does a manager of MIS perform?
    The position of a manager of MIS is very responsible and challenging. He supervises the activities of MIS staff. His main job is to identify the crucial business issues and yield workable solutions. These solutions may include activities like enhancing the existing applications and installing new software packages. He also prepares and manages the MIS capital budgets. Providing good and efficient training to the staff members is also under his jurisdiction.

    2. What qualifications do you have for this post?
    Tell about your qualifications. A bachelor’s degree in Business Administration or in Computer Science is the pre requisite for this job. Tell about your working experience. You can also mention about your knowledge in system configuration, installation, administration and management. You should mention about your experience in supporting financial and administrative systems.

    3. What challenges do you see for the job you are applying?
    The question is very intelligent and same intelligence needs to be reciprocated here. Try to gain information about the organization through its website before hand. You can start your answer by saying that you have always loved taking challenging positions and the one that is offered really suits your criteria. You can tell that good and efficient decision making skills are the most important factor required for this responsible position. Also add that how your qualifications and experience qualify you for this skill.

    4. Did any time you had any problem implementing your own solution?

    Your previous experience is going to help you a lot while answering this question. You can tell about a major problem that occurred at your previous work area and how did you solve it. What approach you took and what was the reason that made you do that. Be confident in yourself and genuine with your answer. You can also tell about a common basic problem that generally occurs in this field and how you will approach to solve it.

    These are some of the interview questions that are generally asked in an interview of a MIS manager. All the best!