UrbanPro
true

Himbanta M.

Electronics and Instrumentation Engineer with 6 years of teaching experience

NIMTA, Kolkata, India - 700049

Top Tutor 15 Students

Book a Demo
Referral Discount: Get ₹ 500 off when you make a payment to start classes. Get started by Booking a Demo.

Details verified of Himbanta M.

Identity

Education

Know how UrbanPro verifies Tutor details

Identity is verified based on matching the details uploaded by the Tutor with government databases.

Teaches

Class 6 Tuition
2 Students

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Class 6 Tuition

6

Board

CBSE, ICSE, State

State boards taught

West Bengal State Board

CBSE Subjects taught

Science, Mathematics

ICSE Subjects taught

Mathematics, Physics, Chemistry, Biology

Experience in School or College

I was a part time teacher in The Aryans for 1.5 years

Taught in School or College

Yes

State Syllabus Subjects taught

Science, Mathematics

4.8 out of 5 48 reviews

Himbanta Mitra https://urbanproprod.blob.core.windows.net/tv-prod/member/photo/6886348-small.jpg NIMTA
4.80548
Himbanta Mitra
S

Class 9 Tuition

I loved

Audio/Video Quality

Class Content

Teacher's Knowledge

Teaching Method

Himbanta Mitra
A

Class 10 Tuition

I loved

Audio/Video Quality

Class Content

Teaching Method

Teacher's Knowledge

Himbanta Mitra
A

Class 10 Tuition

I loved

Audio/Video Quality

Class Content

Teaching Method

Teacher's Knowledge

Himbanta Mitra
A

Class 10 Tuition

I loved

Audio/Video Quality

Class Content

Teaching Method

Teacher's Knowledge

Himbanta Mitra
A

Class 10 Tuition

I loved

Audio/Video Quality

Class Content

Teaching Method

Teacher's Knowledge

Himbanta Mitra
A

Class 10 Tuition

I loved

Audio/Video Quality

Class Content

Teaching Method

Teacher's Knowledge

Himbanta Mitra
A

Class 10 Tuition

I loved

Audio/Video Quality

Class Content

Teaching Method

Teacher's Knowledge

Himbanta Mitra
A

Class 10 Tuition

I loved

Audio/Video Quality

Class Content

Teaching Method

Teacher's Knowledge

Himbanta Mitra
A

Class 10 Tuition

I loved

Audio/Video Quality

Class Content

Teaching Method

Teacher's Knowledge

Himbanta Mitra
A

Class 10 Tuition

I loved

Audio/Video Quality

Class Content

Teaching Method

Teacher's Knowledge

Himbanta Mitra
A

Class 10 Tuition

I loved

Audio/Video Quality

Class Content

Teaching Method

Teacher's Knowledge

Himbanta Mitra
A

Class 10 Tuition

I loved

Audio/Video Quality

Class Content

Teaching Method

Teacher's Knowledge

Himbanta Mitra
A

Class 10 Tuition

I loved

Audio/Video Quality

Class Content

Teaching Method

Teacher's Knowledge

Himbanta Mitra
A

Class 10 Tuition

I loved

Audio/Video Quality

Class Content

Teaching Method

Teacher's Knowledge

Himbanta Mitra
A

Class 10 Tuition

I loved

Audio/Video Quality

Class Content

Teaching Method

Teacher's Knowledge

Have you attended any class with Himbanta?

Answers by Himbanta M. (2)

Answered on 23/04/2021 Learn Tuition

#include<stdio.h> int main() { int a=10, b=20; printf("Before swap a=%d b=%d",a,b); a=a+b;//a=30 (10+20) b=a-b;//b=10 (30-20) a=a-b;//a=20 (30-10) printf("\nAfter swap a=%d b=%d",a,b); return 0; } Output: Before swap a=10 b=20After swap a=20 b=10Program 2: Using * and /Let's see another example... ...more

#include<stdio.h>
int main()
{
int a=10, b=20;
printf("Before swap a=%d b=%d",a,b);
a=a+b;//a=30 (10+20)
b=a-b;//b=10 (30-20)
a=a-b;//a=20 (30-10)
printf("\nAfter swap a=%d b=%d",a,b);
return 0;
}
Output:


Before swap a=10 b=20
After swap a=20 b=10
Program 2: Using * and /
Let's see another example to swap two numbers using * and /.


#include<stdio.h>
#include<stdlib.h>
int main()
{
int a=10, b=20;
printf("Before swap a=%d b=%d",a,b);
a=a*b;//a=200 (10*20)
b=a/b;//b=10 (200/20)
a=a/b;//a=20 (200/10)
system("cls");
printf("\nAfter swap a=%d b=%d",a,b);
return 0;
}

Answers 281 Comments
Dislike Bookmark

Answered on 22/04/2021 Learn Tuition

Without using any variable in C++: #include<stdio.h> #include<stdlib.h> int main() { int a=10, b=20; printf("Before swap a=%d b=%d",a,b); a=a*b;//a=200 (10*20) b=a/b;//b=10 (200/20) a=a/b;//a=20 (200/10) system("cls"); printf("\nAfter swap a=%d b=%d",a,b); return 0; } With using third variable: #include<stdio.h>int... ...more

Without using any variable in C++:

#include<stdio.h>
#include<stdlib.h>
int main()
{
int a=10, b=20;
printf("Before swap a=%d b=%d",a,b);
a=a*b;//a=200 (10*20)
b=a/b;//b=10 (200/20)
a=a/b;//a=20 (200/10)
system("cls");
printf("\nAfter swap a=%d b=%d",a,b);
return 0;
}
With using third variable:

#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;
}

Answers 281 Comments
Dislike Bookmark

Himbanta M. describes himself as Electronics and Instrumentation Engineer with 6 years of teaching experience. He conducts classes in Class 6 Tuition. Himbanta is located in NIMTA, Kolkata. Himbanta takes at students Home, Regular Classes- at his Home and Online Classes- via online medium. He has 6 years of teaching experience . Himbanta is pursuing Bachelor of Technology (B.Tech.) from RCC Institute Of Information Technology. He is well versed in Bengali, Hindi and English. Himbanta has got 48 reviews till now with 100% positive feedback.

X

Reply to 's review

Enter your reply*

1500/1500

Please enter your reply

Your reply should contain a minimum of 10 characters

Your reply has been successfully submitted.

Certified

The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.

Different batches available for this Course

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more