I execute the code below

Qt Code:
  1. #include <QApplication>
  2.  
  3. int main (int argc, char** argv)
  4. {
  5. QApplication app(argc, argv);
  6. app.exec();
  7. }
To copy to clipboard, switch view to plain text mode 

and see the process on Windows Task Manager (WTM).

The WTM shows 7 threads for this application.

I read that Qt does not create any thread in the background then
why does it get reflected on WTM.