 
   
 Saravanampatti, Coimbatore, India - 641035.
1 yr of Exp
Details verified of Prasanna R✕
  Identity
Identity 
  Education
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
Coimbatore Institute of technology  Pursuing  
Master of Science (M.Sc.)
Saravanampatti, Coimbatore, India - 641035
  ID Verified
 ID Verified 
  Phone Verified
 Phone Verified 
  Email 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 Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in Stock Market Trading Classes
1
Teaches
Derivatives Trading, Intraday Trading
Derivatives Trading Types
Options Trading Course, Futures Trading Course
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in Computer Classes
2
Type of Computer course taken
Basics of Computer usage, Training in Software application usage, Training in Computer tools usage, Software Programming
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in Python Training classes
1
Course Duration provided
1-3 months
Seeker background catered to
Individual, Educational Institution
Certification provided
No
Python applications taught
Web Scraping with Python , Web Development with Python , Automation with Python , Text Processing with Python
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in C Language Classes
2
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor'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 , Computer Basics and PC Software , C Language Programming, Programming in C++ , Software Engineering , Database Management Systems
Type of class
Regular Classes
Class strength catered to
One on one/ Private Tutions, Group Classes
Taught in School or College
Yes
Upcoming Live Classes
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
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 Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in Stock Market Trading Classes
1
Teaches
Derivatives Trading, Intraday Trading
Derivatives Trading Types
Options Trading Course, Futures Trading Course
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in Computer Classes
2
Type of Computer course taken
Basics of Computer usage, Training in Software application usage, Training in Computer tools usage, Software Programming
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in Python Training classes
1
Course Duration provided
1-3 months
Seeker background catered to
Individual, Educational Institution
Certification provided
No
Python applications taught
Web Scraping with Python , Web Development with Python , Automation with Python , Text Processing with Python
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in C Language Classes
2
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor'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 , Computer Basics and PC Software , C Language Programming, Programming in C++ , Software Engineering , Database Management Systems
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
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;
}
 
 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.