Qt Interview Questions
Basic
1. What is MOC and UIC? Explain how they will work for compilation in QT?
2. What is qmake? Explain usage.
3. What are all the platforms/OS currently Qt supports?
4. What are the procedures to port an application written for one platform to
another?
Signals & Slots
1. Describe working of Signals & Slots.
2. What is a slot? And how it differs with callback Method (Advantage)?
3. How Signals & Slots work? What is MetaObject system?
4. How is QObject class related to signals and slots?
5. What is O_OBJECT macro? Do you know what it expands into?
6. What does SIGNAL() and SLOT() macro expand to?
7. Can I call a slot normally?
8. What are the different ways connect signals and slots?
9. What is QObject::connect? Explain syntax/prototype of connect.
10.Can I connect two signals? How?
11.Can I connect multiple slots to same signal? If yes which order the slots get
called?