What are your opinions and ideas on the future of programming paradigms?
I have never been good at predicting the future. Here are some random ramblings...
I started on a 'micro-computer' with 16 kB memory, where I eventually had to write my own Z80 assembler when the BASIC in ROM wasn't enough. When the IBM PC and X86 family came along, you still needed an assembler - or more realistically a compiler - to reach the necessary speed and/or to fit code and data into the available memory. Small and fast (enough) programs were a necessity.
Today, processors/computers are often fast enough even for poorly designed script languages. For maximum speed, though, you need to do things in parallel: either by using multiple threads and/or by using SIMD instructions. This more or less requires a compiler, but the language is not so clear. AFAICT, this is still a research area. It has been for some years, and with computers being everywhere now, it's not hard to guess people may pick an easier are to research (considering how research is conducted an financed in parts of the world, at least).
I doubt "normal" processors will see anything but incremental improvements over the forseeable future. If they ever get quantum computers to work, it sounds like they will be good for some specialized problems only. Since we need a processor in the end to run our program, and with more than one family potentially relevant these days (X86, ARM64, RISC-V, ...), a compiled language makes most sense; never assembly code unless you need the last few percent of performance (and can accept rewriting for every architectures), and not an interpreted language if you want top performance (and can accept recompiling for different architectures).
One of the more popular compiled languages in recent years is C++, and I suspect it will continue so (unsure, but I doubt one of the "better C++" languages will get popular enough to make much difference). Personally I have preferred the minimalistic approach of C, but this seems to be going away with new people on the C standard committee.
There are currently many other languages, but if the future is similar to the past, many of them will be largely forgotten in a few years.
All in all, I spend (too) much of my days working on small details, so I'm probably not the best person to ask about "big picture" things...