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.
Hindi Mother Tongue (Native)
English Proficient
Rgpv Bhopal 2012
Bachelor of Engineering (B.E.)
DAVV UNIVERSITY INDORE 2016
Master of Engineering - Master of Technology (M.E./M.Tech.)
Gopal Nagar, Bhopal, India - 462022
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 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
1. Which school boards of Class 12 do you teach for?
CBSE
2. Have you ever taught in any School or College?
Yes
3. Which classes do you teach?
I teach Class 11 Tuition, Class 7 Tuition, Class 8 Tuition, IBPS Exam Coaching, MS Office Software Training, Quantitative Aptitude and Staff Selection Commission Exam Classes.
4. Do you provide a demo class?
Yes, I provide a free demo class.
5. How many years of experience do you have?
I have been teaching for 3 years.
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
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
Post your Learning Need
Let us shortlist and give the best tutors and institutes.
or
Send Enquiry to Pavan
Let Pavan know you are interested in their class
Reply to 's review
Enter your reply*
Your reply has been successfully submitted.