Blog_Banner_Asset
    Homebreadcumb forward arrow iconBlogbreadcumb forward arrow iconFull Stack Developmentbreadcumb forward arrow iconAngularJS Demo Project: How To Build an App with AngularJS

AngularJS Demo Project: How To Build an App with AngularJS

Last updated:
28th Aug, 2022
Views
Read Time
17 Mins
share image icon
In this article
Chevron in toc
View All
AngularJS Demo Project: How To Build an App with AngularJS

If you’re learning full-stack development, you must’ve faced the question, “How to run AngularJS project?” Don’t worry because, in this article, we’ll share a detailed tutorial on building an app with AngularJS

After completing this project, you’d be familiar with the basics of the AngularJS project and its implementations and have a working app that you can show off to your friends. You can bookmark this tutorial as we have listed out steps for different development stages along with the code. 

Note that you should understand the code before you implement it. That’s why we don’t recommend copy and pasting the code. However, if you know how every line of code works, you can freely copy and paste it. Understanding how the code works would ensure that you learn most efficiently. 

Explore our Popular Software Engineering Courses

Check out our free courses to get an edge over the competition. 

Ads of upGrad blog

What is AngularJS? A Brief Introduction

Before we discuss AngularJS projects, let’s talk a bit about the technology first. AngularJS allows users to extend HTML for applications. It is a front-end web framework based on JavaScript. HTML lags in dynamic views for web apps, and Angular solve that problem. 

Consumers increasingly demand a visually engaging experience while utilizing web-based applications. We anticipate that quality content will frequently surface on our displays without requiring a website refresh. A technology that enables developers to develop such experiences for their clients is the AngularJS project. Additionally, by using a model-view-controller(MVC) paradigm, developers can create apps rapidly and, more significantly, operate them easily.

Check out upGrad’s Advanced Certification in Blockchain

AngularJS has a thriving community and an effective framework for providing dynamic websites to users and developers where you can ask questions without hesitation and remove your confusion. It promotes highly productive web development.

Almost the majority of software developers use this Google-created initial platform. It has become one of the most well-liked and effective Java frameworks ever since its launch in 2009. It expands HTML’s functionality by enabling users to change various website features. AngularJS provides users with data binding, controllers, and many other necessary powerful tools to enhance a web page’s front end. You’ll further discover many concepts in our project as we’ll implement them in our tutorial. 

Explore Our Software Development Free Courses

Check out upGrad’s Advanced Certification in Cloud Computing

Prerequisites to AngularJS Projects for Beginners

Before you start working on AngularJS projects, you should be familiar with the following concepts to kickstart your path toward coding:

HTML

HTML stands for HyperText Markup Language. It is responsible for any web page structure and is the first building block for web development. You should be familiar with HTML’s syntax, its elements, and implementations before you start working on this project. One can utilize HTML as your template syntax with AngularJS and extend HTML’s syntax to express the elements of your app clearly and concisely.

AngularJS works to lessen the imbalance between content HTML and what an app needs by creating new HTML components. AngularJS uses the directive framework to introduce the web’s additional syntax.

CSS

CSS stands for Cascading Style Sheets and is the primary language for adding visuals to a web page. It’s just as important as HTML because it makes the web page look better and become more accessible. While HTML is necessary for our AngularJS project’s first stage, you’d have to add CSS to it later.

That’s why you should be familiar with it before you begin working on AngularJS projects for beginners. When creating the working model by hand, you can use CSS to create a more visually attractive UI interface.

JavaScript

JavaScript is an object-oriented programming language. This multi-paradigm language is a technology demonstrator, an essential element, reactive, and event-driven. Many of the most recent UI elements could be used with JavaScript to create web apps.

AngularJS is based on JavaScript. For AngularJS to be used properly, it is necessary to comprehend the principles of JavaScript. Being familiar with JS syntax, code, and its implementations will simplify many technical aspects of AngularJS for you as well.

Make sure that you understand the basics of JS well before you begin working on this task. Additionally, the value you get using AngularJS will depend on how well-versed you are in JavaScript. AngularJS frequently utilize inheritance and JavaScript Namespace.

JavaScript’s idea of inheritance, frequently utilized by all other front-end platforms, is crucial. This feature makes it simple to add attributes to the prototype. Because of this, JavaScript is a necessary precondition for AngularJS.

Apart from these prerequisites, you should also be familiar with the basics of AngularJS. This project assumes that you have a working knowledge of HTML, CSS, JS, and AngularJS. Now that we’ve gotten that out of the way let’s begin.

upGrad’s Exclusive Software Development Webinar for you –

SAAS Business – What is So Different?

 

In-Demand Software Development Skills

upGrad’s Exclusive Software Development Webinar for you –

SAAS Business – What is So Different?

 

How to Run the AngularJS Project – Tutorial

In this tutorial, we’ll build an Angular JS project, or specfically an AngularJS sports-feed app. A sports-feed app shows you news, statistics, and the schedule of a match or event. For example, you can create an app that shows the matches’ scorecard for your favourite leagues and teams or an IPL team score table. We’ve chosen to work on a sports-feed app because it doesn’t require much back-end development. 

The HTML

We’ll first start by creating the HTML for our application. Here’s the template of an Angular JS project example of how our HTML code looks:  

<body ng-app=”F1FeederApp” ng-controller=”driversController”>

  <table>

    <thead>

      <tr><th colspan=”4″>Drivers Championship Standings</th></tr>

    </thead>

    <tbody>

      <tr ng-repeat=”driver in driversList”>

        <td>{{$index + 1}}</td>

        <td>

          <img src=”img/flags/{{driver.Driver.nationality}}.png” />

          {{driver.Driver.givenName}}&nbsp;{{driver.Driver.familyName}}

        </td>

        <td>{{driver.Constructors[0].name}}</td>

        <td>{{driver.points}}</td>

      </tr>

    </tbody>

  </table>

</body>

You must’ve noticed {{ and }}. They are called expressions, and they let you perform computational tasks for returning the required value. For example, here are some valid expressions:

  • {{ 2 + 2 }}
  • {{ my.name }}

You can say that they are snippets of JavaScript. However, it would be best if you didn’t use expressions to implement high-level logic. To do that, you should use directives. Expressions are only suitable for low-level logic implementation. The primary task of expressions is to bind the required application data to the HTML. 

Learn: HTML Developer Salary in India: For Freshers & Experienced

The Directives in Our Code

One of the most important concepts you’d discover while working on AngularJS projects is directives. A directive is a marker on a DOM element to inform AngularJS that it has to attach a specific behavior to the individual element.

A cross-platform, language-independent gateway called the Document Object Model (DOM) considers an XML or HTML content as a binary tree, with each node standing in for an object-representing section of the document. It portrays a word as a conceptual tree. Every branch of the tree ends in a cluster, which is where items are stored. 

Read our Popular Articles related to Software Development

A document’s structure, appearance, or information can be changed using DOM methods, which give application support to the document tree. Endpoints may connect to event handlers. When an event is triggered, all event handlers are called.

The directive can tell Angular to perform various tasks such as transforming the DOM element and its children, replacing it with a different DOM element. Most of the powerful directives start with “ng-” where “ng” stands for Angular. 

Here are the different directives we’ve used in our code above, along with their applications:

ng-app

This directive bootstraps the app and defines its scope. It’s an essential directive because you can have multiple apps in AngularJS, and it tells the program the starting and ending points of each app. 

ng-controller

This directive defines which controller would have the power of the user’s view. We’ve denoted the driversController in this respect, which will provide the list of drivers (driversList) in our app. 

ng-repeat

This directive is one of the most commonly used among Angular developers. It defines the template scope during the looping through collections. 

Angular has many directives, and as you’ll work on more AngularJS projects for beginners, you’ll discover more applications for them. That’s why we recommend working on different projects while learning a particular skill. 

The Controllers

The controllers in an AngularJS application are primarily responsible for managing the flow of data. The ng-controller directive is used to define a controller. A JavaScript object called a “controller” has elements, variables, and operations. Having the view would be useless unless we add a controller. So, we’ll add the driversController as a controller here. Here is another angular project JS example:

angular.module(‘F1FeederApp.controllers’, []).

controller(‘driversController’, function($scope) {

    $scope.driversList = [

      {

          Driver: {

              givenName: ‘Sebastian’,

              familyName: ‘Vettel’

          },

          points: 322,

          nationality: “German”,

          Constructors: [

              {name: “Red Bull”}

          ]

      },

      {

          Driver: {

          givenName: ‘Fernando’,

              familyName: ‘Alonso’

          },

          points: 207,

          nationality: “Spanish”,

          Constructors: [

              {name: “Ferrari”}

          ]

      }

    ];

});

A unique variable you might’ve noticed is $scope. We’re passing this variable as a parameter to the controller as it would link the controller with views. $scope holds all the data to use in the template, and all the data you add to it will be accessible in the views. Every controller accepts the parameter scope, which designates the app or component the controller must manage.

We’ll add a static data array for now and replace it later as we make progress in our project. 

Let’s first add the controller to the app.js, which should look like this:

angular.module(‘F1FeederApp’, [

  ‘F1FeederApp.controllers’

]);

This small line of code initialized our app and registered the modules our app depends on. We now have to add all of this information to our index.html file:

<!DOCTYPE html>

<html>

<head>

  <title>F-1 Feeder</title>

</head>

<body ng-app=”F1FeederApp” ng-controller=”driversController”>

  <table>

    <thead>

      <tr><th colspan=”4″>Drivers Championship Standings</th></tr>

    </thead>

    <tbody>

      <tr ng-repeat=”driver in driversList”>

        <td>{{$index + 1}}</td>

        <td>

          <img src=”img/flags/{{driver.Driver.nationality}}.png” />

          {{driver.Driver.givenName}}&nbsp;{{driver.Driver.familyName}}

        </td>

        <td>{{driver.Constructors[0].name}}</td>

        <td>{{driver.points}}</td>

      </tr>

    </tbody>

  </table>

  <script src=”bower_components/angular/angular.js”></script>

  <script src=”bower_components/angular-route/angular-route.js”></script>

  <script src=”js/app.js”></script>

  <script src=”js/services.js”></script>

  <script src=”js/controllers.js”></script>

</body>

</html>

At this stage, you can start your app and check your statistical data regarding the game. However, keep in mind that you will have to debug the app. A crucial step in learning how to run the AngularJS project is debugging an app.

Load Data from Server

Now we’ll add the functionality of fetching live data from a RESTful server in our app. To communicate with HTTP servers, AngularjS has two services, $http, and $resource. In our code, we’ll use $http as it offers high-level abstraction. We’ll create a custom service to abstract our server API calls. It will fetch the data and be a wrapper around $http. So, we’ll add the following code to our services.js file:

angular.module(‘F1FeederApp.services’, []).

  factory(‘ergastAPIservice’, function($http) {

    var ergastAPI = {};

    ergastAPI.getDrivers = function() {

      return $http({

        method: ‘JSONP’, 

        url: ‘http://ergast.com/api/f1/2013/driverStandings.json?callback=JSON_CALLBACK’

      });

    }

    return ergastAPI;

  });

We first created a new module called F1FeederApp.services and added a service ergastAPIservice. Note that we have passed $http as a parameter to the service. We will also tell Angular to add our module into the app. For doing all that, we have to replace the code in app.js with the following:

angular.module(‘F1FeederApp’, [

  ‘F1FeederApp.controllers’,

  ‘F1FeederApp.services’

]);

We’ll have to modify controller.js a little and add ergastAPIservice in the form of dependency, and then this step will finish:

angular.module(‘F1FeederApp.controllers’, []).

  controller(‘driversController’, function($scope, ergastAPIservice) {

    $scope.nameFilter = null;

    $scope.driversList = [];

    ergastAPIservice.getDrivers().success(function (response) {

        //Dig into the responde to get the relevant data

        $scope.driversList = response.MRData.StandingsTable.StandingsLists[0].DriverStandings;

    });

  });

To check whether the code is working or not, reload your application. You’d notice that we didn’t modify the template but only included the nameFilter variable. In the next section, we’ll use that variable:

Apply Filters

Data is altered using filters. The pipe (|) character can be used to group them together in an argument or command. Data is altered using filters. The pipe (|) character could be used to group them together in an expression or command.

So far, we have added a functional controller to our app. Now we’ll add more functionality to it by adding a text search input bar. You can include the following code in your index.html below the <body> tag:

<input type=”text” ng-model=”nameFilter” placeholder=”Search…”/>

We are using the “ng-model” directive here. It will bind the text field to the “$scope.nameFilter” variable. The directive ensures that our variable value remains updated according to the input value. Let’s tell “ng-repeat” that it must filter the “driversList” array by the value present in the “nameFilter” before it outputs the data:

<tr ng-repeat=”driver in driversList | filter: nameFilter”>

We are performing two different data bindings here. First, whenever you’d input a value in the search field, Angular will ensure that the $scope.nameFilter variable is updated accordingly. Second, as soon as nameFilter updates ng-repeat, the second directive attached to it gets a new value and an update. 

Suppose we only want to filter by using Driver.familyName and Driver.givenName. We’ll have to add driversController below $scope.driversList = [] like this:

$scope.searchFilter = function (driver) {

    var keyword = new RegExp($scope.nameFilter, ‘i’);

    return !$scope.nameFilter || keyword.test(driver.Driver.givenName) || keyword.test(driver.Driver.familyName);

};

To finalize this process, we only have to update the line with the ng-repeat directive:

<tr ng-repeat=”driver in driversList | filter: searchFilter”>

You can reload the app to see if the code is working or not. Our app now has a search function. Next, we’ll add routes.

upGrad’s Exclusive Software Development Webinar for you –

SAAS Business – What is So Different?

Adding Routes

We have to create a page that shows the details of our drivers. The page should allow a user to click on a driver and view his or her career information and other necessary data. We’ll begin by adding the $routeProvider service in the app.js file. A vital service that configures URLs, associates them with the associated HTML page or ng-template, and adds a controller to each is the $routeProvider. It will help you handle the different application routes properly. 

Now we’ll add a route for driver information and another for the championship scoreboard. Now, our app.js file looks like this:

angular.module(‘F1FeederApp’, [

  ‘F1FeederApp.services’,

  ‘F1FeederApp.controllers’,

  ‘ngRoute’

]).

config([‘$routeProvider’, function($routeProvider) {

  $routeProvider.

when(“/drivers”, {templateUrl: “partials/drivers.html”, controller: “driversController”}).

when(“/drivers/:id”, {templateUrl: “partials/driver.html”, controller: “driverController”}).

otherwise({redirectTo: ‘/drivers’});

}]);

After adding this code, when a user would navigate to https://domain/#drivers, it will load the driversController and locate the partial view. If you’ve been following this tutorial so far, you must’ve noticed one thing. We haven’t added the partial views! So our next step would be to add the same to our application:

Adding Partial Views

A great feature of AngularJS is that it lets you bind different routes to various views and controllers. However, for AngularJS to perform this action, it should know where it can render those partial views. 

The ng-view directive merely generates a placeholder where, depending on the setup, a related template (HTML or ng-template view) can indeed be inserted. So we’re using the ng-view directive and adding it to our index.html file:

So we’re using the ng-view directive and add it to our index.html file:

<!DOCTYPE html>

<html>

<head>

  <title>F-1 Feeder</title>

</head>

<body ng-app=”F1FeederApp”>

  <ng-view></ng-view>

  <script src=”bower_components/angular/angular.js”></script>

  <script src=”bower_components/angular-route/angular-route.js”></script>

  <script src=”js/app.js”></script>

  <script src=”js/services.js”></script>

  <script src=”js/controllers.js”></script>

</body>

</html>

Due to this implementation, when we’d navigate through an app route, Angular will load the relevant view and render it. It would determine the location for rendering through the <ng-view> tag. Now, we only have to make a file called partials/drivers.html and put the championship table’s HTML code there. While we’re at it, we’ll also link our driver information route with the driver’s names:

<input type=”text” ng-model=”nameFilter” placeholder=”Search…”/>

<table>

<thead>

  <tr><th colspan=”4″>Drivers Championship Standings</th></tr>

</thead>

<tbody>

  <tr ng-repeat=”driver in driversList | filter: searchFilter”>

    <td>{{$index + 1}}</td>

    <td>

      <img src=”img/flags/{{driver.Driver.nationality}}.png” />

      <a href=”#/drivers/{{driver.Driver.driverId}}”>

{{driver.Driver.givenName}}&nbsp;{{driver.Driver.familyName}}

</a>

</td>

    <td>{{driver.Constructors[0].name}}</td>

    <td>{{driver.points}}</td>

  </tr>

</tbody>

</table>

We’re reaching the final stages of development. Our driver information page needs data so that’s what we’ll add to it. To do that, we’d have to write the following code in services.js:

angular.module(‘F1FeederApp.services’, [])

  .factory(‘ergastAPIservice’, function($http) {

    var ergastAPI = {};

    ergastAPI.getDrivers = function() {

      return $http({

        method: ‘JSONP’, 

        url: ‘http://ergast.com/api/f1/2013/driverStandings.json?callback=JSON_CALLBACK’

      });

    }

    ergastAPI.getDriverDetails = function(id) {

      return $http({

        method: ‘JSONP’, 

        url: ‘http://ergast.com/api/f1/2013/drivers/’+ id +’/driverStandings.json?callback=JSON_CALLBACK’

      });

    }

    ergastAPI.getDriverRaces = function(id) {

      return $http({

        method: ‘JSONP’, 

        url: ‘http://ergast.com/api/f1/2013/drivers/’+ id +’/results.json?callback=JSON_CALLBACK’

      });

    }

    return ergastAPI;

  });

We’ll now edit controllers.js. We aim to connect every driver’s ID to the service, so our information retrieval remains specific to the requested driver.

angular.module(‘F1FeederApp.controllers’, []).

  /* Drivers controller */

  controller(‘driversController’, function($scope, ergastAPIservice) {

    $scope.nameFilter = null;

    $scope.driversList = [];

    $scope.searchFilter = function (driver) {

        var re = new RegExp($scope.nameFilter, ‘i’);

        return !$scope.nameFilter || re.test(driver.Driver.givenName) || re.test(driver.Driver.familyName);

    };

    ergastAPIservice.getDrivers().success(function (response) {

        //Digging into the response to get the relevant data

        $scope.driversList = response.MRData.StandingsTable.StandingsLists[0].DriverStandings;

    });

  }).

  /* Driver controller */

  controller(‘driverController’, function($scope, $routeParams, ergastAPIservice) {

    $scope.id = $routeParams.id;

    $scope.races = [];

    $scope.driver = null;

    ergastAPIservice.getDriverDetails($scope.id).success(function (response) {

        $scope.driver = response.MRData.StandingsTable.StandingsLists[0].DriverStandings[0]; 

    });

    ergastAPIservice.getDriverRaces($scope.id).success(function (response) {

        $scope.races = response.MRData.RaceTable.Races; 

    }); 

  });

Note that we added the $routePrams service in the driver controller. It would let you access URL parameters and is a crucial step. 

Now we’ll create a file called partials/driver.html as we’ve added all the necessary data and only have to tackle the rest of the partial view. We’ve used the ng-show directive in the code below. The directive will ensure that our app only shows the necessary HTML element when the expression is true. This means even if the condition is null, the app wouldn’t show the HTML element. Here’s the code:

<section id=”main”>

  <a href=”./#/drivers”><- Back to drivers list</a>

  <nav id=”secondary” class=”main-nav”>

    <div class=”driver-picture”>

      <div class=”avatar”>

        <img ng-show=”driver” src=”img/drivers/{{driver.Driver.driverId}}.png” />

        <img ng-show=”driver” src=”img/flags/{{driver.Driver.nationality}}.png” /><br/>

        {{driver.Driver.givenName}} {{driver.Driver.familyName}}

      </div>

    </div>

    <div class=”driver-status”>

      Country: {{driver.Driver.nationality}} <br/>

      Team: {{driver.Constructors[0].name}}<br/>

      Birth: {{driver.Driver.dateOfBirth}}<br/>

      <a href=”{{driver.Driver.url}}” target=”_blank”>Biography</a>

    </div>

  </nav>

  <div class=”main-content”>

    <table class=”result-table”>

      <thead>

        <tr><th colspan=”5″>Formula 1 2013 Results</th></tr>

      </thead>

      <tbody>

        <tr>

          <td>Round</td> <td>Grand Prix</td> <td>Team</td> <td>Grid</td> <td>Race</td>

        </tr>

        <tr ng-repeat=”race in races”>

          <td>{{race.round}}</td>

          <td><img src=”img/flags/{{race.Circuit.Location.country}}.png” />{{race.raceName}}</td>

          <td>{{race.Results[0].Constructor.name}}</td>

          <td>{{race.Results[0].grid}}</td>

          <td>{{race.Results[0].position}}</td>

        </tr>

      </tbody>

    </table>

  </div>

</section>

Final Steps (CSS)

By now, you have a properly functioning sports-feeder app with the help of this detailed AngularJS project example. As we’ve discussed before, CSS focuses on making the webpage look attractive and amazing.

So in this step, you have the independence to add CSS to your app and enhance its appearance. You can switch up your desired fonts, change the background, add different images, or animate some transitions to improve the application’s UI. The technical sections of our project are complete. 

Checkout: Full Stack Developer Salary in India

Learn More about Development

You have now built an AngularJS app using the AngularJS project example! We hope that you enjoyed this tutorial. Remember that 

Large-scale, high-performance online applications can be created using the AngularJS platform. In single-page applications, the architecture generates extensive interactive elements for an actual experience.

Angular is quite a robust framework with many functionalities. The ones in this article were very few in comparison to the things Angular is capable of. As you’ll work on more advanced AngularJS projects, you’ll discover more of its powerful capabilities. 

If you want to learn more about full-stack development, then we recommend heading to our blog. You’ll find numerous resources on the various aspects of this field. Here are some for further reading:

Ads of upGrad blog

On the other hand, you can also take a full-stack development course and learn from industry experts through projects, videos, and assignments. The ability to work on web development, web application development, as well as website operations is known as full-stack development.

A full stack developer handles the work on the website’s front end and back end or to create both client and server apps. More than just a fad, it is seen as an all-encompassing ability in a web developer.

If you’re interested to learn more about full-stack development, check out upGrad & IIIT-B’s PG Diploma in Full-stack Software Development which is designed for working professionals and offers 500+ hours of rigorous training, 9+ projects, and assignments, IIIT-B Alumni status, practical hands-on capstone projects & job assistance with top firms.

Profile

Rohan Vats

Blog Author
Software Engineering Manager @ upGrad. Passionate about building large scale web apps with delightful experiences. In pursuit of transforming engineers into leaders.

Frequently Asked Questions (FAQs)

1Why should I learn ReactJS?

ReactJS is a user interface development library. It allows you to design reusable components, making your code more readable and maintainable. When a user interacts with a ReactJS component, it is automatically updated. This improves the responsiveness and speed of your app. It also simplifies development because you don't have to reload the page every time you make a change. React Native, on the other hand, allows you to construct cross-platform mobile apps with ReactJS. Finally, big websites such as Netflix, Facebook, and Instagram use ReactJS.

2How do you execute modules in Java?

Java is a programming language that allows programmers to design high-performance, dependable programs. Because Java is a platform-independent language, programmers can write code that runs on a wide range of hardware and software platforms. A module in an application is a self-contained component that is segregated from other components and can be utilized in various applications. You must first compile a Java module into an a.jar file before running it. After that, you can run the.jar file with the java command. Individual classes in the.jar file can also be executed using the java command. Similarly, the javac command can be used to build Java modules and classes.

3What are the types of views in SQL?

SQL (Structured Query Language) is a database computer language developed for obtaining, inserting, and modifying data in relational databases. It's database access and manipulation language that's widely used. A base view is a view that is built from multiple tables. A derived view is one that is built from the output of a SQL statement. A virtual view is one that is constructed using the results of one or more previous views and is not based on any tables. A system view is a view that SQL Server creates automatically and contains information about the current status of the database. Finally, a user-defined view is a view that is created by the user, and that is based on one or more tables or other views.

Explore Free Courses

Suggested Blogs

Top 7 Node js Project Ideas &#038; Topics
31572
Node.JS is a part of the famous MEAN stack used for web development purposes. An open-sourced server environment, Node is written on JavaScript and he
Read More

by Rohan Vats

05 Mar 2024

How to Rename Column Name in SQL
46929
Introduction We are surrounded by Data. We used to store information on paper in enormous file organizers. But eventually, we have come to store it o
Read More

by Rohan Vats

04 Mar 2024

Android Developer Salary in India in 2024 [For Freshers &#038; Experienced]
901323
Wondering what is the range of Android Developer Salary in India? Software engineering is one of the most sought after courses in India. It is a reno
Read More

by Rohan Vats

04 Mar 2024

7 Top Django Projects on Github [For Beginners &amp; Experienced]
52084
One of the best ways to learn a skill is to use it, and what better way to do this than to work on projects? So in this article, we’re sharing t
Read More

by Rohan Vats

04 Mar 2024

Salesforce Developer Salary in India in 2024 [For Freshers &#038; Experienced]
909183
Wondering what is the range of salesforce salary in India? Businesses thrive because of customers. It does not matter whether the operations are B2B
Read More

by Rohan Vats

04 Mar 2024

15 Must-Know Spring MVC Interview Questions
34745
Spring has become one of the most used Java frameworks for the development of web-applications. All the new Java applications are by default using Spr
Read More

by Arjun Mathur

04 Mar 2024

Front End Developer Salary in India in 2023 [For Freshers &#038; Experienced]
902386
Wondering what is the range of front end developer salary in India? Do you know what front end developers do and the salary they earn? Do you know wh
Read More

by Rohan Vats

04 Mar 2024

Method Overloading in Java [With Examples]
26221
Java is a versatile language that follows the concepts of Object-Oriented Programming. Many features of object-oriented programming make the code modu
Read More

by Rohan Vats

27 Feb 2024

50 Most Asked Javascript Interview Questions &#038; Answers [2024]
4383
Javascript Interview Question and Answers In this article, we have compiled the most frequently asked JavaScript Interview Questions. These questions
Read More

by Kechit Goyal

26 Feb 2024

Schedule 1:1 free counsellingTalk to Career Expert
icon
footer sticky close icon