Thursday, May 27, 2010

FIFA World Cup Schedule Indian Time

Group A
South Africa/ Mexico/ Uruguay/ France
11 June 2010 South Africa VS Mexico (19.30 PM IST)
11 June 2010 Uruguay VS France (24.00 PM IST)
16 June 2010 South Africa VS Uruguay (24.00 PM IST)
17 June 2010 France VS Mexico (24.00 PM IST)
22 June 2010 Mexico VS Uruguay (19.30 PM IST)javascript:void(0)
22 June 2010 France VS South Africa (19.30 PM IST)

Group B
Argentina /Nigeria /Korea Republic/ Greece

12 June 2010 Argentina VS Nigeria (19.30 PM IST)
12 June 2010 Korea Republic VS Greece (17.00 PM IST)
17 June 2010 Argentina VS Korea Rep (17.00 PM IST)
17 June 2010 Greece VS Nigeria (19.30 PM IST)
22 June 2010 Greece VS Argentina (24.00 PM IST)
22 June 2010 Nigeria VS Korea Rep (24.00 PM IST)

Group C
England United States Algeria Slovenia

12 June 2010 England VS United States (24.00 PM IST)
13 June 2010 Algeria VS Slovenia (17.00 PM IST)
18 June 2010 England VS Algeria (24.00 PM IST)
18 June 2010 Slovenia VS United States (19.30 PM IST)
23 June 2010 United States VS Algeria (19.30 PM IST)
23 June 2010 Slovenia VS England (19.30 PM IST)

Group D
Germany Australia Serbia Ghana

13 June 2010 Germany VS Australia (24.00 PM IST)
13 June 2010 Serbia VS Ghana (19.30 PM IST)
18 June 2010 Germany VS Serbia (17.00 PM IST)
19 June 2010 Ghana VS Australia (24.00 PM IST)
23 June 2010 Australia VS Serbia (24.00 PM IST)
23 June 2010 Ghana VS Germany (24.00 PM IST)

Group E
Netherlands Denmark Japan Cameroon

14 June 2010 Holland VS Denmark (17.00 PM IST)
14 June 2010 Japan VS Cameroon (19.30 PM IST)
19 June 2010 Holland VS Japan (17.00 PM IST)
19 June 2010 Cameroon VS Denmark (24.00 PM IST)
24 June 2010 Denmark VS Japan (24.00 PM IST)
24 June 2010 Cameroon VS Holland (24.00 PM IST)

Group F
Italy Paraguay New Zealand Slovaki
a
14 June 2010 Italy VS Paraguay (24.00 PM IST)
15 June 2010 New Zealand VS Slovakia (17.00 PM IST)
20 June 2010 Italy VS New Zealand (19.30 PM IST)
20 June 2010 Slovakia VS Paraguay (17.00 PM IST)
24 June 2010 Paraguay VS New Zealand (19.30 PM IST)
24 June 2010 Slovakia VS Italy (19.30 PM IST)

Group G
Brazil Korea DPR Ivory Coast Portugal

15 June 2010 Brazil VS Korea DPR (24.00 PM IST)
15 June 2010 Ivory Coast VS Portugal (19.30 PM IST)
20 June 2010 Brazil VS Ivory Coast (24.00 PM IST)
21 June 2010 Portugal VS Korea DPR (17.00 PM IST)
25 June 2010 Korea DPR VS Ivory Coast (19.30 PM IST)
25 June 2010 Portugal VS Brazil (19.30 PM IST)

Group H
Spain Switzerland Honduras Chile

16 June 2010 Spain VS Switzerland (19.30 PM IST)
16 June 2010 Honduras VS Chile (17.00 PM IST)
21 June 2010 Spain VS Honduras (24.00 PM IST)
21 June 2010 Chile VS Switzerland (19.30 PM IST)
25 June 2010 Switzerland VS Honduras (24.00 PM IST)
25 June 2010 Chile VS Spain (24.00 PM IST)

Tuesday, March 2, 2010

Project-Specific Coding Guidelines

http://bulldozer00.wordpress.com/category/technical/

Thursday, February 25, 2010

Recommended List C++ Books:

* Thinking in C++: http://www.planetpdf.com/developer/article.asp?ContentID=6634 "Tiago Correia"
* Art of Computer Programming Series - Donald E. Knuth "Tiago Correia"
* C++ Templates: The Complete Guide - David Vandervoode and Nicolai Josuttis "Ricardo Machado"
* Effective C++ - Scott Meyers "Ricardo Machado"
* Modern C++ Design: Generic Programming and Design Patterns Applied - Andrei Alexandrescu "Ricardo Machado"
* Design Patterns - Gamma, Helm, Johnson and Vlissides "Ricardo Machado"
* The C++ Programming Language (Third Edition and Special Edition) - Bjarne Stroustrup "Nabil Shams"
* C++ Primer - Stanley Lippman and Josee Lajoie "Zohar Efrati"
* More Effective C++ - Scott Meyers "Thomas J. Mueller"
* Effective STL - Scott Meyers "Thomas J. Mueller"
* Exceptional C++ - Herb Sutter "Thomas J. Mueller"
* More Exceptional C++ - Herb Sutter "Vladimir Ivin"
* C++ for Real Programmers - Jeff Alger plus the other two "Vladimir Ivin"
* Standard Template Library - Nicolai M. Josuttis "John Phillips"
* Template Metaprogramming - Abrahams and Gurtovy "John Phillips"
* Generative Programming book - Eiseneker and Krysznewski "John Phillips"
* POSA Series "John Phillips"
* Code Complete - Steve McConnell "John Phillips"
* Introduction to Algorithms - Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Clifford Stein "John Phillips"
* The Pragmatic Programmer - Andrew Hunt and David Thomas "Jason Felice"
* C++ In-Depth "Rob Meijer"

Sunday, February 21, 2010

C++ Interview Questions Links

http://www.techinterviews.com/c-plus-plus-interview-questions-and-answers
http://www.technojobs.co.uk/info/candidate-guides/c-interview-questions.phtml
http://interviewhelper.blogspot.com/2007/07/c-interview-questions_05.html
http://www.coolinterview.com/type.asp?iType=41
http://www.geekinterview.com/Interview-Questions/Languages/C-Plus-Plus
http://www.devbistro.com/tech-interview-questions/Cplusplus.jsp
http://www.acetheinterview.com/questions/
http://oneparticularharbor.net/sam/interview.html
http://www.careerride.com/C++-Interview-questions-Answer.aspx

C++ Interview Questions

* Explain the difference between virtual function and virtual inheritance.
* What is the difference between global static functions and static functions, class members.
* What is common and what is the difference between implementations of the copy constructors, initialization and overloaded assignment operators?
* Compare two ways of operator overloading: as a method of class and as an external friend function.
* How to create virtual constructor and destructor in a class?
* Can template class be abstract? Why?
* What is the specificity of overloading sizeof, typeid, new and delete operators?
* Compare distinctive features of overload of operations "()" and "[]".
* Give the detailed comparison of work with strings in C style (char *) and C++ style (string).
* Give the detailed comparison of work with dynamic memory in C and C++.
* Give the detailed comparison of standard input-output facilities in C and C++.
* What does operator throw without parameter mean?
* Tell about the kinds of iterators you know and the difference between them.
* What is the difference between modifiers register, const and volatile?
* How to write the function takes unknown number of arguments?
* What is the difference between constructions extern and extern "C"?
* In traditional C++, what's the difference between using and include?
* Compare use of macros, inline-functions and template-functions.
* How can you competently organize nontrivial sorting using tools of standard C and C++ libraries (compare the approaches)?
* Tell what and how you can do to be able to put class objects into cout and read them from cin?
* Compare various forms of type cast operations (in C and C++ styles). Tell about overloading of these operations.
* Each class has some special member-functions, which calls can be inserted by the compiler into a code without explicit instruction of the programmer. Enumerate such functions, members and cases, when implicit calls can arise.
* How to set default values of function arguments? What are pros and contras of use of this C++ opportunity? What's its alternative?
* When writing catch operator we can write directly type of exception as a type of its argument, pointer to a type of exception or reference to a type of exception. Compare these approaches.
* In what order function arguments are evaluated at its call: from left to right, from right to left or any other way? For example, in what order will the arguments in the following example be calculated: f(5+I, ++I); ?

* If when creating a variable the programmer explicitly did not initialize it, in some cases, the compiler itself would give it a certain, predefined initial value, and in some cases the initial value would be unpredictable. What does it depend on?
* What does the order of creation (sequence of constructors call) of global variables depend on? What practical conclusions can be made from this fact?
* There is a code:
f(){return 3.5;}
...
double d = f()
What is the value d equal to and why?
* Explain the difference between anonymous namespace and anonymous enumeration.
* What will happen, if the exception is thrown from the constructor?
* What is the templates specialization and what is its application?
* What is the specifity of application of operator delete to the function pointers?
* What is this? How is this used?
* What the forward declaration of classes is used for?
* What preprocessor directives are usually used to prevent multiple inclusion of the header file?
* What constructions does C++ offer to programmers for organization of branches?
* What constructions does C++ offer to programmers for organization of loops?
* What is polymorphism? What constructions in C++ allow to say that this language supports polymorphism? What polymorphism is used for?
* What is lvalue?
* What the finally keyword is used for in C++?
* Compare operators continue and break.
* What trigraphs are and what are they necessary for?
* What is the difference and what is common in specifity of constructors and destructors overloading?
* What is anonymous union and how is it used?
* Is it possible (if yes - than how) to write such a class in C++ that no class could be inherited from it?
* There are two classes given, one of which is the successor from another. Write how should the constractors of copying-initialization for these classes look (make an example).
* What's the specifity of operations "||" and "&&"? What's the specifity of these operations overload?
* Compare "static variable" and "static variable as a member of a class".
* What's the danger of using macroses? Show that on examples.
* Compare operators throw and return.
* How to initialize a variable which is a private static member of a class?
* What does auto_ptr class stand for and how is it used?