UrbanPro
true
Swapnil Kale BSc Tuition trainer in Nashik

Swapnil Kale

Having a total teaching experience of 5+ years with good results with traditional teaching practices

Datta Mandir, Nashik, India - 422101.

Referral Discount: Get ₹ 500 off when you make a payment to start classes. Get started by Booking a Demo.

Details verified of Swapnil Kale

Identity

Education

Know how UrbanPro verifies Tutor details

Identity is verified based on matching the details uploaded by the Tutor with government databases.

Overview

I have been giving private tuitions since 2016 for Mathematics, Science subjects and Programming Languages like C, C++ and Java.

I have done my engineering in Computer Science,
Post Graduate Diploma in Advance Computing and M.B.A in Finance.

Languages Spoken

Marathi Mother Tongue (Native)

English Proficient

Hindi Proficient

Education

Welingkar Institute of Management and Research, Matunga 2019

Master of Business Administration (M.B.A.)

Address

Datta Mandir, Nashik, India - 422101

Verified Info

ID Verified

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.

Please describe the problem that you see in this page.

Type the letters as shown below *

Please enter the letters as show below

Teaches

BSc Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BSc Tuition

4

BSc Computer Science Subjects

Microprocessors, Computer Graphics, Operating Systems, Programming Fundamentals, Software Engineering, Software Testing, Data Structures

Experience in School or College

I have been taking Private tuitions since 2016 for CBSE and ICSE students for class 8 and above for Science and Mathematics and Programming languages.

Type of class

Crash Course, Regular Classes

Class strength catered to

One on one/ Private Tutions

Taught in School or College

Yes

BSc Branch

BSc Computer Science

Class 10 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 10 Tuition

4

Board

State, CBSE, ICSE

State boards taught

Gujarat State Board, Maharashtra State Board, Karnataka State Board, Delhi State Board

CBSE Subjects taught

Computer Practices, Science, Social science, Mathematics

ICSE Subjects taught

Chemistry, Mathematics, Physics, Biology, Computer Application

Experience in School or College

teaching since 2016

Taught in School or College

Yes

State Syllabus Subjects taught

Mathematics, Science, Social Science

Class 11 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 11 Tuition

4

Board

CBSE, ISC/ICSE, State

State boards taught

Gujarat State Board, Maharashtra State Board, Karnataka State Board, Delhi State Board

ISC/ICSE Subjects taught

Physics, Biology, Chemistry, Mathematics

CBSE Subjects taught

Physics, Chemistry, Computer Science, Mathematics

Experience in School or College

teaching since 2016

Taught in School or College

Yes

State Syllabus Subjects taught

Physics, Mathematics, Chemistry, Computer Science

Class 12 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 12 Tuition

4

Board

CBSE, ISC/ICSE, State

ISC/ICSE Subjects taught

Computer Science, Physics, Chemistry, Mathematics

CBSE Subjects taught

Informatics practices, Physics, Computer Science, Chemistry, Mathematics

Experience in School or College

teaching since 2016

State board looking for

Gujarat State Board, Maharashtra State Board, Karnataka State Board, Delhi State Board

Taught in School or College

Yes

State Syllabus Subjects taught

Physics, Mathematics, Chemistry, Computer Science

Class 9 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 9 Tuition

4

Board

State, CBSE, ICSE

State boards taught

Gujarat State Board, Maharashtra State Board, Karnataka State Board, Delhi State Board

CBSE Subjects taught

Computer Practices, Science, Social science, Mathematics

ICSE Subjects taught

Chemistry, Mathematics, Physics, Biology, Computer Application

Experience in School or College

teaching since 2016.

Taught in School or College

Yes

State Syllabus Subjects taught

Mathematics, Science, Social Science

C Language Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C Language Classes

5

C++ Language Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C++ Language Classes

5

Proficiency level taught

Advanced C++, Basic C++

Reviews

No Reviews yet!

FAQs

1. Do you have any prior teaching experience?

Yes

2. Which classes do you teach?

I teach BSc Tuition, C Language, C++ Language, Class 10 Tuition, Class 11 Tuition, Class 12 Tuition and Class 9 Tuition Classes.

3. Do you provide a demo class?

Yes, I provide a free demo class.

4. How many years of experience do you have?

I have been teaching for 4 years.

Answers by Swapnil Kale (2)

Answered on 16/04/2021 Learn Tuition

Program in C by using '+' and '-' operators:#include<stdio.h> int main() { int firstNum=10, secondNum=20; printf("Before Swapping: First Number = %d Second Number = %d",firstNum,secondNum); firstNum = firstNum + secondNum; //firstNum = 30 (10+20) secondNum = firstNum - secondNum; //secondNum =... ...more

Program in C by using '+' and '-' operators:
#include<stdio.h>
int main()
{
int firstNum=10, secondNum=20;
printf("Before Swapping: First Number = %d Second Number = %d",firstNum,secondNum);
firstNum = firstNum + secondNum; //firstNum = 30 (10+20)
secondNum = firstNum - secondNum; //secondNum = 10 (30-20)
firstNum = firstNum - secondNum; //firstNum = 20 (30-10)
printf("\nAfter Swapping: First Number = %d Second Number = %d",firstNum,secondNum);
return 0;
}
-------------------------------------------------
Program in C++ by using '*' and '/' operators:

#include <iostream>
using namespace std;
int main()
{
int firstNum=5, secondNum=10;
cout<<"Before Swapping: First Number = "<<firstNum<<" Second Number = "<<secondNum<<endl;
firstNum = firstNum * secondNum; //firstNum=50 (5*10)
secondNum = firstNum / secondNum; //secondNum=5 (50/10)
firstNum = firstNum / secondNum; //firstNum=10 (50/5)
cout<<"After Swapping: First Number = "<<firstNum<<" Second Number = "<<secondNum<<endl;
return 0;
}
--------------------------------------------------
Program in java by using '+' and '-' operators:

class SwappingDemo {
public static void main(String args[]) {
System.out.println("Before swapping:");
int firstNum = 10;
int secondNum = 20;
System.out.println("value of First Number :" + firstNum);
System.out.println("value of Second Number :" + secondNum);
System.out.println("After swapping:");
firstNum = firstNum + secondNum; //firstNum = 30 (10+20)
secondNum = firstNum - secondNum;
firstNum = firstNum - secondNum;
System.out.println("value of First Number :" + firstNum);
System.out.println("value of Second Number :" + secondNum);
}
}

I like to use the names of the variables as self-descriptive.
So no matter who is reading the code they will understand easily.

Answers 281 Comments
Dislike Bookmark

Answered on 16/04/2021 Learn Tuition

Hi Sir,Firstly and most importantly, don't let him get used to mobile phones or laptops. These must be very helpful in keeping him engaged and make him sit in one place but don't do it. And what do you mean by sitting in one place? Active kids are always good. But to make him sit at one place, and by... ...more

Hi Sir,
Firstly and most importantly, don't let him get used to mobile phones or laptops. These must be very helpful in keeping him engaged and make him sit in one place but don't do it.
And what do you mean by sitting in one place? Active kids are always good. But to make him sit at one place, and by that, I mean by making him complete things or games he plays with, you have to sit with him and do the things yourself first. We all know small kids imitate us knowingly or unknowingly. So when he looks at you doing something, he will try and imitate you. Make it fun for him.
I hope this helps. :)

Answers 1121 Comments
Dislike Bookmark

Teaches

BSc Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BSc Tuition

4

BSc Computer Science Subjects

Microprocessors, Computer Graphics, Operating Systems, Programming Fundamentals, Software Engineering, Software Testing, Data Structures

Experience in School or College

I have been taking Private tuitions since 2016 for CBSE and ICSE students for class 8 and above for Science and Mathematics and Programming languages.

Type of class

Crash Course, Regular Classes

Class strength catered to

One on one/ Private Tutions

Taught in School or College

Yes

BSc Branch

BSc Computer Science

Class 10 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 10 Tuition

4

Board

State, CBSE, ICSE

State boards taught

Gujarat State Board, Maharashtra State Board, Karnataka State Board, Delhi State Board

CBSE Subjects taught

Computer Practices, Science, Social science, Mathematics

ICSE Subjects taught

Chemistry, Mathematics, Physics, Biology, Computer Application

Experience in School or College

teaching since 2016

Taught in School or College

Yes

State Syllabus Subjects taught

Mathematics, Science, Social Science

Class 11 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 11 Tuition

4

Board

CBSE, ISC/ICSE, State

State boards taught

Gujarat State Board, Maharashtra State Board, Karnataka State Board, Delhi State Board

ISC/ICSE Subjects taught

Physics, Biology, Chemistry, Mathematics

CBSE Subjects taught

Physics, Chemistry, Computer Science, Mathematics

Experience in School or College

teaching since 2016

Taught in School or College

Yes

State Syllabus Subjects taught

Physics, Mathematics, Chemistry, Computer Science

Class 12 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 12 Tuition

4

Board

CBSE, ISC/ICSE, State

ISC/ICSE Subjects taught

Computer Science, Physics, Chemistry, Mathematics

CBSE Subjects taught

Informatics practices, Physics, Computer Science, Chemistry, Mathematics

Experience in School or College

teaching since 2016

State board looking for

Gujarat State Board, Maharashtra State Board, Karnataka State Board, Delhi State Board

Taught in School or College

Yes

State Syllabus Subjects taught

Physics, Mathematics, Chemistry, Computer Science

Class 9 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 9 Tuition

4

Board

State, CBSE, ICSE

State boards taught

Gujarat State Board, Maharashtra State Board, Karnataka State Board, Delhi State Board

CBSE Subjects taught

Computer Practices, Science, Social science, Mathematics

ICSE Subjects taught

Chemistry, Mathematics, Physics, Biology, Computer Application

Experience in School or College

teaching since 2016.

Taught in School or College

Yes

State Syllabus Subjects taught

Mathematics, Science, Social Science

C Language Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C Language Classes

5

C++ Language Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C++ Language Classes

5

Proficiency level taught

Advanced C++, Basic C++

No Reviews yet!

Answers by Swapnil Kale (2)

Answered on 16/04/2021 Learn Tuition

Program in C by using '+' and '-' operators:#include<stdio.h> int main() { int firstNum=10, secondNum=20; printf("Before Swapping: First Number = %d Second Number = %d",firstNum,secondNum); firstNum = firstNum + secondNum; //firstNum = 30 (10+20) secondNum = firstNum - secondNum; //secondNum =... ...more

Program in C by using '+' and '-' operators:
#include<stdio.h>
int main()
{
int firstNum=10, secondNum=20;
printf("Before Swapping: First Number = %d Second Number = %d",firstNum,secondNum);
firstNum = firstNum + secondNum; //firstNum = 30 (10+20)
secondNum = firstNum - secondNum; //secondNum = 10 (30-20)
firstNum = firstNum - secondNum; //firstNum = 20 (30-10)
printf("\nAfter Swapping: First Number = %d Second Number = %d",firstNum,secondNum);
return 0;
}
-------------------------------------------------
Program in C++ by using '*' and '/' operators:

#include <iostream>
using namespace std;
int main()
{
int firstNum=5, secondNum=10;
cout<<"Before Swapping: First Number = "<<firstNum<<" Second Number = "<<secondNum<<endl;
firstNum = firstNum * secondNum; //firstNum=50 (5*10)
secondNum = firstNum / secondNum; //secondNum=5 (50/10)
firstNum = firstNum / secondNum; //firstNum=10 (50/5)
cout<<"After Swapping: First Number = "<<firstNum<<" Second Number = "<<secondNum<<endl;
return 0;
}
--------------------------------------------------
Program in java by using '+' and '-' operators:

class SwappingDemo {
public static void main(String args[]) {
System.out.println("Before swapping:");
int firstNum = 10;
int secondNum = 20;
System.out.println("value of First Number :" + firstNum);
System.out.println("value of Second Number :" + secondNum);
System.out.println("After swapping:");
firstNum = firstNum + secondNum; //firstNum = 30 (10+20)
secondNum = firstNum - secondNum;
firstNum = firstNum - secondNum;
System.out.println("value of First Number :" + firstNum);
System.out.println("value of Second Number :" + secondNum);
}
}

I like to use the names of the variables as self-descriptive.
So no matter who is reading the code they will understand easily.

Answers 281 Comments
Dislike Bookmark

Answered on 16/04/2021 Learn Tuition

Hi Sir,Firstly and most importantly, don't let him get used to mobile phones or laptops. These must be very helpful in keeping him engaged and make him sit in one place but don't do it. And what do you mean by sitting in one place? Active kids are always good. But to make him sit at one place, and by... ...more

Hi Sir,
Firstly and most importantly, don't let him get used to mobile phones or laptops. These must be very helpful in keeping him engaged and make him sit in one place but don't do it.
And what do you mean by sitting in one place? Active kids are always good. But to make him sit at one place, and by that, I mean by making him complete things or games he plays with, you have to sit with him and do the things yourself first. We all know small kids imitate us knowingly or unknowingly. So when he looks at you doing something, he will try and imitate you. Make it fun for him.
I hope this helps. :)

Answers 1121 Comments
Dislike Bookmark

Swapnil Kale describes himself as Having a total teaching experience of 5+ years with good results with traditional teaching practices. He conducts classes in BSc Tuition, C Language and C++ Language. Swapnil is located in Datta Mandir, Nashik. Swapnil takes at students Home, Regular Classes- at his Home and Online Classes- via online medium. He has 5 years of teaching experience . Swapnil has completed Master of Business Administration (M.B.A.) from Welingkar Institute of Management and Research, Matunga in 2019. HeĀ is well versed in English, Marathi and Hindi.

X

Reply to 's review

Enter your reply*

1500/1500

Please enter your reply

Your reply should contain a minimum of 10 characters

Your reply has been successfully submitted.

Certified

The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.

Different batches available for this Course

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