Coder Social home page Coder Social logo

Vaibhav Mojidra Software Developer

Vaibhav Mojidra VAIBHAV MOJIDRA

vaibhavmojidra

Vaibhav Mojidra Coding

I'm a passionate software developer with a specialization in full stack development. With a strong foundation in programming and an eye for creating intuitive user experiences, I have developed several successful apps that are live on the Google Play Store. Throughout my journey as a developer, I have gained expertise in various programming languages, frameworks, and tools that empower me to bring ideas to life efficiently. I have experience working with Android Studio, Java, Kotlin, and various libraries to build scalable and performant mobile apps. Feel free to explore my GitHub repositories, where you'll find a collection of my personal projects & coding practices.


🌐 Social Media & Other Accounts

vaibhavmojidra2311 vaibhavmojidra2311 vaibhavmojidra vaibhav-mojidra-260733171 vaibhavmojidra vaibhavmojidra 13474737 vaibhavmojidra


vaibhavmojidra Technical Skills

android angular angularjs apachecordova arduino bash bootstrap c chartjs cplusplus csharp css3 dotnet electron firebase flutter gcp git html5 illustrator java javascript kotlin linux mongodb mssql mysql nodejs oracle photoshop postman python react reactnative sqlite tensorflow unity


vaibhavmojidra2311 Apps Live On Google Play

Aptitude Test Hidden Launcher
Programming eBooks Shooting Birds
Programming MCQ CAPP

vaibhavmojidra GitHub Achievements

vaibhavmojidra


vaibhavmojidra GitHub Statistics

vaibhavmojidra

 vaibhavmojidra

vaibhavmojidra

Vaibhav Mojidra's Projects

express-demo---serving-static-files icon express-demo---serving-static-files

Express.js is a popular web framework for building web applications and APIs using Node.js. It provides a robust set of features for creating server-side applications, including routing, middleware support, and template engines.

express-demo---setting-up-express-to-listen icon express-demo---setting-up-express-to-listen

Express.js is a popular web framework for building web applications and APIs using Node.js. It provides a robust set of features for creating server-side applications, including routing, middleware support, and template engines.

ios-swift-demo---roll-the-dice-app icon ios-swift-demo---roll-the-dice-app

IOS Development: Storyboard is a graphical user interface development tool provided by Apple that enables developers to design the user interface of an iOS application visually. It provides a drag-and-drop interface that allows developers to easily create and organize screens, views, and transitions, without the need for writing any code.

java---demo-abstract-class icon java---demo-abstract-class

Abstract classes are used in Java to create classes that cannot be instantiated, but instead serve as a blueprint or template for other classes to inherit from.

java---demo-access-modifiers icon java---demo-access-modifiers

Public access modifier is the most permissive access modifier. Private access modifier is the most restrictive access modifier. A private class, method, or variable can only be accessed within the same class.Protected access modifier allows the class, method, or variable to be accessed within the same package and any subclasses outside the package.

java---demo-argument-passing-using-command-line icon java---demo-argument-passing-using-command-line

The java command-line argument is an argument i.e. passed at the time of running the java program. The arguments passed from the console can be received in the java program and it can be used as an input.

java---demo-arithmetic-operators icon java---demo-arithmetic-operators

The Java programming language supports various arithmetic operators for all floating-point and integer numbers. These operators are + (addition), - (subtraction), * (multiplication), / (division), and % (modulo).

java---demo-array-of-objects icon java---demo-array-of-objects

In Java, you can create an array of objects just like you would create an array of primitive types. An array of objects allows you to store multiple instances of a class in a single data structure.

java---demo-arrays icon java---demo-arrays

Java array is an object which contains elements of a similar data type. Additionally, The elements of an array are stored in a contiguous memory location. It is a data structure where we store similar elements. We can store only a fixed set of elements in a Java array.

java---demo-assignment-operators icon java---demo-assignment-operators

Assignment Operators are used to assign values to a variable. The left side operand of the assignment operator is a variable, and the right side operand of the assignment operator is a value. The value on the right side must be of the same data type of the operand on the left side

java---demo-bitwise-operators icon java---demo-bitwise-operators

Bitwise operators are used to performing the manipulation of individual bits of a number. They can be used with any integral type (char, short, int, etc.). They are used when performing update and query operations of the Binary indexed trees.

java---demo-break-keyword icon java---demo-break-keyword

The break statement in Java terminates the loop immediately, and the control of the program moves to the next statement following the loop.

java---demo-class-and-its-memebers-attribute-and-methods icon java---demo-class-and-its-memebers-attribute-and-methods

Class attributes are variables defined in the class. These attributes define the state of the object at a particular time. Attributes can be either primitive type like int, byte, char, long, double etc.Methods define behaviour of a class. A method contains business logic which is executed when the method is invoked.

java---demo-class-and-objects icon java---demo-class-and-objects

Class is a set of object which shares common characteristics/ behavior and common properties/ attributes. Object is a basic unit of Object-Oriented Programming and represents real-life entities. A typical Java program creates many objects, which as you know, interact by invoking methods.

java---demo-compile-time-polymorphism-method-overloading icon java---demo-compile-time-polymorphism-method-overloading

Compile-time polymorphism, also known as method overloading, is a feature of object-oriented programming languages such as Java that allows you to define multiple methods with the same name in the same class. The compiler determines which version of the method to call based on the number, types, and order of the arguments passed to it.

java---demo-conditional-operator icon java---demo-conditional-operator

he conditional operator is also known as the ternary operator. This operator consists of three operands and is used to evaluate Boolean expressions. The goal of the operator is to decide; which value should be assigned to the variable.

java---demo-continue-keyword icon java---demo-continue-keyword

The continue statement is used in loop control structure when you need to jump to the next iteration of the loop immediately. It can be used with for loop or while loop.

java---demo-date-and-time icon java---demo-date-and-time

In Java, the java.time package provides classes for working with dates, times, and time intervals. The package was introduced in Java 8 and provides a more comprehensive and flexible approach to working with dates and times compared to the legacy java.util.Date and java.util.Calendar classes.

java---demo-decrement-prefix-and-postfix icon java---demo-decrement-prefix-and-postfix

The -- operator decrements its single operand by one. When used in prefix mode, it decrements the operand and evaluates to the decremented value of that operand. When used in postfix mode, it decrements its operand, but evaluates to the value of that operand before it was decremented.

java---demo-do-while-loop icon java---demo-do-while-loop

Do-while loop is used to iterate a part of the program repeatedly, until the specified condition is true. If the number of iteration is not fixed and you must have to execute the loop at least once, it is recommended to use a do-while loop.

java---demo-encapsulation-pojo-class icon java---demo-encapsulation-pojo-class

In Java, a POJO (Plain Old Java Object) class is a class that encapsulates data and provides getter and setter methods for accessing and modifying that data.

java---demo-enum icon java---demo-enum

In Java, an enum (short for "enumeration") is a special type of class that represents a fixed set of constants. Enums were introduced in Java 5 as a way to create a type-safe alternative to integer constants and to provide a more readable and maintainable way of defining constants in Java programs.

java---demo-exception-handling-try-catch icon java---demo-exception-handling-try-catch

When executing Java code, different errors can occur: coding errors made by the programmer, errors due to wrong input, The try statement allows you to define a block of code to be tested for errors while it is being executed. The catch statement allows you to define a block of code to be executed, if an error occurs in the try block.

java---demo-final-keyword icon java---demo-final-keyword

Java final keyword is a non-access specifier that is used to restrict a class, variable, and method. If we initialize a variable with the final keyword, then we cannot modify its value.

java---demo-for-each icon java---demo-for-each

For-each loop is used to iterate through elements of arrays and collections (like ArrayList). It is also known as the enhanced for loop.

java---demo-for-loop icon java---demo-for-loop

A for loop is a repetition control structure that allows you to efficiently write a loop that needs to be executed a specific number of times

java---demo-hashmap icon java---demo-hashmap

In Java, the HashMap class is an implementation of the Map interface that allows you to store key-value pairs and provides methods for adding, removing, and accessing elements in the map. The keys in a HashMap must be unique, but the values can be duplicated.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.