UrbanPro
true
Suresh C Language trainer in Tirupati Urban

Suresh

IT Professional Trainer with 10 years of experience in IT Industry

Tirupathi, Tirupati Urban, India - 517501.

Verified 6 Students

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

Details verified of Suresh

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 software trainer cum developer to giving home/online/tutor home tuition since 8 years experience in different technologies like ms-office, c,c++,java,dotnet(c#,vb.net ,asp.net,sqlserver) ,data structure and python programming

Languages Spoken

Telugu Mother Tongue (Native)

English Proficient

Education

s.v.university 2007

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

Address

Tirupathi, Tirupati Urban, India - 517501

Verified Info

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.

Please describe the problem that you see in this page.

Type the letters as shown below *

Please enter the letters as show below

Teaches

C Language Classes
4 Students

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in C Language Classes

8

BSc Tuition
1 Student

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in BSc Tuition

8

BSc Computer Science Subjects

Data Structures, Programming Fundamentals, Internet Technologies

Experience in School or College

school and college and institutes

Type of class

Regular Classes, Crash Course

BSc IT Subjects

Problem solving methodologies & programming in C, Advance and data structure, Foundation of information Technology

Class strength catered to

One on one/ Private Tutions, Group Classes

Taught in School or College

Yes

BSc Branch

BSc IT, BSc Computer Science

BCA Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

6

Experience in School or College

college

BCA Subject

Database Management Systems , Web Programming, Data structures, Programming in C++ , Object Oriented Technologies, Problem Solving and Programming , Visual Programing, Java Programming, Computer Basics and PC Software , IT, C Language Programming, Internet Concepts and Web Design

Type of class

Regular Classes, Crash Course

Class strength catered to

One on one/ Private Tutions, Group Classes

Taught in School or College

Yes

BTech Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

5

BTech Computer Science subjects

Programming in C#, Database Management Systems, Internet Technology and Applications, Java Programming, Object Oriented Programming & Systems, Data Structures and Algorithms, Types of Database Systems

BTech Branch

BTech Computer Science Engineering

Experience in School or College

college

Type of class

Regular Classes, Crash Course

Class strength catered to

One on one/ Private Tutions, Group Classes

Taught in School or College

Yes

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

5

Board

NIOS, International Baccalaureate, ICSE, CBSE, IGCSE

Experience in School or College

school

Subjects taught

Computer Application, Computer Practices, Computers, Information Technology

Taught in School or College

Yes

C++ Language Classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in C++ Language Classes

8

Proficiency level taught

Advanced C++, Basic C++

.Net Training
1 Student

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in .Net Training

6

.Net component

.Net MVC, .Net WCF, C# .NET, .Net WPF, Microsoft .Net 4, ASP.NET, .Net XML, .Net Web Services, .Net WF, ADO.NET, .Net Advanced, .Net AJAX, ASP.NET AJAX

Certification offered

Yes

Computer Classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Computer Classes

8

Type of Computer course taken

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

Class 11 Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Class 11 Tuition

7

Board

State, NIOS, CBSE

Experience in School or College

college

Subjects taught

Computer Science

Taught in School or College

Yes

Python Training classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Python Training classes

5

Seeker background catered to

Educational Institution, Individual, Corporate company

Certification provided

Yes

Python applications taught

Data Visualization with Python, Web Development with Python , Regular Expressions with Python , Help in assignment, GUI (Graphical User Interfaces) with Python , Automation with Python

Teaching Experience in detail in Python Training classes

Python is a simple, general purpose, high level, and object-oriented programming language. Python is an interpreted scripting language prepared for the beginners to help them understand the basic to advanced concepts related to Python Programming language.

Reviews

No Reviews yet!

FAQs

1. Which classes do you teach?

I teach .Net Training, BCA Tuition, BSc Tuition, BTech Tuition, C Language, C++ Language, Class 10 Tuition, Class 11 Tuition, Computer and Python Training Classes.

2. Do you provide a demo class?

Yes, I provide a paid demo class.

3. How many years of experience do you have?

I have been teaching for 8 years.

Answers by Suresh (4)

Answered on 28/05/2020 Learn IT Courses +1

<connectionStrings> <add name="ConnStringDb1" connectionString="Data Source=localhost;Initial Catalog=YourDataBaseName;Integrated Security=True;" providerName="System.Data.SqlClient" /> </connectionStrings>
Answers 55 Comments
Dislike Bookmark

Answered on 27/05/2020 Learn IT Courses +1

After opening the web.config file in application, add sample db connection in connectionStrings section like this: <connectionStrings> <add name="yourconnectinstringName" connectionString="Data Source= DatabaseServerName; Integrated Security=true;Initial Catalog= YourDatabaseName;... ...more

After opening the web.config file in application, add sample db connection in connectionStrings section like this:

 
  1. <connectionStrings>  
  2.     <add name="yourconnectinstringName" connectionString="Data Source= DatabaseServerName; Integrated Security=true;Initial Catalog= YourDatabaseName; uid=YourUserName; Password=yourpassword; " providerName="System.Data.SqlClient" />   
  3. </connectionStrings>  

Declaring connectionStrings in web.config file:

 
  1. <connectionStrings>  
  2.     <add name="dbconnection" connectionString="Data Source=Soumalya;Integrated Security=true;Initial Catalog=MySampleDB" providerName="System.Data.SqlClient" />   
  3. </connectionStrings>  
There is no need of username and password to access the database server.
 

Now, write the code to get the connection string from web.config file in our codebehind file. Add the following namespace in codebehind file.

using System.Configuration;


This namespace is used to get configuration section details from web.config file.

C# code

 
  1. using System;  
  2. using System.Data.SqlClient;  
  3. using System.Configuration;  
  4. public partial class _Default: System.Web.UI.Page {  
  5.     protected void Page_Load(object sender, EventArgs e) {  
  6.         //Get connection string from web.config file  
  7.         string strcon = ConfigurationManager.ConnectionStrings["dbconnection"].ConnectionString;  
  8.         //create new sqlconnection and connection to database by using connection string from web.config file  
  9.         SqlConnection con = new SqlConnection(strcon);  
  10.         con.Open();  
  11.     }  
  12. }
Answers 55 Comments
Dislike Bookmark

Answered on 26/05/2020 Learn Tuition/Engineering Diploma Tuition/Computer Engineering Diploma +1

Answer is b. ASCII code form
Answers 293 Comments
Dislike Bookmark

Answered on 26/05/2020 +3 IT Courses/Programming Languages/Python IT Courses/Programming Languages/Python/Python Anaconda IT Courses/Programming Languages/Python/Python Advanced

select orderid,productprice+10 from products where productprice<100
Answers 26 Comments
Dislike Bookmark

Teaches

C Language Classes
4 Students

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in C Language Classes

8

BSc Tuition
1 Student

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in BSc Tuition

8

BSc Computer Science Subjects

Data Structures, Programming Fundamentals, Internet Technologies

Experience in School or College

school and college and institutes

Type of class

Regular Classes, Crash Course

BSc IT Subjects

Problem solving methodologies & programming in C, Advance and data structure, Foundation of information Technology

Class strength catered to

One on one/ Private Tutions, Group Classes

Taught in School or College

Yes

BSc Branch

BSc IT, BSc Computer Science

BCA Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

6

Experience in School or College

college

BCA Subject

Database Management Systems , Web Programming, Data structures, Programming in C++ , Object Oriented Technologies, Problem Solving and Programming , Visual Programing, Java Programming, Computer Basics and PC Software , IT, C Language Programming, Internet Concepts and Web Design

Type of class

Regular Classes, Crash Course

Class strength catered to

One on one/ Private Tutions, Group Classes

Taught in School or College

Yes

BTech Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

5

BTech Computer Science subjects

Programming in C#, Database Management Systems, Internet Technology and Applications, Java Programming, Object Oriented Programming & Systems, Data Structures and Algorithms, Types of Database Systems

BTech Branch

BTech Computer Science Engineering

Experience in School or College

college

Type of class

Regular Classes, Crash Course

Class strength catered to

One on one/ Private Tutions, Group Classes

Taught in School or College

Yes

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

5

Board

NIOS, International Baccalaureate, ICSE, CBSE, IGCSE

Experience in School or College

school

Subjects taught

Computer Application, Computer Practices, Computers, Information Technology

Taught in School or College

Yes

C++ Language Classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in C++ Language Classes

8

Proficiency level taught

Advanced C++, Basic C++

.Net Training
1 Student

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in .Net Training

6

.Net component

.Net MVC, .Net WCF, C# .NET, .Net WPF, Microsoft .Net 4, ASP.NET, .Net XML, .Net Web Services, .Net WF, ADO.NET, .Net Advanced, .Net AJAX, ASP.NET AJAX

Certification offered

Yes

Computer Classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Computer Classes

8

Type of Computer course taken

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

Class 11 Tuition

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Class 11 Tuition

7

Board

State, NIOS, CBSE

Experience in School or College

college

Subjects taught

Computer Science

Taught in School or College

Yes

Python Training classes

Class Location

Online Classes (Video Call via UrbanPro LIVE)

Student's Home

Tutor's Home

Years of Experience in Python Training classes

5

Seeker background catered to

Educational Institution, Individual, Corporate company

Certification provided

Yes

Python applications taught

Data Visualization with Python, Web Development with Python , Regular Expressions with Python , Help in assignment, GUI (Graphical User Interfaces) with Python , Automation with Python

Teaching Experience in detail in Python Training classes

Python is a simple, general purpose, high level, and object-oriented programming language. Python is an interpreted scripting language prepared for the beginners to help them understand the basic to advanced concepts related to Python Programming language.

No Reviews yet!

Answers by Suresh (4)

Answered on 28/05/2020 Learn IT Courses +1

<connectionStrings> <add name="ConnStringDb1" connectionString="Data Source=localhost;Initial Catalog=YourDataBaseName;Integrated Security=True;" providerName="System.Data.SqlClient" /> </connectionStrings>
Answers 55 Comments
Dislike Bookmark

Answered on 27/05/2020 Learn IT Courses +1

After opening the web.config file in application, add sample db connection in connectionStrings section like this: <connectionStrings> <add name="yourconnectinstringName" connectionString="Data Source= DatabaseServerName; Integrated Security=true;Initial Catalog= YourDatabaseName;... ...more

After opening the web.config file in application, add sample db connection in connectionStrings section like this:

 
  1. <connectionStrings>  
  2.     <add name="yourconnectinstringName" connectionString="Data Source= DatabaseServerName; Integrated Security=true;Initial Catalog= YourDatabaseName; uid=YourUserName; Password=yourpassword; " providerName="System.Data.SqlClient" />   
  3. </connectionStrings>  

Declaring connectionStrings in web.config file:

 
  1. <connectionStrings>  
  2.     <add name="dbconnection" connectionString="Data Source=Soumalya;Integrated Security=true;Initial Catalog=MySampleDB" providerName="System.Data.SqlClient" />   
  3. </connectionStrings>  
There is no need of username and password to access the database server.
 

Now, write the code to get the connection string from web.config file in our codebehind file. Add the following namespace in codebehind file.

using System.Configuration;


This namespace is used to get configuration section details from web.config file.

C# code

 
  1. using System;  
  2. using System.Data.SqlClient;  
  3. using System.Configuration;  
  4. public partial class _Default: System.Web.UI.Page {  
  5.     protected void Page_Load(object sender, EventArgs e) {  
  6.         //Get connection string from web.config file  
  7.         string strcon = ConfigurationManager.ConnectionStrings["dbconnection"].ConnectionString;  
  8.         //create new sqlconnection and connection to database by using connection string from web.config file  
  9.         SqlConnection con = new SqlConnection(strcon);  
  10.         con.Open();  
  11.     }  
  12. }
Answers 55 Comments
Dislike Bookmark

Answered on 26/05/2020 Learn Tuition/Engineering Diploma Tuition/Computer Engineering Diploma +1

Answer is b. ASCII code form
Answers 293 Comments
Dislike Bookmark

Answered on 26/05/2020 +3 IT Courses/Programming Languages/Python IT Courses/Programming Languages/Python/Python Anaconda IT Courses/Programming Languages/Python/Python Advanced

select orderid,productprice+10 from products where productprice<100
Answers 26 Comments
Dislike Bookmark

Suresh describes himself as IT Professional Trainer with 10 years of experience in IT Industry. He conducts classes in .Net Training, BCA Tuition and BSc Tuition. Suresh is located in Tirupathi, Tirupati Urban. Suresh takes at students Home, Regular Classes- at his Home and Online Classes- via online medium. He has 8 years of teaching experience . Suresh has completed Master of Computer Applications (M.C.A.) from s.v.university in 2007. He is well versed in Telugu and English.

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