Sri Ram Nagar, Nashik, India - 422006.
1
Details verified of Monish Bhole✕
Identity
Education
Know how UrbanPro verifies Tutor details
Identity is verified based on matching the details uploaded by the Tutor with government databases.
Marathi
English
Hindi
Pune 2011
Bachelor of Engineering (B.E.)
Google 2012
Android Devlopment
Sri Ram Nagar, Nashik, India - 422006
Phone Verified
Email Verified
Report this Profile
Is this listing inaccurate or duplicate? Any other problem?
Please tell us about the problem and we will fix it.
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in RDBMS Training
7
Subjects
PostgreSQL
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C++ Language Classes
7
Proficiency level taught
Basic C++, Advanced C++
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C Language Classes
7
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Java Training Classes
7
Teaches
Struts, J2EE, JSP (Java Server Pages), Core Java, Spring, Web services, Servlet, Hibernate
Certification training offered
Yes
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in iOS Developer Training
7
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Mobile App Development Training
7
Mobile_App_Development_iOS
GameSalad, Sencha Touch, Cocos2D, Salesforce1, Xojo, Xamarin , Kendo UI, Ionic, Appcelerator, jQuery Mobile, Salesforce Lightning Experience, Framework 7, BuildFire , Cordova, Mag+, Corona Labs, Unity
Mobile_App_Development_Android
BuildFire, jQuery Mobile, GameSalad, Cocos2D, Salesforce1, Sencha Touch, Kendo UI, Unity, Corona Labs, Ionic, Appcelerator, Cordova, Framework 7, Mag+
Teaches following
Hybrid Application Development, iPhone Application Development, Android Application Development, Windows Application Development
Mobile_App_Development_Windows
Cordova, Appcelerator, Unity, Corona Labs, Xamarin , Mag+, jQuery Mobile, Cocos2D, Xojo, Sencha Touch, Kendo UI
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in BSc Tuition
7
BSc Bio-Chemistry Subjects
Mathematics & Statistics, Chemistry
BSc Physics Subjects
Electricity and Magnetism, Digital Electronics, Mechanics, Chemistry, Solid State Physics, Mathematics, Technical Writing & Communication in English, Numerical Analysis, Statistical Physics, Thermal Physics, Microprocessor and Computer Programming, Mathematical Physics, Oscillations and Waves
BSc Electronics Subjects
Signals and Systems, Digital Electronics, Analog Communication, Numerical Techniques, Microprocessors and Microcontrollers, Computational Skills, Analog Electronics, Fundamental of Programming Languages, Electronic Instrumentation, Applied Quantum Mechanics, Electrical Machines, Electromagnetics, Digital Communication, Engineering Materials, Mathematics, Optics and Optical Electronics, Data Structures, Engineering Mathematics, Wave Propagation and Antenna, Electronics Practical, Network Analysis
BSc Computer Science Subjects
Basic Statistics and Probability, Network programming and Administration, Calculus and Matrices, Differential Equations, Digital Electronics, Artificial Intelligence, Data Communication and Computer Networks, Combinatorial Optimisations, Software Engineering, Real Analysis, Data Mining, Data Structures, Software Testing, Technical writing and communication in English, Theory of Computations, Statistical Methodology, Lab Based on Digital Electronics, Microprocessors, Calculus and Geometry, Operational Research, Information Security, Computer Systems Architecture, Internet Technologies, Operating Systems, Programming Fundamentals, Computer Graphics, Discrete Structures
Type of class
Crash Course, Regular Classes
BSc IT Subjects
Advance and data structure, Dbms using FoxPro, Computer organization & architechture, Foundation of information Technology, communication skills, Foundation of mathematics & statistics, Problem solving methodologies & programming in C
Class strength catered to
One on one/ Private Tutions, Group Classes
Taught in School or College
Yes
BSc Branch
BSc Electronics, BSc Bio-Chemistry, BSc IT, BSc Computer Science, BSc Mathematics, BSc Physics, BSc Statistics
BSc Statistics Subjects
Technical Writing and Communication in English, Real Analysis, Operational Research, Statistical Inference, Linear Models, Computer Programming in C, Econometrics, Numerical Analysis, Algebra, Design of Experiments
BSc Mathematics Subjects
Physics, Algebra, Number Theory, Discrete Mathematics, Geography, Ethics in Public Domain, Formal Logic, Green Chemistry, Differential Equations and Mathematical Modelling, Probability and Statistics, Biophysics, Numerical Methods and Programming, Calculus, Fininacial Management, Chemistry, Economics, Analysis, Mathematical Finance, Biotechnology, Environmental Issues in India, Financial Accounting, Mechanics
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Spoken English classes
7
Age groups catered to
Below 10 yrs, Above 25 yrs, 10 yrs to 15 yrs, 16 yrs to 25 yrs
Lived or Worked in English Speaking Country
Yes
Exams Attended
IELTS, TOEFL
Awards and Recognition
Yes
Certification
Certificate in Teaching English to speakers of other languages (CELTA), Young Learner Extension to CELTA, Delta (Diploma in teaching english to speaker of other languages)
Profession
Working Professional
Language of instruction offered
English to English, Hindi to English, Marathi to English
Curriculum Expertise
State, International, CBSE, ICSE/ISC
Citizen of English Speaking Country
Yes
Class strength catered to
One on one/ Private Tutions, Group Classes
Teaching done in
Basic Spoken English, English Grammar, Vocabulary
Teaching at
College
1. Which classes do you teach?
I teach BSc Tuition, C Language, C++ Language, Java Training, Mobile App Development, RDBMS, Spoken English and iOS Developer Classes.
2. Do you provide a demo class?
Yes, I provide a free demo class.
3. How many years of experience do you have?
I have been teaching for 7 years.
Answered on 15/10/2018 Learn IT Courses/Programming Languages/C Language
C programming code
#include <stdio.h>
int main()
{
int array[100], maximum, size, c, location = 1;
printf("Enter the number of elements in array\n");
scanf("%d", &size);
printf("Enter %d integers\n", size);
for (c = 0; c < size; c++)
scanf("%d", &array[c]);
maximum = array[0];
for (c = 1; c < size; c++)
{
if (array[c] > maximum)
{
maximum = array[c];
location = c+1;
}
}
printf("Maximum element is present at location %d and it's value is %d.\n", location, maximum);
return 0;
}
Answered on 15/10/2018 Learn IT Courses/Programming Languages/C Language
C programming code
#include <stdio.h>
int main()
{
int array[100], maximum, size, c, location = 1;
printf("Enter the number of elements in array\n");
scanf("%d", &size);
printf("Enter %d integers\n", size);
for (c = 0; c < size; c++)
scanf("%d", &array[c]);
maximum = array[0];
for (c = 1; c < size; c++)
{
if (array[c] > maximum)
{
maximum = array[c];
location = c+1;
}
}
printf("Maximum element is present at location %d and it's value is %d.\n", location, maximum);
return 0;
}
Answered on 07/10/2018 Learn IT Courses/Java
Android programming is basically all Java. If you want to develop apps first you must first have knowledge of core java. Also having a knowledge of getters and setters, Array lists, Lists, classes and object are some of the important topics in Java for android.
Also have a knowledge of classes such as Bundle, Intents which are specifically used for android. Trust me, there are many classes for android which you must be well aware of.
Now comming to the question, you can start developing apps if you know abit of Java. That solely depends upon what you want to build. Some apps that are static needs a bit of programming and needs more of designing(XML). While some other apps that you want to build may need more advanced programming like network requests and many more.
And now comming to the other part, say you have an idea in mind, you can search for similar projects study what do you need for that specific feature in you app and how can you achieve it.
Let's say you want you app to perform network requests then find out how to do network requests. Then learn about that library. And then implement it in your app. Trust me there are lot of help available in the internet.
Also my advice would be, Have a knowledge of core Java and then start building some basic apps with some basic features. Look over in the internet and then add some features to it. That's how you will learn. That's all. And good luck for you app. :)
Answered on 29/08/2018 Learn iOS Development
The best and safest way to roll back your iPhone to iOS 11 is through a backup, and it’s easy, as long as you made a backup before upgrading to iOS 12. Let’s look at how to restore your iPhone if you have a backup from when your iPhone was running iOS 11.4 stored on your computer.
If you didn’t back up your device before updating to iOS 12, then there are still some options for you — though you may lose your texts in the process. If you’re fine with that, follow the instructions below.
Answered on 29/08/2018 Learn iOS Development
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in RDBMS Training
7
Subjects
PostgreSQL
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C++ Language Classes
7
Proficiency level taught
Basic C++, Advanced C++
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C Language Classes
7
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Java Training Classes
7
Teaches
Struts, J2EE, JSP (Java Server Pages), Core Java, Spring, Web services, Servlet, Hibernate
Certification training offered
Yes
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in iOS Developer Training
7
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Mobile App Development Training
7
Mobile_App_Development_iOS
GameSalad, Sencha Touch, Cocos2D, Salesforce1, Xojo, Xamarin , Kendo UI, Ionic, Appcelerator, jQuery Mobile, Salesforce Lightning Experience, Framework 7, BuildFire , Cordova, Mag+, Corona Labs, Unity
Mobile_App_Development_Android
BuildFire, jQuery Mobile, GameSalad, Cocos2D, Salesforce1, Sencha Touch, Kendo UI, Unity, Corona Labs, Ionic, Appcelerator, Cordova, Framework 7, Mag+
Teaches following
Hybrid Application Development, iPhone Application Development, Android Application Development, Windows Application Development
Mobile_App_Development_Windows
Cordova, Appcelerator, Unity, Corona Labs, Xamarin , Mag+, jQuery Mobile, Cocos2D, Xojo, Sencha Touch, Kendo UI
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in BSc Tuition
7
BSc Bio-Chemistry Subjects
Mathematics & Statistics, Chemistry
BSc Physics Subjects
Electricity and Magnetism, Digital Electronics, Mechanics, Chemistry, Solid State Physics, Mathematics, Technical Writing & Communication in English, Numerical Analysis, Statistical Physics, Thermal Physics, Microprocessor and Computer Programming, Mathematical Physics, Oscillations and Waves
BSc Electronics Subjects
Signals and Systems, Digital Electronics, Analog Communication, Numerical Techniques, Microprocessors and Microcontrollers, Computational Skills, Analog Electronics, Fundamental of Programming Languages, Electronic Instrumentation, Applied Quantum Mechanics, Electrical Machines, Electromagnetics, Digital Communication, Engineering Materials, Mathematics, Optics and Optical Electronics, Data Structures, Engineering Mathematics, Wave Propagation and Antenna, Electronics Practical, Network Analysis
BSc Computer Science Subjects
Basic Statistics and Probability, Network programming and Administration, Calculus and Matrices, Differential Equations, Digital Electronics, Artificial Intelligence, Data Communication and Computer Networks, Combinatorial Optimisations, Software Engineering, Real Analysis, Data Mining, Data Structures, Software Testing, Technical writing and communication in English, Theory of Computations, Statistical Methodology, Lab Based on Digital Electronics, Microprocessors, Calculus and Geometry, Operational Research, Information Security, Computer Systems Architecture, Internet Technologies, Operating Systems, Programming Fundamentals, Computer Graphics, Discrete Structures
Type of class
Crash Course, Regular Classes
BSc IT Subjects
Advance and data structure, Dbms using FoxPro, Computer organization & architechture, Foundation of information Technology, communication skills, Foundation of mathematics & statistics, Problem solving methodologies & programming in C
Class strength catered to
One on one/ Private Tutions, Group Classes
Taught in School or College
Yes
BSc Branch
BSc Electronics, BSc Bio-Chemistry, BSc IT, BSc Computer Science, BSc Mathematics, BSc Physics, BSc Statistics
BSc Statistics Subjects
Technical Writing and Communication in English, Real Analysis, Operational Research, Statistical Inference, Linear Models, Computer Programming in C, Econometrics, Numerical Analysis, Algebra, Design of Experiments
BSc Mathematics Subjects
Physics, Algebra, Number Theory, Discrete Mathematics, Geography, Ethics in Public Domain, Formal Logic, Green Chemistry, Differential Equations and Mathematical Modelling, Probability and Statistics, Biophysics, Numerical Methods and Programming, Calculus, Fininacial Management, Chemistry, Economics, Analysis, Mathematical Finance, Biotechnology, Environmental Issues in India, Financial Accounting, Mechanics
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Spoken English classes
7
Age groups catered to
Below 10 yrs, Above 25 yrs, 10 yrs to 15 yrs, 16 yrs to 25 yrs
Lived or Worked in English Speaking Country
Yes
Exams Attended
IELTS, TOEFL
Awards and Recognition
Yes
Certification
Certificate in Teaching English to speakers of other languages (CELTA), Young Learner Extension to CELTA, Delta (Diploma in teaching english to speaker of other languages)
Profession
Working Professional
Language of instruction offered
English to English, Hindi to English, Marathi to English
Curriculum Expertise
State, International, CBSE, ICSE/ISC
Citizen of English Speaking Country
Yes
Class strength catered to
One on one/ Private Tutions, Group Classes
Teaching done in
Basic Spoken English, English Grammar, Vocabulary
Teaching at
College
Answered on 15/10/2018 Learn IT Courses/Programming Languages/C Language
C programming code
#include <stdio.h>
int main()
{
int array[100], maximum, size, c, location = 1;
printf("Enter the number of elements in array\n");
scanf("%d", &size);
printf("Enter %d integers\n", size);
for (c = 0; c < size; c++)
scanf("%d", &array[c]);
maximum = array[0];
for (c = 1; c < size; c++)
{
if (array[c] > maximum)
{
maximum = array[c];
location = c+1;
}
}
printf("Maximum element is present at location %d and it's value is %d.\n", location, maximum);
return 0;
}
Answered on 15/10/2018 Learn IT Courses/Programming Languages/C Language
C programming code
#include <stdio.h>
int main()
{
int array[100], maximum, size, c, location = 1;
printf("Enter the number of elements in array\n");
scanf("%d", &size);
printf("Enter %d integers\n", size);
for (c = 0; c < size; c++)
scanf("%d", &array[c]);
maximum = array[0];
for (c = 1; c < size; c++)
{
if (array[c] > maximum)
{
maximum = array[c];
location = c+1;
}
}
printf("Maximum element is present at location %d and it's value is %d.\n", location, maximum);
return 0;
}
Answered on 07/10/2018 Learn IT Courses/Java
Android programming is basically all Java. If you want to develop apps first you must first have knowledge of core java. Also having a knowledge of getters and setters, Array lists, Lists, classes and object are some of the important topics in Java for android.
Also have a knowledge of classes such as Bundle, Intents which are specifically used for android. Trust me, there are many classes for android which you must be well aware of.
Now comming to the question, you can start developing apps if you know abit of Java. That solely depends upon what you want to build. Some apps that are static needs a bit of programming and needs more of designing(XML). While some other apps that you want to build may need more advanced programming like network requests and many more.
And now comming to the other part, say you have an idea in mind, you can search for similar projects study what do you need for that specific feature in you app and how can you achieve it.
Let's say you want you app to perform network requests then find out how to do network requests. Then learn about that library. And then implement it in your app. Trust me there are lot of help available in the internet.
Also my advice would be, Have a knowledge of core Java and then start building some basic apps with some basic features. Look over in the internet and then add some features to it. That's how you will learn. That's all. And good luck for you app. :)
Answered on 29/08/2018 Learn iOS Development
The best and safest way to roll back your iPhone to iOS 11 is through a backup, and it’s easy, as long as you made a backup before upgrading to iOS 12. Let’s look at how to restore your iPhone if you have a backup from when your iPhone was running iOS 11.4 stored on your computer.
If you didn’t back up your device before updating to iOS 12, then there are still some options for you — though you may lose your texts in the process. If you’re fine with that, follow the instructions below.
Answered on 29/08/2018 Learn iOS Development
Post your Learning Need
Let us shortlist and give the best tutors and institutes.
or
Send Enquiry to Monish Bhole
Let Monish Bhole know you are interested in their class
Reply to 's review
Enter your reply*
Your reply has been successfully submitted.