Gopal Nagar, Bhopal, India - 462022
Verified 4
Details verified of Pavan M.✕
Identity
Education
Know how UrbanPro verifies Tutor details
Identity is verified based on matching the details uploaded by the Tutor with government databases.
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Class 11 Tuition
3
Board
CBSE
Preferred class strength
One on one/ Private Tutions
CBSE Subjects taught
Computer Science
Experience in School or College
DM SCHOOL BHOPAL
Taught in School or College
Yes
Teaching Experience in detail in Class 11 Tuition
Teaching Computer science from basic to advance. I have more than 3 years of experience as computer science teacher
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Quantitative Aptitude Coaching
3
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in IBPS Exam Coaching
3
Target section catered to
Computer aptitude, Reasoning Ability, Quantitative aptitude/ Numerical ability
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Staff Selection Commission Exam Coaching
2
SSC_Exams_Taught
SSC Combined Graduate Level Examination (CGL Exam)
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in MS Office Software Training
3
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Class 8 Tuition
3
Board
State, CBSE, NIOS
CBSE Subjects taught
Mathematics
Experience in School or College
DM SCHOOL
Taught in School or College
Yes
State Syllabus Subjects taught
Mathematics
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Class 7 Tuition
3
Board
State, CBSE
CBSE Subjects taught
Mathematics
Experience in School or College
DM SCHOOL
Taught in School or College
Yes
State Syllabus Subjects taught
Mathematics
5 out of 5 1 review
Ekta Baidya
IBPS Exam Coaching
I loved
Teaching Method
Teacher's Knowledge
Class Content
Answered on 22/04/2021 Learn Tuition
#include<stdio.h>
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;
}
#include <stdio.h>
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;
}
Answered on 09/03/2021 Learn IT Courses
Share this Profile
Also have a look at
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.