UrbanPro
true
Mohan Chimata BTech Tuition trainer in Guntur

Mohan Chimata

IT Professional with 2 years of experience

Arundelpet, Guntur, India - 522002.

Verified

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

Details verified of Mohan Chimata

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 am a software developer with more than two years of hands on experience. I would like to teach high school mathematics and programming in C, C++, Java, Python and C# along with web development using Angular and DOT NET.

Languages Spoken

Telugu Mother Tongue (Native)

English Proficient

Education

Jntuk 2018

Bachelor of Technology (B.Tech.)

Address

Arundelpet, Guntur, India - 522002

Verified Info

ID Verified

Education 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

BTech Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

2

BTech Computer Science subjects

Compiler Design, Java Programming, Programming in C#, Web Engineering, Object Oriented Programming & Systems

BTech Branch

BTech Computer Science Engineering

Type of class

Crash Course, Regular Classes

Class strength catered to

One on one/ Private Tutions

Taught in School or College

No

Class I-V Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Fees

₹ 60 per hour

Board

State, ICSE, CBSE

CBSE Subjects taught

Hindi, English, Mathematics, Sanskrit, Computers, Telugu, Science

ICSE Subjects taught

Sanskrit, Mathematics, English, Telugu

Taught in School or College

No

State Syllabus Subjects taught

Mathematics, Social Science, Sanskrit, Hindi, English, Computer Science, Science, Telugu

Teaching Experience in detail in Class I-V Tuition

I have completed bachelor's degree in computer science and have had more than two years of experience in software development.

C Language Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Teaching Experience in detail in C Language Classes

I have completed my bachelor's degree in computer science and I have more than two years of hands on experience as a software developer.

C++ Language Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Proficiency level taught

Advanced C++, Basic C++

Teaching Experience in detail in C++ Language Classes

I am a software developer with more than two years of experience. I did online certifications in NPTEL India. I do have hands on experience in Competitive coding with C++.

C Sharp Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C Sharp Classes

2

Java Training Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Teaches

Core Java

Certification training offered

Yes

Reviews

No Reviews yet!

FAQs

1. Which BTech branches do you tutor for?

BTech Computer Science Engineering

2. Do you have any prior teaching experience?

No

3. Which classes do you teach?

I teach BTech Tuition, C Language, C Sharp, C++ Language, Class I-V Tuition and Java Training Classes.

4. Do you provide a demo class?

Yes, I provide a paid demo class.

5. How many years of experience do you have?

I have been teaching for 2 years.

Answers by Mohan Chimata (4)

Answered on 08/04/2020 Learn Tuition/BTech Tuition +3 IT Courses/Programming Languages/Python IT Courses/Programming Languages/Python/Python Anaconda IT Courses/Programming Languages/Python/Python Advanced

Hello Anurag, As per your query, Input:- a list of tuples with two values (order-number: string, total-order-cost: float) each Output:- the updated list of tuples. Condition: When b < 100, b = b + 10 where b: total-order-cost (product of the price per items and the quantity) for every tuple of (a,... ...more

Hello Anurag,

As per your query,

Input:- a list of tuples with two values (order-number: string, total-order-cost: float) each

Output:- the updated list of tuples.

Condition: When b < 100, b = b + 10 where b: total-order-cost (product of the price per items and the quantity) for every tuple of (a, b) in the input list.

Program:

1) With regular for-loop:

# You might use list(input()) to read list from user input.

inputList = [('34587',163.8),('98762',284.0),('77226',98.85),('88112',74.97)]

 

outputList = []

 

for _tuple in inputList:

if (_tuple[1] < 100): 

    outputList.append((_tuple[0], _tuple[1]+10))

else:

  outputList.append((_tuple[0],_tuple[1]))

print('Updated List:',outputList)

 

PS: Since tuples are immutable (cannot change it's value further) in python, we used one more list instead of replacing the given input list itself.

 

2) With list-comprehension:- 

inputList = [('34587',163.8),('98762',284.0),('77226',98.85),('88112',74.97)]

 

def getUpdatedList(inputList):

  return [(ele[0], ele[1]+10) if (ele[1]) < 100 else (ele[0], ele[1]) for ele in inputList]

 

outputList = getUpdatedList(inputTuple)

print(outputList)

 

Or simply,

 

print([(ele[0], ele[1]+10) if (ele[1]) < 100 else (ele[0], ele[1]) for ele in inputList])

  

 

Feel free to ask me any further questions. Happy Coding!!!

 

Answers 26 Comments
Dislike Bookmark

Answered on 08/04/2020 Learn Tuition/BTech Tuition +3 IT Courses/Programming Languages/Python IT Courses/Programming Languages/Python/Python Anaconda IT Courses/Programming Languages/Python/Python Advanced

Hello Anurag, As per your query, Input:- a list of tuples with two values (order-number: string, total-order-cost: float) each Output:- the updated list of tuples. Condition: When b < 100, b = b + 10 where b: total-order-cost (product of the price per items and the quantity) for every tuple of (a,... ...more

Hello Anurag,

As per your query,

Input:- a list of tuples with two values (order-number: string, total-order-cost: float) each

Output:- the updated list of tuples.

Condition: When b < 100, b = b + 10 where b: total-order-cost (product of the price per items and the quantity) for every tuple of (a, b) in the input list.

Program:

1) With regular for-loop:

# You might use list(input()) to read list from user input.

inputList = [('34587',163.8),('98762',284.0),('77226',98.85),('88112',74.97)]

 

outputList = []

 

for _tuple in inputList:

if (_tuple[1] < 100): 

    outputList.append((_tuple[0], _tuple[1]+10))

else:

  outputList.append((_tuple[0],_tuple[1]))

print('Updated List:',outputList)

 

PS: Since tuples are immutable (cannot change it's value further) in python, we used one more list instead of replacing the given input list itself.

 

2) With list-comprehension:- 

inputList = [('34587',163.8),('98762',284.0),('77226',98.85),('88112',74.97)]

 

def getUpdatedList(inputList):

  return [(ele[0], ele[1]+10) if (ele[1]) < 100 else (ele[0], ele[1]) for ele in inputList]

 

outputList = getUpdatedList(inputTuple)

print(outputList)

 

Or simply,

 

print([(ele[0], ele[1]+10) if (ele[1]) < 100 else (ele[0], ele[1]) for ele in inputList])

  

 

Feel free to ask me any further questions. Happy Coding!!!

 

Answers 26 Comments
Dislike Bookmark

Answered on 08/04/2020 Learn Tuition/BTech Tuition +3 IT Courses/Programming Languages/Python IT Courses/Programming Languages/Python/Python Anaconda IT Courses/Programming Languages/Python/Python Advanced

Hello Anurag, As per your question, Input:- a list of tuples with two values (order-number: string, total-order-cost: float) each Output:- the updated list of tuples. Condition: When b < 100, b = b + 10 where b: total-order-cost (product of the price per items and the quantity) for every tuple of... ...more

Hello Anurag,

As per your question,

 

Input:- a list of tuples with two values (order-number: string, total-order-cost: float) each

Output:- the updated list of tuples.

Condition: When b < 100, b = b + 10 where b: total-order-cost (product of the price per items and the quantity) for every tuple of (a, b) in the input list.

 

Program:

1) With regular for-loop:

# You might use list(input()) to read list from user input.

inputList = [('34587',163.8),('98762',284.0),('77226',98.85),('88112',74.97)]

 

outputList = []

 

for _tuple in inputList:

if (_tuple[1] < 100):

    outputList.append((_tuple[0], _tuple[1]+10))

else:

  outputList.append((_tuple[0],_tuple[1]))

print('Updated List:',outputList)

 

 

PS: Since tuples are immutable (cannot change it's value further) in python, we used one more list instead of replacing the given input list itself.

 

2) With list-comprehension:- 

inputList = [('34587',163.8),('98762',284.0),('77226',98.85),('88112',74.97)]

 

def getUpdatedList(inputList):

  return [(ele[0], ele[1]+10) if (ele[1]) < 100 else (ele[0], ele[1]) for ele in inputList]

 

outputList = getUpdatedList(inputTuple)

print(outputList)

 

Or simply,

 

print([(ele[0], ele[1]+10) if (ele[1]) < 100 else (ele[0], ele[1]) for ele in inputList]) 

 

 

Feel free to ask me any further questions. Happy Coding!!!

 

Answers 26 Comments
Dislike Bookmark

Answered on 08/04/2020 Learn Tuition/BTech Tuition +3 IT Courses/Programming Languages/Python IT Courses/Programming Languages/Python/Python Anaconda IT Courses/Programming Languages/Python/Python Advanced

Hello Anurag, As per your question, Input:- a list of tuples with two values (order-number: string, total-order-cost: float) each Output:- the updated list of tuples. Condition: When b < 100, b = b + 10 where b: total-order-cost (product of the price per items and the quantity) for every tuple of... ...more

Hello Anurag,

As per your question,

 

Input:- a list of tuples with two values (order-number: string, total-order-cost: float) each

Output:- the updated list of tuples.

Condition: When b < 100, b = b + 10 where b: total-order-cost (product of the price per items and the quantity) for every tuple of (a, b) in the input list.

 

Program:

1) With regular for-loop:

# You might use list(input()) to read list from user input.

inputList = [('34587',163.8),('98762',284.0),('77226',98.85),('88112',74.97)]

 

outputList = []

 

for _tuple in inputList:

if (_tuple[1] < 100):

    outputList.append((_tuple[0], _tuple[1]+10))

else:

  outputList.append((_tuple[0],_tuple[1]))

print('Updated List:',outputList)

 

 

PS: Since tuples are immutable (cannot change it's value further) in python, we used one more list instead of replacing the given input list itself.

 

2) With list-comprehension:- 

inputList = [('34587',163.8),('98762',284.0),('77226',98.85),('88112',74.97)]

 

def getUpdatedList(inputList):

  return [(ele[0], ele[1]+10) if (ele[1]) < 100 else (ele[0], ele[1]) for ele in inputList]

 

outputList = getUpdatedList(inputTuple)

print(outputList)

 

Or simply,

 

print([(ele[0], ele[1]+10) if (ele[1]) < 100 else (ele[0], ele[1]) for ele in inputList]) 

 

 

Feel free to ask me any further questions. Happy Coding!!!

 

Answers 26 Comments
Dislike Bookmark

Teaches

BTech Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

2

BTech Computer Science subjects

Compiler Design, Java Programming, Programming in C#, Web Engineering, Object Oriented Programming & Systems

BTech Branch

BTech Computer Science Engineering

Type of class

Crash Course, Regular Classes

Class strength catered to

One on one/ Private Tutions

Taught in School or College

No

Class I-V Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Fees

₹ 60 per hour

Board

State, ICSE, CBSE

CBSE Subjects taught

Hindi, English, Mathematics, Sanskrit, Computers, Telugu, Science

ICSE Subjects taught

Sanskrit, Mathematics, English, Telugu

Taught in School or College

No

State Syllabus Subjects taught

Mathematics, Social Science, Sanskrit, Hindi, English, Computer Science, Science, Telugu

Teaching Experience in detail in Class I-V Tuition

I have completed bachelor's degree in computer science and have had more than two years of experience in software development.

C Language Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Teaching Experience in detail in C Language Classes

I have completed my bachelor's degree in computer science and I have more than two years of hands on experience as a software developer.

C++ Language Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Proficiency level taught

Advanced C++, Basic C++

Teaching Experience in detail in C++ Language Classes

I am a software developer with more than two years of experience. I did online certifications in NPTEL India. I do have hands on experience in Competitive coding with C++.

C Sharp Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C Sharp Classes

2

Java Training Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Teaches

Core Java

Certification training offered

Yes

No Reviews yet!

Answers by Mohan Chimata (4)

Answered on 08/04/2020 Learn Tuition/BTech Tuition +3 IT Courses/Programming Languages/Python IT Courses/Programming Languages/Python/Python Anaconda IT Courses/Programming Languages/Python/Python Advanced

Hello Anurag, As per your query, Input:- a list of tuples with two values (order-number: string, total-order-cost: float) each Output:- the updated list of tuples. Condition: When b < 100, b = b + 10 where b: total-order-cost (product of the price per items and the quantity) for every tuple of (a,... ...more

Hello Anurag,

As per your query,

Input:- a list of tuples with two values (order-number: string, total-order-cost: float) each

Output:- the updated list of tuples.

Condition: When b < 100, b = b + 10 where b: total-order-cost (product of the price per items and the quantity) for every tuple of (a, b) in the input list.

Program:

1) With regular for-loop:

# You might use list(input()) to read list from user input.

inputList = [('34587',163.8),('98762',284.0),('77226',98.85),('88112',74.97)]

 

outputList = []

 

for _tuple in inputList:

if (_tuple[1] < 100): 

    outputList.append((_tuple[0], _tuple[1]+10))

else:

  outputList.append((_tuple[0],_tuple[1]))

print('Updated List:',outputList)

 

PS: Since tuples are immutable (cannot change it's value further) in python, we used one more list instead of replacing the given input list itself.

 

2) With list-comprehension:- 

inputList = [('34587',163.8),('98762',284.0),('77226',98.85),('88112',74.97)]

 

def getUpdatedList(inputList):

  return [(ele[0], ele[1]+10) if (ele[1]) < 100 else (ele[0], ele[1]) for ele in inputList]

 

outputList = getUpdatedList(inputTuple)

print(outputList)

 

Or simply,

 

print([(ele[0], ele[1]+10) if (ele[1]) < 100 else (ele[0], ele[1]) for ele in inputList])

  

 

Feel free to ask me any further questions. Happy Coding!!!

 

Answers 26 Comments
Dislike Bookmark

Answered on 08/04/2020 Learn Tuition/BTech Tuition +3 IT Courses/Programming Languages/Python IT Courses/Programming Languages/Python/Python Anaconda IT Courses/Programming Languages/Python/Python Advanced

Hello Anurag, As per your query, Input:- a list of tuples with two values (order-number: string, total-order-cost: float) each Output:- the updated list of tuples. Condition: When b < 100, b = b + 10 where b: total-order-cost (product of the price per items and the quantity) for every tuple of (a,... ...more

Hello Anurag,

As per your query,

Input:- a list of tuples with two values (order-number: string, total-order-cost: float) each

Output:- the updated list of tuples.

Condition: When b < 100, b = b + 10 where b: total-order-cost (product of the price per items and the quantity) for every tuple of (a, b) in the input list.

Program:

1) With regular for-loop:

# You might use list(input()) to read list from user input.

inputList = [('34587',163.8),('98762',284.0),('77226',98.85),('88112',74.97)]

 

outputList = []

 

for _tuple in inputList:

if (_tuple[1] < 100): 

    outputList.append((_tuple[0], _tuple[1]+10))

else:

  outputList.append((_tuple[0],_tuple[1]))

print('Updated List:',outputList)

 

PS: Since tuples are immutable (cannot change it's value further) in python, we used one more list instead of replacing the given input list itself.

 

2) With list-comprehension:- 

inputList = [('34587',163.8),('98762',284.0),('77226',98.85),('88112',74.97)]

 

def getUpdatedList(inputList):

  return [(ele[0], ele[1]+10) if (ele[1]) < 100 else (ele[0], ele[1]) for ele in inputList]

 

outputList = getUpdatedList(inputTuple)

print(outputList)

 

Or simply,

 

print([(ele[0], ele[1]+10) if (ele[1]) < 100 else (ele[0], ele[1]) for ele in inputList])

  

 

Feel free to ask me any further questions. Happy Coding!!!

 

Answers 26 Comments
Dislike Bookmark

Answered on 08/04/2020 Learn Tuition/BTech Tuition +3 IT Courses/Programming Languages/Python IT Courses/Programming Languages/Python/Python Anaconda IT Courses/Programming Languages/Python/Python Advanced

Hello Anurag, As per your question, Input:- a list of tuples with two values (order-number: string, total-order-cost: float) each Output:- the updated list of tuples. Condition: When b < 100, b = b + 10 where b: total-order-cost (product of the price per items and the quantity) for every tuple of... ...more

Hello Anurag,

As per your question,

 

Input:- a list of tuples with two values (order-number: string, total-order-cost: float) each

Output:- the updated list of tuples.

Condition: When b < 100, b = b + 10 where b: total-order-cost (product of the price per items and the quantity) for every tuple of (a, b) in the input list.

 

Program:

1) With regular for-loop:

# You might use list(input()) to read list from user input.

inputList = [('34587',163.8),('98762',284.0),('77226',98.85),('88112',74.97)]

 

outputList = []

 

for _tuple in inputList:

if (_tuple[1] < 100):

    outputList.append((_tuple[0], _tuple[1]+10))

else:

  outputList.append((_tuple[0],_tuple[1]))

print('Updated List:',outputList)

 

 

PS: Since tuples are immutable (cannot change it's value further) in python, we used one more list instead of replacing the given input list itself.

 

2) With list-comprehension:- 

inputList = [('34587',163.8),('98762',284.0),('77226',98.85),('88112',74.97)]

 

def getUpdatedList(inputList):

  return [(ele[0], ele[1]+10) if (ele[1]) < 100 else (ele[0], ele[1]) for ele in inputList]

 

outputList = getUpdatedList(inputTuple)

print(outputList)

 

Or simply,

 

print([(ele[0], ele[1]+10) if (ele[1]) < 100 else (ele[0], ele[1]) for ele in inputList]) 

 

 

Feel free to ask me any further questions. Happy Coding!!!

 

Answers 26 Comments
Dislike Bookmark

Answered on 08/04/2020 Learn Tuition/BTech Tuition +3 IT Courses/Programming Languages/Python IT Courses/Programming Languages/Python/Python Anaconda IT Courses/Programming Languages/Python/Python Advanced

Hello Anurag, As per your question, Input:- a list of tuples with two values (order-number: string, total-order-cost: float) each Output:- the updated list of tuples. Condition: When b < 100, b = b + 10 where b: total-order-cost (product of the price per items and the quantity) for every tuple of... ...more

Hello Anurag,

As per your question,

 

Input:- a list of tuples with two values (order-number: string, total-order-cost: float) each

Output:- the updated list of tuples.

Condition: When b < 100, b = b + 10 where b: total-order-cost (product of the price per items and the quantity) for every tuple of (a, b) in the input list.

 

Program:

1) With regular for-loop:

# You might use list(input()) to read list from user input.

inputList = [('34587',163.8),('98762',284.0),('77226',98.85),('88112',74.97)]

 

outputList = []

 

for _tuple in inputList:

if (_tuple[1] < 100):

    outputList.append((_tuple[0], _tuple[1]+10))

else:

  outputList.append((_tuple[0],_tuple[1]))

print('Updated List:',outputList)

 

 

PS: Since tuples are immutable (cannot change it's value further) in python, we used one more list instead of replacing the given input list itself.

 

2) With list-comprehension:- 

inputList = [('34587',163.8),('98762',284.0),('77226',98.85),('88112',74.97)]

 

def getUpdatedList(inputList):

  return [(ele[0], ele[1]+10) if (ele[1]) < 100 else (ele[0], ele[1]) for ele in inputList]

 

outputList = getUpdatedList(inputTuple)

print(outputList)

 

Or simply,

 

print([(ele[0], ele[1]+10) if (ele[1]) < 100 else (ele[0], ele[1]) for ele in inputList]) 

 

 

Feel free to ask me any further questions. Happy Coding!!!

 

Answers 26 Comments
Dislike Bookmark

Mohan Chimata describes himself as IT Professional with 2 years of experience. He conducts classes in BTech Tuition, C Language and C Sharp. Mohan is located in Arundelpet, Guntur. Mohan takes Regular Classes- at his Home and Online Classes- via online medium. He has 2 years of teaching experience . Mohan has completed Bachelor of Technology (B.Tech.) from Jntuk in 2018. HeĀ is well versed in English and Telugu.

X

Share this Profile

Recommended Profiles

Anant Gupta

Anant Gupta photo Dilshad Garden, Delhi

Chandrashekar C

Chandrashekar C photo Sahakar Nagar, Bangalore

Sumit Kumar

Sumit Kumar photo Nawada Bhagwati Garden, Delhi

Maulik Soni

Maulik Soni photo Pethapur, Gandhinagar

Mohit Malhotra

Mohit Malhotra photo Sector 22 Block H, Noida

Narayan Sau

Narayan Sau photo Magarpatta City, Hadapsar, Pune

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