Arundelpet, Guntur, India - 522002.
Verified
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.
Telugu Mother Tongue (Native)
English Proficient
Jntuk 2018
Bachelor of Technology (B.Tech.)
Arundelpet, Guntur, India - 522002
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.
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
Java Programming, Compiler Design, Programming in C#, Web Engineering, Object Oriented Programming & Systems
BTech Branch
BTech Computer Science Engineering
Type of class
Regular Classes, Crash Course
Class strength catered to
One on one/ Private Tutions
Taught in School or College
No
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Board
CBSE, ICSE, State
CBSE Subjects taught
Telugu, Computers, English, Science, Hindi, Mathematics, Sanskrit
ICSE Subjects taught
Sanskrit, Mathematics, English, Telugu
Taught in School or College
No
State Syllabus Subjects taught
Telugu, Science, Sanskrit, English, Social Science, Computer Science, Hindi, Mathematics
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.
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.
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Proficiency level taught
Basic C++, Advanced 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++.
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C Sharp Classes
2
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Teaches
Core Java
Certification training offered
Yes
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.
Answered on 08/04/2020 Learn Tuition/BTech Tuition
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!!!
Answered on 08/04/2020 Learn Tuition/BTech Tuition
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!!!
Answered on 08/04/2020 Learn Tuition/BTech Tuition
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!!!
Answered on 08/04/2020 Learn Tuition/BTech Tuition
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!!!
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
Java Programming, Compiler Design, Programming in C#, Web Engineering, Object Oriented Programming & Systems
BTech Branch
BTech Computer Science Engineering
Type of class
Regular Classes, Crash Course
Class strength catered to
One on one/ Private Tutions
Taught in School or College
No
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Board
CBSE, ICSE, State
CBSE Subjects taught
Telugu, Computers, English, Science, Hindi, Mathematics, Sanskrit
ICSE Subjects taught
Sanskrit, Mathematics, English, Telugu
Taught in School or College
No
State Syllabus Subjects taught
Telugu, Science, Sanskrit, English, Social Science, Computer Science, Hindi, Mathematics
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.
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.
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Proficiency level taught
Basic C++, Advanced 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++.
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C Sharp Classes
2
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Teaches
Core Java
Certification training offered
Yes
Answered on 08/04/2020 Learn Tuition/BTech Tuition
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!!!
Answered on 08/04/2020 Learn Tuition/BTech Tuition
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!!!
Answered on 08/04/2020 Learn Tuition/BTech Tuition
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!!!
Answered on 08/04/2020 Learn Tuition/BTech Tuition
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!!!
Post your Learning Need
Let us shortlist and give the best tutors and institutes.
or
Send Enquiry to Mohan Chimata
Let Mohan Chimata know you are interested in their class
Reply to 's review
Enter your reply*
Your reply has been successfully submitted.