UrbanPro
Find Best IT Courses in Dhanori, Pune

What are you looking for in IT Courses?

x

No options found matching

What is your location?

Select Country

search

India

Please enter your locality

Back

IT Courses near me in Dhanori, Pune

Select from 99 Online & Offline IT Courses in your locality

1
Anuja D. IT Courses trainer in Pune Featured
Dhanori, Pune
Verified
10 yrs of Exp
300per hour
Classes: IT Courses Java Training

I am a software engineer having 10+ years experience in java application full stack development. I have experience in taking online sessions and teaching...

2
Dhanori, Pune
Verified
9 yrs of Exp
800per hour
Classes: IT Courses, Java Training

I am an IT professional with 9 years of experience and a Java expert along with Spring ecosystem. Have extensive project experience on microservices,...

3
Dhanori, Pune
Verified
5 yrs of Exp
500per hour
Classes: IT Courses Oracle Training

I have 5.8 years of experience in IT industry & I have worked for TCS, Infosys, HSBC and I have conducted many training sessions within all companies...

Do you need help in finding the best teacher matching your requirements?

Post your requirement now
4
Dhanori, Pune
14 yrs of Exp
300per hour
Classes: IT Courses, HTML and more.

I am teacher having 14 years of experience teaching subjects related to computer science such as C, C++, HTML, JavaScript, Android Programming, Java,...

5
Dhanori, Pune
5 yrs of Exp
Classes: IT Courses, Adobe Photoshop Training and more.

Completed my electronic media graduation from anna university college of engineering guindy Chennai. My first job as assistant designer and visual...

6
Dhanori, Pune
10 yrs of Exp
Classes: IT Courses, .Net Training and more.

I have 12+ year of experience in. Net Technologies. I would like to give tuition in. Net technologies. I am MCTS certified. Current working in IT...

7
Dhanori, Pune
3 yrs of Exp
Classes: IT Courses, Robotics and more.

I am MSc in physics and teaching is my passion. Along with physics I love to take/teach hobby classes. I have worked as a technical associate and...

8
Dhanori, Pune
5 yrs of Exp
455per hour
Classes: IT Courses, MySQL Certification and more.

Specialized in web designing and web development. I had started my own institute of software and website training in Aurangabad and run the same...

9
Dhanori, Pune
10 yrs of Exp
Classes: IT Courses, Oracle Training

Over 5 yrs of exp as an oracle apps functional consultant in training and implementation. Delivered training's to companies and various clients.

10
Dhanori, Pune
6 yrs of Exp
Classes: IT Courses, MS SQL Development and more.

Presently working as a Consultant, I have 6 years of experience in Database Development. I provided training at Organisational level to one of the...

Verified

Find more IT Courses

Key highlights about IT Courses

✅ Free Demo Class : Available
✅ Average price : INR 575/hr
✅ Tutors available : 99
✅ Class format : Online or Offline classes

FAQ

How do I find the best IT Courses near me in Dhanori, Pune near me?

You can browse the list of best IT Courses tutors on UrbanPro.com. You can even book a free demo class to decide which Tutor to start classes with.

What is the typical Fee charged for IT Courses near me in Dhanori, Pune?

The fee charged varies between online and offline classes. Generally you get the best quality at the lowest cost in the online classes, as the best tutors don’t like to travel to the Student’s location.

Monthly Fee for 1-1 Classes

INR 4,200 - ₹ 9,600 for 12 classes per month

Hourly Fee for 1-1 Classes

INR 350 - ₹ 800

Monthly Fee for Group Classes

INR 3,360 - ₹ 7,680 for 12 classes per month

Hourly Fee for Group Classes

INR 280 - ₹ 640

Monthly Fee for IT Courses at home

INR 3,600 - ₹ 6,000 for 12 classes per month

Hourly Fee for IT Courses at home

INR 300 - ₹ 500

Monthly Fee for Online IT Courses

INR 3,600 - ₹ 6,000 for 12 classes per month

Hourly Fee for Online IT Courses

INR 300 - ₹ 500

Does joining IT Courses help?

It definitely helps to join IT Courses near me in Dhanori, Pune, as you get the desired motivation from a Teacher to learn. If you need personal attention and if your budget allows, select 1-1 Class. If you need peer interaction or have budget constraints, select a Group Class.

Where can I find IT Courses near me?

UrbanPro has a list of best IT Courses

Reviews for top IT Courses

Average Rating
(5.0)

5 Reviews

  • R
    review star review star review star review star review star
    01 Nov, 2019

    Rahul attended Oracle DBA OCP

    "I had taken classes for oracle plsql plus oracle DBA as well for every part he had..."

    R
    review star review star review star review star no review stars
    22 Oct, 2017

    Shubhangi attended Tableau

    "Tableau training done proficiently through theory and practice. "

    S
    review star review star review star review star review star
    17 Sep, 2017

    Bhairavi attended Java Training

    "Swadeep is a knowledgeable trainer having ability to make us understand the complex..."

    J
    review star review star review star review star review star
    18 Jul, 2017

    Dhanshree attended HTML

    "A Very Helpful Guide,Teaching Methods are Brilliant, Sir gives great examples and..."

  • S
    review star review star review star review star review star
    28 Mar, 2016

    Darshan attended Java Script Training

    "He is a great trainer with clear concept about functionality and technology. Dedicated..."

    D
    review star review star review star review star review star
    29 Oct, 2015

    Prahlad attended MS SQL Development

    "One of the best trainer, I have seen in my career. He has a thorough knowledge about..."

Get connected

Looking for IT Courses ?

Find Online or Offline IT Courses on UrbanPro.

Do you offer IT Courses ?

Create Free Profile »

IT Courses Questions

In the following snippet: /xyz.txt 404 /abc.txt 506 /pqr.txt 404 /xyz.txt...

Hi Devi, Your while loop solution will not work for all the scenarios. 1. U have not used sort before...

What is "~" in R programming?

~(tilde)' is an operator that splits the left side and right side in a formula. It is normally used to...

Is CEPTA a best institute for embedded system training?

CEPTA for Embedded System Training: A Tutor's Perspective 1. Overview: As an experienced tutor specializing...

What are the ways to perform automation testing?

As an experienced tutor registered on UrbanPro.com, I am well-versed in Automation Testing Training...

IT Courses Lessons

Things to learn in Python before choosing any Technological Vertical

Day 1: Python Basics Objective: Understand the fundamentals of Python programming language. Variables and Data Types (Integers, Strings, Floats,...

Chart

A chart is a set of coordinates When you make a chart you start with an empty, two-dimensional space, a vertical dimension (y) and a horizontal dimension...

Simple Algorithms - Fibonacci, Finding GCD & Finding LCM.

import java.util.Scanner; //0,1,1,2,3,5,8,13,21,34... //fun(n)=fun(n-1)+fun(n-2) where n>=2 /*fib(9)=fib(8)+fib(7) =fib(7)+fib(6)+fib(6)+fib(5) =fib(6)+fib(5)+fib(5)+fib(4)+fib(5)+fib(4)+fib(4)+fib(3) */ public...

Generate Employee Payslip using Excel & VBA Macros

yes we can generate the Payslips for each employee from a huge data in the excel. We can generate a separate Excel sheet for each employee and also can...

Fractional Knapsack

Algorithm - Fractional Knapsack import java.util.Scanner; public class Knapsack01 { public static void main(String args) { Scanner...

Looking for best IT Courses ?

POST YOUR REQUIREMENT

Find Best IT Courses ?

Find Now »

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more