Saravanampatti, Coimbatore, India - 641035.
Details verified of Prasanna R✕
Identity
Education
Know how UrbanPro verifies Tutor details
Identity is verified based on matching the details uploaded by the Tutor with government databases.
Tamil Mother Tongue (Native)
English Proficient
Coimbatore Institute of technology Pursuing
Master of Science (M.Sc.)
Saravanampatti, Coimbatore, India - 641035
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.
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Stock Market Trading Classes
1
Teaches
Intraday Trading, Derivatives Trading
Derivatives Trading Types
Options Trading Course, Futures Trading Course
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Computer Classes
2
Type of Computer course taken
Training in Software application usage, Basics of Computer usage, Training in Computer tools usage, Software Programming
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Python Training classes
1
Course Duration provided
1-3 months
Seeker background catered to
Educational Institution, Individual
Certification provided
No
Python applications taught
Web Scraping with Python , Web Development with Python , Text Processing with Python, Automation with Python
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C Language Classes
2
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in BCA Tuition
2
Experience in School or College
Am a student in Coimbatore institute of technology .
BCA Subject
Database Management Systems , Network Programming and Administration , Software Engineering , Programming in C++ , Data and File Structures , C Language Programming, Computer Basics and PC Software
Type of class
Regular Classes
Class strength catered to
One on one/ Private Tutions, Group Classes
Taught in School or College
Yes
1. Which classes do you teach?
I teach BCA Tuition, C Language, Computer, Python Training and Stock Market Trading Classes.
2. Do you provide a demo class?
Yes, I provide a paid demo class.
3. How many years of experience do you have?
I have been teaching for 1 year.
Answered on 22/04/2021 Learn Tuition
Swap Numbers Using Temporary Variable:
#include int main()
{
double first, second, temp;
printf("Enter first number: ");
scanf("%lf", &first);
printf("Enter second number: ");
scanf("%lf", &second); // Value of first is assigned to temp
temp = first; // Value of second is assigned to first
first = second; // Value of temp (initial value of first) is assigned to second
second = temp;
printf("\nAfter swapping, firstNumber = %.2lf\n", first);
printf("After swapping, secondNumber = %.2lf", second); return 0;
}
Swap Numbers Without Using Temporary Variables:
#include int main()
{
double a, b;
printf("Enter a: ");
scanf("%lf", &a);
printf("Enter b: ");
scanf("%lf", &b);
// Swapping //
a = (initial_a - initial_b)
a = a - b; // b = (initial_a - initial_b) + initial_b = initial_a
b = a + b; // a = initial_a - (initial_a - initial_b) = initial_b
a = b - a; printf("After swapping, a = %.2lf\n", a);
printf("After swapping, b = %.2lf", b);
return 0;
}
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Stock Market Trading Classes
1
Teaches
Intraday Trading, Derivatives Trading
Derivatives Trading Types
Options Trading Course, Futures Trading Course
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Computer Classes
2
Type of Computer course taken
Training in Software application usage, Basics of Computer usage, Training in Computer tools usage, Software Programming
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Python Training classes
1
Course Duration provided
1-3 months
Seeker background catered to
Educational Institution, Individual
Certification provided
No
Python applications taught
Web Scraping with Python , Web Development with Python , Text Processing with Python, Automation with Python
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C Language Classes
2
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in BCA Tuition
2
Experience in School or College
Am a student in Coimbatore institute of technology .
BCA Subject
Database Management Systems , Network Programming and Administration , Software Engineering , Programming in C++ , Data and File Structures , C Language Programming, Computer Basics and PC Software
Type of class
Regular Classes
Class strength catered to
One on one/ Private Tutions, Group Classes
Taught in School or College
Yes
Answered on 22/04/2021 Learn Tuition
Swap Numbers Using Temporary Variable:
#include int main()
{
double first, second, temp;
printf("Enter first number: ");
scanf("%lf", &first);
printf("Enter second number: ");
scanf("%lf", &second); // Value of first is assigned to temp
temp = first; // Value of second is assigned to first
first = second; // Value of temp (initial value of first) is assigned to second
second = temp;
printf("\nAfter swapping, firstNumber = %.2lf\n", first);
printf("After swapping, secondNumber = %.2lf", second); return 0;
}
Swap Numbers Without Using Temporary Variables:
#include int main()
{
double a, b;
printf("Enter a: ");
scanf("%lf", &a);
printf("Enter b: ");
scanf("%lf", &b);
// Swapping //
a = (initial_a - initial_b)
a = a - b; // b = (initial_a - initial_b) + initial_b = initial_a
b = a + b; // a = initial_a - (initial_a - initial_b) = initial_b
a = b - a; printf("After swapping, a = %.2lf\n", a);
printf("After swapping, b = %.2lf", b);
return 0;
}
Post your Learning Need
Let us shortlist and give the best tutors and institutes.
or
Send Enquiry to Prasanna R
Let Prasanna R know you are interested in their class
Reply to 's review
Enter your reply*
Your reply has been successfully submitted.