UrbanPro
true
Sourav Das BCA Tuition trainer in Kharagpur

Sourav Das

Tutor

Kharagpur New Settlement, Kharagpur, India - 721301.

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

Details verified of Sourav Das

Identity

Education

Know how UrbanPro verifies Tutor details

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

Overview

I am an experienced, qualified tutor/ trainer with over 5 years of experience in teaching Computer/IT/CSE subject across different boards including CBSE, ICSE/ ISC, IGCSE and State Board and in graduation level ( IIT Kgp-1st year students, Diploma students, BCA, BSc-IT, Bsc). Passionate about solving computational problems, over the years I have helped hundreds of students and make them zeal to interest in computer subject. So far, I have worked as a IT Trainer in PMKVY project, All Saints Church School (Kharagpur), SER Mixed HS School ( near KGP railway station), Youth Computer Center (Kharida, Kharagpur ) , Tagged Infotech Solutions (Kolkata)
Above that, I have 1.6 years professional/ industry experience as a Java Developer in a Software Development firm named Tagged Infotech Solutions (Kolkata- 7 ) and help some students for their software projects work and also in documentation.

Languages Spoken

English

Hindi

Bengali

Education

ICFAI University 2009

Master of Computer Applications (M.C.A.)

Address

Kharagpur New Settlement, Kharagpur, India - 721301

Verified Info

Phone Verified

Email Verified

Facebook Verified

Report this Profile

Is this listing inaccurate or duplicate? Any other problem?

Please tell us about the problem and we will fix it.

Please describe the problem that you see in this page.

Type the letters as shown below *

Please enter the letters as show below

Teaches

BCA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

2

BCA Subject

Programming in C++ , Object Oriented Technologies, Network Programming and Administration , Web Programming, Computer Basics and PC Software , Database Management Systems , Computer Networks , Unix Shell programming, Data Communication and Networks, Internet Concepts and Web Design , C Language Programming, Operating System Concepts and Networking Management , Systems Analysis and Design , IT, Data and File Structures , Java Programming

Type of class

Regular Classes, Crash Course

Class strength catered to

One on one/ Private Tutions, Group Classes

Taught in School or College

No

BSc Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BSc Tuition

2

BSc Computer Science Subjects

Operating Systems, Data Structures, Computer Systems Architecture, Software Engineering, Data Communication and Computer Networks, Programming Fundamentals, Operational Research

Type of class

Regular Classes, Crash Course

Class strength catered to

One on one/ Private Tutions, Group Classes

Taught in School or College

Yes

BSc Branch

BSc Computer Science

Computer Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Computer Classes

2

Type of Computer course taken

Basics of Computer usage, Software Programming, Training in Computer tools usage, Training in Software application usage

Class 9 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 9 Tuition

2

Board

ICSE, CBSE, International Baccalaureate, IGCSE

IB Subjects taught

Computers

CBSE Subjects taught

Computer Practices

ICSE Subjects taught

Computer Application

IGCSE Subjects taught

Information Technology

Taught in School or College

Yes

Class 10 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 10 Tuition

2

Board

ICSE, CBSE, International Baccalaureate, IGCSE

IB Subjects taught

Computers

CBSE Subjects taught

Computer Practices

ICSE Subjects taught

Computer Application

IGCSE Subjects taught

Information Technology

Taught in School or College

Yes

Class 11 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 11 Tuition

2

Board

ISC/ICSE, International Baccalaureate, CBSE

IB Subjects taught

Computer Science, Information Technology

ISC/ICSE Subjects taught

Computer Science

Taught in School or College

Yes

Class 12 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 12 Tuition

2

Board

ISC/ICSE, International Baccalaureate, CBSE

IB Subjects taught

Computer Science, Information Technology

ISC/ICSE Subjects taught

Computer Science

Taught in School or College

Yes

Java Script Training classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Java Script Training classes

3

Java Training Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Java Training Classes

3

Teaches

Servlet, Core Java, JSP (Java Server Pages)

Certification training offered

No

Engineering Diploma Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Engineering Diploma Tuition

2

Information Technology Engineering Diploma Subject

Computer Networks, Operating System, Relational Data Base Management Systems, Advanced Java Programming, Industrial Projects, Object Oriented Programming, Management Information Systems, Software Engineering, Object Oriented Modelling and Design, Java Programming, Data Structure

Engineering Diploma Branch

Information Technology Engineering Diploma, Computer Engineering Diploma

Computer Engineering Diploma Subject

Object Oriented Programming, Java Programming, Computer Network, Basics of C Programming, Data Structure Using 'C', Software Engineering, Relational Database Management Systems, Advanced Java Programming

Type of class

Regular Classes, Crash Course

Class strength catered to

One on one/ Private Tutions, Group Classes

Taught in School or College

Yes

Reviews

No Reviews yet!

FAQs

1. Which BCA subjects do you tutor for?

Programming in C++ , Object Oriented Technologies, Network Programming and Administration and others

2. Do you have any prior teaching experience?

No

3. Which classes do you teach?

I teach BCA Tuition, BSc Tuition, Class 10 Tuition, Class 11 Tuition, Class 12 Tuition, Class 9 Tuition, Computer, Engineering Diploma Tuition, Java Script Training and Java Training 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 2 years.

Answers by Sourav Das (2)

Answered on 30/07/2016 Learn IT Courses/Java

The finally block always executes when the try block exits. This ensures that the finally block is executed even if an unexpected exception occurs. But finally is useful for more than just exception handling — it allows the programmer to avoid having cleanup code accidentally bypassed by a return, continue,... ...more
The finally block always executes when the try block exits. This ensures that the finally block is executed even if an unexpected exception occurs. But finally is useful for more than just exception handling — it allows the programmer to avoid having cleanup code accidentally bypassed by a return, continue, or break. Putting cleanup code in a finally block is always a good practice, even when no exceptions are anticipated.
Answers 23 Comments
Dislike Bookmark

Answered on 30/07/2016 Learn IT Courses/Java

String is immutable, if you try to alter their values, another object gets created, whereas StringBuffer and StringBuilder are mutable so they can change their values. Thread-Safety Difference: The difference between StringBuffer and StringBuilder is that StringBuffer is thread-safe.
Answers 26 Comments
Dislike Bookmark

Teaches

BCA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

2

BCA Subject

Programming in C++ , Object Oriented Technologies, Network Programming and Administration , Web Programming, Computer Basics and PC Software , Database Management Systems , Computer Networks , Unix Shell programming, Data Communication and Networks, Internet Concepts and Web Design , C Language Programming, Operating System Concepts and Networking Management , Systems Analysis and Design , IT, Data and File Structures , Java Programming

Type of class

Regular Classes, Crash Course

Class strength catered to

One on one/ Private Tutions, Group Classes

Taught in School or College

No

BSc Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BSc Tuition

2

BSc Computer Science Subjects

Operating Systems, Data Structures, Computer Systems Architecture, Software Engineering, Data Communication and Computer Networks, Programming Fundamentals, Operational Research

Type of class

Regular Classes, Crash Course

Class strength catered to

One on one/ Private Tutions, Group Classes

Taught in School or College

Yes

BSc Branch

BSc Computer Science

Computer Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Computer Classes

2

Type of Computer course taken

Basics of Computer usage, Software Programming, Training in Computer tools usage, Training in Software application usage

Class 9 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 9 Tuition

2

Board

ICSE, CBSE, International Baccalaureate, IGCSE

IB Subjects taught

Computers

CBSE Subjects taught

Computer Practices

ICSE Subjects taught

Computer Application

IGCSE Subjects taught

Information Technology

Taught in School or College

Yes

Class 10 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 10 Tuition

2

Board

ICSE, CBSE, International Baccalaureate, IGCSE

IB Subjects taught

Computers

CBSE Subjects taught

Computer Practices

ICSE Subjects taught

Computer Application

IGCSE Subjects taught

Information Technology

Taught in School or College

Yes

Class 11 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 11 Tuition

2

Board

ISC/ICSE, International Baccalaureate, CBSE

IB Subjects taught

Computer Science, Information Technology

ISC/ICSE Subjects taught

Computer Science

Taught in School or College

Yes

Class 12 Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class 12 Tuition

2

Board

ISC/ICSE, International Baccalaureate, CBSE

IB Subjects taught

Computer Science, Information Technology

ISC/ICSE Subjects taught

Computer Science

Taught in School or College

Yes

Java Script Training classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Java Script Training classes

3

Java Training Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Java Training Classes

3

Teaches

Servlet, Core Java, JSP (Java Server Pages)

Certification training offered

No

Engineering Diploma Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Engineering Diploma Tuition

2

Information Technology Engineering Diploma Subject

Computer Networks, Operating System, Relational Data Base Management Systems, Advanced Java Programming, Industrial Projects, Object Oriented Programming, Management Information Systems, Software Engineering, Object Oriented Modelling and Design, Java Programming, Data Structure

Engineering Diploma Branch

Information Technology Engineering Diploma, Computer Engineering Diploma

Computer Engineering Diploma Subject

Object Oriented Programming, Java Programming, Computer Network, Basics of C Programming, Data Structure Using 'C', Software Engineering, Relational Database Management Systems, Advanced Java Programming

Type of class

Regular Classes, Crash Course

Class strength catered to

One on one/ Private Tutions, Group Classes

Taught in School or College

Yes

No Reviews yet!

Answers by Sourav Das (2)

Answered on 30/07/2016 Learn IT Courses/Java

The finally block always executes when the try block exits. This ensures that the finally block is executed even if an unexpected exception occurs. But finally is useful for more than just exception handling — it allows the programmer to avoid having cleanup code accidentally bypassed by a return, continue,... ...more
The finally block always executes when the try block exits. This ensures that the finally block is executed even if an unexpected exception occurs. But finally is useful for more than just exception handling — it allows the programmer to avoid having cleanup code accidentally bypassed by a return, continue, or break. Putting cleanup code in a finally block is always a good practice, even when no exceptions are anticipated.
Answers 23 Comments
Dislike Bookmark

Answered on 30/07/2016 Learn IT Courses/Java

String is immutable, if you try to alter their values, another object gets created, whereas StringBuffer and StringBuilder are mutable so they can change their values. Thread-Safety Difference: The difference between StringBuffer and StringBuilder is that StringBuffer is thread-safe.
Answers 26 Comments
Dislike Bookmark

Sourav Das describes himself as Tutor. He conducts classes in BCA Tuition, BSc Tuition and Class 10 Tuition. Sourav is located in Kharagpur New Settlement, Kharagpur. Sourav takes at students Home, Regular Classes- at his Home and Online Classes- via online medium. He has 3 years of teaching experience . Sourav has completed Master of Computer Applications (M.C.A.) from ICFAI University in 2009. He is well versed in English, Hindi and Bengali.

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