Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ interview preparation [closed]

Tags:

c++

logic

I have a Phone interview coming up next with with a company which works in financial software industry. The interview is mainly going to be in C++ and problem solving and logic. Please tell me the method of preparation for this interview. I have started skimming through Thinking in C++ and brushing up the concepts. Is there any other way I can prepare?? Please help.

Edit:

Thank you all everyone for the advice. I just want to add that I am currently fresh out of grad school and have no previous experience. So Can you suggest some type of questions that will be asked to new grads??

like image 821
Light_handle Avatar asked Oct 15 '09 00:10

Light_handle


People also ask

What are the C programs asked in interview?

C programs are frequently asked in the interview. These programs can be asked from basics, array, string, pointer, linked list, file handling etc.

What are the C programs asked in TCS interview?

Important programming languages for TCS campus interviews are 1) C programming, 2) C++ programming, and 3) Java programming. 2) What is the primary difference between C and Java?


1 Answers

Make sure you know your basic data structures and algorithms. You're more likely to be asked about that stuff than something higher up the food chain. Those are usually saved for the in-person interview.

Put another way: be solid with the fundamentals and solid with your C++ syntax. Also, knowledge of common libraries like STL and Boost couldn't hurt...but be sure you know what those libraries give you! In the end phone screens are there to cull out people who can't do the basics. Prove you can and you should move on to the next step. Good luck!

Here's some links of interview questions to check out:

  • C++ Interview Questions @ DevBistro
  • C++ Interview Questions @ Blogspot
  • C++ Interview Questions @ FYI Center
  • Steve Yegge's Five Essential Phone Screen Questions (added this in response to your edit. This isn't C++-only, but a lot of it applies to C++ and I think would be a good read in your situation).

Now, for completion's sake, some books:

  • Scott Meyers "Effective" series (Effective C++, More Effective C++, Effective STL)
  • Herb Sutter's "Exceptional" series (Exceptional C++, More Exceptional C++, Exceptional C++ Style)
  • The C++ Standard Library by Josuttis
  • C++ Primer by Lippman et al
  • Stroustrup's text as a reference
like image 88
Kyle Walsh Avatar answered Sep 23 '22 18:09

Kyle Walsh