Skip to content
#

vaibhav-mojidra

Here are 131 public repositories matching this topic...

Note Maker is a simple note making app to save notes. Front end is designed using Bootstrap 4 so its responsive to PC browser as well as mobile browser. Business Logic is coded in Java using JSP Servlets and Hibernate to connect Database. Microsoft SQL Server is used as database of this Project.

  • Updated Jan 3, 2021
  • Java

Android Hilt is a dependency injection framework provided by Google for Android app development. It is built on top of the popular dependency injection library called Dagger. Hilt simplifies the process of implementing dependency injection in Android applications and helps manage the dependencies of your app's components.

  • Updated Jun 27, 2023
  • Java

WorkManager is the recommended solution for persistent work. Work is persistent when it remains scheduled through app restarts and system reboots. Because most background processing is best accomplished through persistent work, WorkManager is the primary recommended API for background processing.

  • Updated Jul 16, 2021
  • Java

Dagger 2 is one of dependency injection framework in Android that can provide us dependencies in a particular class. It’s probably the most used dependency injection framework in Android development. Singleton annotation can be put in other component and as long as the component alive the singleton annotated object will alive as well.

  • Updated Jul 29, 2021
  • Java

Queue is an abstract data structure, somewhat similar to Stacks. Unlike stacks, a queue is open at both its ends. One end is always used to insert data (enqueue) and the other is used to remove data (dequeue). Queue follows First-In-First-Out methodology, i.e., the data item stored first will be accessed first.

  • Updated Apr 4, 2022
  • Java

Hash Table is a data structure which stores data in an associative manner. In a hash table, data is stored in an array format, where each data value has its own unique index value. Access of data becomes very fast if we know the index of the desired data. Thus, it becomes a data structure in which insertion and search operations are very fast ir…

  • Updated Apr 12, 2022
  • Java

Primitive Integer data types - includes byte, short, int, long. The byte data type is an 8-bit signed two's complement integer. The short data type is a 16-bit signed two's complement integer. the int data type is a 32-bit signed two's complement integer. The long data type is a 64-bit two's complement integer.

  • Updated Jan 17, 2023
  • Java

Improve this page

Add a description, image, and links to the vaibhav-mojidra topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the vaibhav-mojidra topic, visit your repo's landing page and select "manage topics."

Learn more