Amit Shekhar (@amitiitbhu) 's Twitter Profile
Amit Shekhar

@amitiitbhu

Co-Founder @ Outcome School | Coder | Teacher | Mentor | Open Source | IIT 2010-14 | Android | Machine Learning | Backend | @outcome_school

ID: 4695994044

linkhttps://outcomeschool.com calendar_today02-01-2016 12:45:10

5,5K Tweet

16,16K Followers

638 Following

Amit Shekhar (@amitiitbhu) 's Twitter Profile Photo

Kotlin Interview Question: What happens if an exception is thrown inside an async coroutine, but await() is never called? Answer: Unlike launch, which throws exceptions right away, async holds exceptions in its Deferred result. If you don’t call await(), the exception will go

Amit Shekhar (@amitiitbhu) 's Twitter Profile Photo

To truly understand the internals of Coroutines, we need a solid understanding of Threads and Threadpool. That’s how you become a better software engineer.

Amit Shekhar (@amitiitbhu) 's Twitter Profile Photo

Impact of AI: Software Developers should be concerned; Software Engineers should not. In its current state, AI is good at generating code for individual components, which aligns closely with the responsibilities of a Software Developer. However, AI struggles with understanding

Amit Shekhar (@amitiitbhu) 's Twitter Profile Photo

StateFlow vs LiveData in Android Development StateFlow and LiveData are observable data holder classes mainly used with MVVM Architecture in Android. StateFlow • Part of Kotlin Coroutines Flow API. • Always has a value (requires initial value). • Not Lifecycle-aware by

StateFlow vs LiveData in Android Development

StateFlow and LiveData are observable data holder classes mainly used with MVVM Architecture in Android.

StateFlow

• Part of Kotlin Coroutines Flow API.
• Always has a value (requires initial value).
• Not Lifecycle-aware by
Amit Shekhar (@amitiitbhu) 's Twitter Profile Photo

Bundle in Android A bundle is a data structure used for passing data between components, such as activities, fragments, and services. It is a mapping from String keys to various Parcelable values. Example: // Sending data Intent intent = new Intent(this,

Bundle in Android

A bundle is a data structure used for passing data between components, such as activities, fragments, and services.

It is a mapping from String keys to various Parcelable values.

Example:

// Sending data
Intent intent = new Intent(this,
Amit Shekhar (@amitiitbhu) 's Twitter Profile Photo

Android Interview Questions related to Android-Runtime: • Android Runtime • Dalvik • ART • JIT • AOT • Garbage Collector • DEX • Multidex We create content on these types of topics. Prepare from our blogs: outcomeschool.com/blog

Amit Shekhar (@amitiitbhu) 's Twitter Profile Photo

Understanding Dropout in Machine Learning Neural networks can easily memorize training data, and that leads to overfitting, where the model performs well on the training data but poorly on new, unseen data. Dropout is a regularization technique used in neural networks to

Understanding Dropout in Machine Learning

Neural networks can easily memorize training data, and that leads to overfitting, where the model performs well on the training data but poorly on new, unseen data.

Dropout is a regularization technique used in neural networks to
Amit Shekhar (@amitiitbhu) 's Twitter Profile Photo

The out-of-memory issue is the biggest nightmare for all Android developers. As Android developers, we must have faced OutOfMemoryError(OOM Error). To avoid the OOM Error, we need to reduce the memory usage wherever possible. Let's try to learn: how image-loading libraries in