AKAahlad Kethineediinaahlad-kethineedi.hashnode.dev·Feb 24, 2024 · 2 min readNavigating Kotlin's "suspend" and "runBlocking": A Cautionary Tale.Similar to threads in Java, Kotlin uses coroutines to run the tasks in the background. In Kotlin, you can use coroutines in few predefined methods like : runBlocking launch suspend coroutineScope async Based on each keyword the usage and imple...00
AKAahlad Kethineediinaahlad-kethineedi.hashnode.dev·Oct 5, 2021 · 1 min readWhy Companies are still using Java when we have Python?1.) SPEED AND TIME CONSUMPTION Firstly, Java uses Compiler and Python uses Interpreter. A Compiler converts your code to machine-readable code block by block. An Interpreter does the same by doing it line by line which takes more time naturally. 2.)...00
AKAahlad Kethineediinaahlad-kethineedi.hashnode.dev·Oct 1, 2021 · 2 min readWhat is OOPS(Object Oriented Programming)?Simply put, from the name itself, OOPS deals with objects to do certain jobs. Many languages use OOPS. Some popular languages are Java, JavaScript, Python, C++ etc. OOPS has core topics which have a great advantage over plain old functional programmi...00