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.
Online Classes 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 class via Zoom
Student's Home
Tutor's Home
Years of Experience in Stock Market Trading Classes
1
Teaches
Derivatives Trading, Intraday Trading
Derivatives Trading Types
Futures Trading Course, Options Trading Course
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in Computer Classes
2
Type of Computer course taken
Training in Software application usage, Software Programming, Basics of Computer usage, Training in Computer tools usage
Class Location
Online class via Zoom
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 Development with Python , Web Scraping with Python , Text Processing with Python, Automation with Python
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in C Language Classes
2
Class Location
Online class via Zoom
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
Data and File Structures , Network Programming and Administration , C Language Programming, Database Management Systems , Software Engineering , Computer Basics and PC Software , Programming in C++
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
Ask a Question
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;
}
Ask a Question
Find Qualified Tutors on UrbanPro for School Tuitions in all subjects
Also have a look at
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in Stock Market Trading Classes
1
Teaches
Derivatives Trading, Intraday Trading
Derivatives Trading Types
Futures Trading Course, Options Trading Course
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in Computer Classes
2
Type of Computer course taken
Training in Software application usage, Software Programming, Basics of Computer usage, Training in Computer tools usage
Class Location
Online class via Zoom
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 Development with Python , Web Scraping with Python , Text Processing with Python, Automation with Python
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in C Language Classes
2
Class Location
Online class via Zoom
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
Data and File Structures , Network Programming and Administration , C Language Programming, Database Management Systems , Software Engineering , Computer Basics and PC Software , Programming in C++
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
Ask a Question
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;
}
Ask a Question
Reply to 's review
Enter your reply*
Your reply has been successfully submitted.
Certified
The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.