Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!
We spend hours on Instagram and YouTube and waste money on coffee and fast food, but wonβt spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!
Learn from Guru Rajesh Kumar and double your salary in just one year.
1.Diff between Compiled Lang Vs Interpreted Lang Vs Declarative Lang?
Compiler Lang : A compiled lang is a programming lang whose implementations are typically compilers (translators that generate machine code from source code), and not interpreters (step-by-step executors of source code, where no pre-runtime translation takes place).
Interpreted lang : Interpreted lang is a programming lang which are generally interpreted, without compiling a program into machine instructions. It is one where the instructions are not directly executed by the target machine, but instead read and executed by some other program.
Declarative lang : also called nonprocedural or very high level, are programming lang in which (ideally) a program specifies what is to be done rather than how to do it.
2.Example of Declarative Lang?
SQL and Prolog
3.Pros and Cons of Declarative Lang?
pros : Short, efficient code
cons : Sometimes hard to understand for external people