Pardon my stupidity… I am still confused by what you mean?
Discussion
A native app is a program that is compiled to machine code capable of being executed directly by the operating system. (iOS app, android app, windows app, etc..)
A web app is written in a language that is interpreted (run) by a browser. The browser is the native app in that situation, the web app is “foreign” and is translated to run by the browser.
Typically native apps are faster, and more energy efficient by cutting out the translation step. Developer skills plays a role in how big the difference is.
native applications are programs that are compiled to a target cpu and are executed directly by it. Web apps are not native applications, but a web browser is.
A native application is a binary file containing cpu instructions that a computer executes when you run it. ios apps are native apps. Windows exe files are native apps, etc.