Getcertkey offers CPP exam preparation in three flexible formats: a printable PDF for study anywhere, a desktop test engine for realistic offline practice, and an online test engine that runs in any browser. However you prefer to prepare, the C++ Institute C++ Certified Professional Programmer material fits your routine.
C++ Institute CPP Exam Overview:
| Certification Vendor: | C++ Institute (OpenEDG) |
|---|---|
| Exam Name: | C++ Certified Professional Programmer |
| Exam Number: | CPP-22-02 |
| Available Languages: | English |
| Real Exam Qty: | 40 |
| Exam Duration: | 65 minutes |
| Related Certifications: | C++ Certified Associate Programmer (CPA) C++ Certified Entry-Level Programmer (CPE) |
| Passing Score: | 70% |
| Exam Format: | Single-choice and Multiple-choice, Multiple Choice |
| Exam Price: | USD ~$325 |
| Sample Questions: | ![]() |
| Exam Way: | Delivered via Pearson VUE at authorized test centers or online proctored. |
| Pre Condition: | Recommended: C++ Certified Associate Programmer (CPA) or equivalent advanced C++ experience. |
| Official Syllabus URL: | https://cppinstitute.org/cpp |
C++ Institute CPP Exam Syllabus Topics:
| Section | Objectives |
|---|---|
| Topic 1: Sorting, Search, and Merge Algorithms | -
|
| Topic 2: Templates and Generic Programming | -
|
| Topic 3: Associative Containers | -
|
| Topic 4: Algorithms – Non-Modifying and Modifying | -
|
| Topic 5: Sequence Containers and Adapters | -
|
| Topic 6: STL Functional Objects and Advanced I/O | -
|
C++ Institute C++ Certified Professional Programmer Exam FAQ: What Candidates Ask Most
What is the C++ Institute CPP exam?
The CPP exam is the official C++ Institute (OpenEDG) exam behind the C++ Certified certification, validating the skills measured by the C++ Institute C++ Certified Professional Programmer credential. It sits at the Professional level of the C++ Institute (OpenEDG) certification program. It also connects to C++ Certified Associate Programmer (CPA), C++ Certified Entry-Level Programmer (CPE), so the knowledge you build here carries over to those tracks as well.
How many questions are on the CPP exam, and how much time do I get?
The CPP exam contains 40 questions to be completed within 65 minutes. Before exam day, divide the available time by the question count to work out a comfortable per-question pace, and mark any item that eats into it so you can return later instead of getting stuck. Timed sessions in the Getcertkey test engines make that pacing automatic — run at least two full-length mock exams under the clock so time pressure never becomes the reason you drop points.
What score do I need to pass the CPP exam, and what does it cost?
The passing score for the CPP exam is 70%, and the official registration fee is USD ~$325. Retakes are not discounted — every new attempt means paying the full fee again — so it pays to measure yourself before you book. Work through the 230 practice questions on Getcertkey, sit a timed practice test, and schedule your exam only when your scores are consistently comfortable. That simple habit is the cheapest exam strategy there is.
Are there any prerequisites for the CPP exam?
Recommended: C++ Certified Associate Programmer (CPA) or equivalent advanced C++ experience. Requirements can change when C++ Institute (OpenEDG) revises its certification program, so confirm the current eligibility rules on the official exam page before you register.
Can I try the CPP practice questions before I buy?
Yes. Getcertkey provides a free CPP PDF demo so you can review the question style and answer quality before purchasing. Every purchase also includes 365 days of free updates — if C++ Institute revises the exam during that period, the updated material reaches you at no cost. Once the free-update year ends, you can extend your update service at a 50% discount.
What if I fail the CPP exam, and how is my order delivered?
Every C++ Institute C++ Certified Professional Programmer purchase on Getcertkey is covered by a 100% money-back guarantee with clear conditions: if you take the corresponding exam within 60 days of your purchase and do not pass, you can claim a full refund by submitting a scanned copy of your exam enrollment slip and your official score report as a PDF within two days of the exam date; claims are processed within seven days of submission. The guarantee does not apply to exams taken within three days of purchase, to material that was downloaded but never used in an exam attempt, or to free products and expired orders, and the candidate name must match the payer name. If you would rather not take a refund, you can instead exchange your purchase for two free exam preparation products of equal value and keep the update service on your original product.
Delivery is instant: your download is sent to your email within one minute of payment, with no limit on how many computers you may install the material on. If nothing arrives within two hours, check your spam folder and contact customer service for help.
What topics are covered in the CPP exam?
The C++ Institute C++ Certified Professional Programmer exam blueprint is organized into 6 domains. The first three are:
- Associative Containers
- Algorithms – Non-Modifying and Modifying
- Templates and Generic Programming
For the complete domain-by-domain breakdown, scroll up to the full exam topics outline above and use it to plan how you distribute your study time.
C++ Institute C++ Certified Professional Programmer Sample Questions:
Question 1
What will happen when you attempt to compile and run the following code? Choose all possible answers.
#include <iostream>
using namespace std;
class B {};
template <typename T>
class A {
T_v;
public:
A() {}
A(T v): _v(v){}
T getV() { return _v; }
void add(T a) { _v+=a; }
};
int main()
{
A<int> a(1);
A<B>b;
a.add(10);
cout << a.getV() <<endl;
return 0;
}
A. program will cause runtime exception
B. program will compile
C. program will display:11
D. program will not compile
Question 2
What happens when you attempt to compile and run the following code?
# include <vector>
# include <iostream>
# include <algorithm>
using namespace std;
class B { int val;
public:
B(int v):val(v){}
int getV() const {return val;} bool operator < (const B & v) const { return val>v.val;} }; ostream & operator <<(ostream & out, const B & v) { out<<v.getV(); return out;} template<class T>struct Out {
ostream & out;
Out(ostream & o): out(o){}
void operator() (const T & val ) { out<<val<<" "; } };
int main() {
B t1[]={3,2,4,1,5};
B t2[]={5,6,8,2,1};
vector<B> v1(10,0);
sort(t1, t1+5);
sort(t2, t2+5);
set_intersection(t1,t1+5,t2,t2+5,v1.begin());
for_each(v1.begin(), v1.end(), Out<B>(cout));cout<<endl;
return 0;
}
Program outputs:
A. 1 2 5 0 0 0 0 0 0 0
B. 1 2 3 4 5 6 8 2 1 0
C. 1 2 3 4 5 6 8 0 0 0
D. 5 2 1 0 0 0 0 0 0 0
E. compilation error
Question 3
What happens when you attempt to compile and run the following code?
# include <iostream>
# include <set>
# include <vector>
using namespace std;
int main(){
int t[] ={ 3, 4, 2, 1, 6, 5, 7, 9, 8, 0 };
multiset<int> s1(t,t+10);
s1.insert(s1.find(7), 3);
for(multiset<int>::iterator i=s1.begin();i!= s1.end(); i++) {
cout<<*i<<" ";
}
return 0;
}
A. runtime exception
B. program outputs: 0 1 2 3 4 5 6 7 8 9
C. program outputs: 0 1 2 3 4 5 6 7 3 8 9
D. program outputs: 0 1 2 3 4 5 6 3 7 8 9
E. program outputs: 0 1 2 3 3 4 5 6 7 8 9
Question 4
What happens when you attempt to compile and run the following code?
# include <list>
# include <vector>
# include <iostream>
using namespace std;
int main ()
{
int t[] = {1, 2 ,3 ,4 ,5};
vector<int>v1(t, t+5);
list<int>l1;
l1.assign(v1.end(), v1.begin());
for(int i=0; i<l1.size(); i++)
{
cout<<l1.at(i)<<" ";
}
cout<<endl;
return 0;
}
A. program displays 1 2 3 4 5
B. compilation error
C. program displays 5 4 3 2 1
D. segmentation fault runtime exception
Question 5
What happens when you attempt to compile and run the following code?
#include <vector>
#include <iostream>
int main ()
{
std::vector<int>v1;
for(int i = 0; i<10; i++) {v1.push_back(i); }
v1.resize(4);
std::vector<int>::iterator it = v1.end();
v1.insert(v1.end()?1, 4);
for(int i=0 ; i<= v1.size(); i++) {std::cout<<v1.at(i)+v1[i]<<" "; }std::cout<<std::endl; return 0;
}
A. program outputs 0 2 4 8 6 and exception
B. program outputs 0 2 4 6 8
C. program outputs 0 2 4 8 6
D. program outputs 0 1 2 3 4
E. compilation error
Solutions:
| Question 1 Answer: B,C | Question 2 Answer: D | Question 3 Answer: E | Question 4 Answer: B | Question 5 Answer: A |


PDF Version Demo
851 Customer Reviews




Quality and ValueGetCertKey Practice Exams are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development - no all study materials.
Tested and ApprovedWe are committed to the process of vendor and third party approvals. We believe professionals and executives alike deserve the confidence of quality coverage these authorizations provide.
Easy to PassIf you prepare for the exams using our GetCertKey testing engine, It is easy to succeed for all certifications in the first attempt. You don't have to deal with all dumps or any free torrent / rapidshare all stuff.
Try Before BuyGetCertKey offers free demo of each product. You can check out the interface, question quality and usability of our practice exams before you decide to buy.