Question about curriculum
-
Hi all
I will take the Qt Essential Exam in 20 days
In the curriculum I found this objective:
XML in basics onlyDo they mean just th XML file structure or the XML module like Dom and SAX API.
If someone took the exam, I can't find exam samples, did they ask difficult questions regarding the API, do you have to remember lot of API functions or the focus was on the skills of programming and basic API knowledge.
Regards
-
Thanks Andre
@
QXmlStreamReader xml;
...
while (!xml.atEnd()) {
xml.readNext();
... // do processing
}
if (xml.error()) {
... // do error handling
}
@
It's really easier and more clear, the reason I was asking about XML is the SAX, it's very complicated to remember all the API functions, now with this API I can write a great applications with simple code, I'll investigate it more deeply.
thanks so much. -
What you find here:
http://qt.nokia.com/learning/certification/exams/preparation-prerequisites/qt-curriculum/qt-essentials/materials
and here:
http://qt.nokia.com/learning/certification/exams/preparation-prerequisites/qt-curriculum/qt-essentials
that will be enough for the exam (sure, I passed this exam).
Buy (or download :)) these books, read them and you will pass this exam successfully. The exam itself is not so hard.