H C Sarani, Kolkata, India - 700150
Super Tutor Certified 52
Details verified of Tanmoy G.✕
Identity
Education
Know how UrbanPro verifies Tutor details
Identity is verified based on matching the details uploaded by the Tutor with government databases.
UrbanPro Certified Tutor
For BSc Tuition
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in BSc Tuition
18
BSc Computer Science Subjects
Computer Systems Architecture, Operating Systems, Software Engineering, Programming Fundamentals, Internet Technologies, Data Mining, Data Communication and Computer Networks, Operational Research, Data Structures
Experience in School or College
Great
Type of class
Regular Classes, Crash Course
BSc IT Subjects
Dbms using FoxPro, Problem solving methodologies & programming in C, Foundation of information Technology, Advance and data structure, Computer organization & architechture
Class strength catered to
Group Classes, One on one/ Private Tutions
Taught in School or College
Yes
BSc Branch
BSc IT, BSc Computer Science
Teaching Experience in detail in BSc Tuition
Great
UrbanPro Certified Tutor
For BTech Tuition
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in BTech Tuition
20
BTech Computer Science subjects
Computer Networks, Computer Architecture, Data Warehouse and Data Mining, Java Programming, Computer Organization & Design, Design and Analysis of Algorithms, Database Management Systems, Data Structures and Algorithms, Data Communication, Object Oriented Programming & Systems
BTech Branch
BTech Information Science Engineering, BTech Computer Science Engineering
BTech Information Science subjects
Database Systems, Object Oriented Programming, Computer Networks, Data Structures and Algorithms, Data Warehousing and Data Mining, Design & Analysis of Algorithms
Experience in School or College
Great
Type of class
Regular Classes, Crash Course
Class strength catered to
Group Classes, One on one/ Private Tutions
Taught in School or College
Yes
Teaching Experience in detail in BTech Tuition
Its more than two decades that I am giving tuitions to B. Tech. students on computer science. Many of my students are well placed in IT industries viz. CTS, TCS, Credit Swiss, Accenture, Infosys, etc. It's been nice journey till date! B. Tech is a challenging course. Each & every semester has at least 8-10 differnt papers (including Theory + Practical). Its always a battle with time! From my experience, I can clearly say that students need handholding to understand each subject & its real life implementation. They want to clear the concept & doubts. And I keep myself very focused to their objectives only. Each & every student has their different requirements. So I do provide - crush courses different topics & subjects. - classes are on both online & offline mode. - both 1-to-1 and group class facilities are available. - offline classes are available at my residence on group facility Students & parents, do communicate for your requirements.
UrbanPro Certified Tutor
For Class 12 Tuition
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Class 12 Tuition
18
Board
CBSE, International Baccalaureate, ISC/ICSE
IB Subjects taught
Computer Science, Information Technology
Preferred class strength
Group Classes, One on one/ Private Tutions
ISC/ICSE Subjects taught
Computer Science
CBSE Subjects taught
Computer Science, Informatics practices
Experience in School or College
Great
Taught in School or College
Yes
Teaching Experience in detail in Class 12 Tuition
Great
UrbanPro Certified Tutor
For Class 10 Tuition
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Class 10 Tuition
18
Board
ICSE, International Baccalaureate
IB Subjects taught
Computers
Preferred class strength
Group Classes, One on one/ Private Tutions
ICSE Subjects taught
Computer Application
Experience in School or College
Great
Taught in School or College
Yes
Teaching Experience in detail in Class 10 Tuition
Great
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in MBA Tuition
18
MBA Production & operations Management Subjects Taught
Service Operations Management, Applied Operations Research, Decision Support System and Management Information system
Year taught
Second Year, First Year
Subjects Taught
Production and Operations Management
MBA Specialisation
Production and Operations Management
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Class 9 Tuition
18
Board
ICSE, International Baccalaureate
IB Subjects taught
Computers
Preferred class strength
Group Classes, One on one/ Private Tutions
ICSE Subjects taught
Computer Application
Experience in School or College
Great
Taught in School or College
Yes
Teaching Experience in detail in Class 9 Tuition
Great
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Class 11 Tuition
18
Board
CBSE, International Baccalaureate, ISC/ICSE
IB Subjects taught
Computer Science, Information Technology
Preferred class strength
Group Classes, One on one/ Private Tutions
ISC/ICSE Subjects taught
Computer Science
CBSE Subjects taught
Computer Science, Informatics practices
Experience in School or College
Interacting with students on daily basis is always a joy. Being a teacher it's more joyful to add value to their lives.
Taught in School or College
Yes
Teaching Experience in detail in Class 11 Tuition
Students of 11th standard faces major challenges in three segments: 1) Boolean Algebra & Logic Gates 2) Developing the programming logic and 3) Database Management System 4) Java/ Python
4.9 out of 5 23 reviews
Anuradha
BTech Tuition
I loved
Teacher's Knowledge
Teaching Method
Bhavna Butolia
Class 12 Tuition
I liked
Class Content
Teaching Method
Teacher's Knowledge
Amrita Patra
Class 10 Tuition
I loved
Class Content
Teacher's Knowledge
Reply by Tanmoy
Thank you Amrita
Sulaiman Gigani
BTech Tuition
I loved
Audio/Video Quality
Class Content
Teaching Method
Teacher's Knowledge
Reply by Tanmoy
Thank you Sulaiman for your kind words.
Rayan Thosif
BTech Tuition
I loved
Teacher's Knowledge
Tamanna Singh
BTech Tuition
I loved
Teaching Method
Teacher's Knowledge
Reply by Tanmoy
Thank you Tamanna for your sweet feedback.
Isha Pawar
BSc Tuition
I loved
Class Content
Teacher's Knowledge
Reply by Tanmoy
Thank you for your kind words. 🙏
Ayush Bihani
Class 10 Tuition
I loved
Teaching Method
Teacher's Knowledge
Class Content
Reply by Tanmoy
Thanks for your review.
Answered on 06 Oct Learn Exam Coaching/Foreign Education Exam Coaching/Advanced Placement Tests Coaching/Computer Science
Hi Anya, your code is full of syntactical errors. Rectified cde is as follows:
#include <iostream>
using namespace std;
int main() {
int a[4]; // Array of size 4
int *p; // Pointer to integer
p = a; // Assign the address of the first element of array 'a' to pointer 'p'
*p = 10; // Set the value at the memory location pointed to by 'p' (i.e., a[0]) to 10
p++; // Move pointer to the next element in the array
*p = 20; // Set the value at the memory location pointed to by 'p' (i.e., a[1]) to 20
p = &a[2]; // Set pointer 'p' to point to the third element of the array 'a'
*p = 30; // Set the value at the memory location pointed to by 'p' (i.e., a[2]) to 30
// Loop to print the first three elements of the array
for (int i = 0; i < 3; i++) {
cout << a[i] << " , "; // Print the array values followed by commas
}
return 0;
}
Output:
10 , 20 , 30 ,
Answered on 25 Jul Learn Tuition
Answered on 12 Jan Learn Tuition
Answered on 06 Jan Learn Tuition
Question: What is a ternary operator in Python? Explain with example. Answer: A ternary operator in Python is a shorthand way to perform a simple conditional operation, allowing you to return one of two...
Share this Profile
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.