UrbanPro
true

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 (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C Language Classes

8

BSc Tuition
1 Student

Class Location

Online (video chat via skype, google hangout etc)

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

Crash Course, Regular Classes

BSc IT Subjects

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

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

Yes

BSc Branch

BSc Computer Science, BSc IT

BCA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

6

Experience in School or College

college

BCA Subject

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

Type of class

Crash Course, Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

Yes

BTech Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

5

BTech Computer Science subjects

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

BTech Branch

BTech Computer Science Engineering

Experience in School or College

college

Type of class

Crash Course, Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

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

5

NIOS Subjects taught

Computer Practices

Board

CBSE, NIOS, ICSE, IGCSE, International Baccalaureate

IB Subjects taught

Computers

CBSE Subjects taught

Computer Practices

ICSE Subjects taught

Computer Application

IGCSE Subjects taught

Information Technology

Experience in School or College

school

Taught in School or College

Yes

C++ Language Classes

Class Location

Online (video chat via skype, google hangout etc)

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 (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in .Net Training

6

.Net component

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

Certification offered

Yes

Computer Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Computer Classes

8

Type of Computer course taken

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

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

7

NIOS Subjects taught

Computer Science

Board

State, NIOS, CBSE

CBSE Subjects taught

Computer Science

Experience in School or College

college

Taught in School or College

Yes

State Syllabus Subjects taught

Computer Science

Python Training classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Python Training classes

5

Seeker background catered to

Individual, Corporate company, Educational Institution

Certification provided

Yes

Python applications taught

Automation with Python , GUI (Graphical User Interfaces) with Python , Help in assignment, Data Visualization with Python, Regular Expressions with Python , Web Development 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 .Net/ASP.NET

<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 .Net/ASP.NET

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 Tuition/BTech Tuition

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

Teaches

C Language Classes
4 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C Language Classes

8

BSc Tuition
1 Student

Class Location

Online (video chat via skype, google hangout etc)

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

Crash Course, Regular Classes

BSc IT Subjects

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

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

Yes

BSc Branch

BSc Computer Science, BSc IT

BCA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BCA Tuition

6

Experience in School or College

college

BCA Subject

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

Type of class

Crash Course, Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

Yes

BTech Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BTech Tuition

5

BTech Computer Science subjects

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

BTech Branch

BTech Computer Science Engineering

Experience in School or College

college

Type of class

Crash Course, Regular Classes

Class strength catered to

Group Classes, One on one/ Private Tutions

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

5

NIOS Subjects taught

Computer Practices

Board

CBSE, NIOS, ICSE, IGCSE, International Baccalaureate

IB Subjects taught

Computers

CBSE Subjects taught

Computer Practices

ICSE Subjects taught

Computer Application

IGCSE Subjects taught

Information Technology

Experience in School or College

school

Taught in School or College

Yes

C++ Language Classes

Class Location

Online (video chat via skype, google hangout etc)

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 (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in .Net Training

6

.Net component

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

Certification offered

Yes

Computer Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Computer Classes

8

Type of Computer course taken

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

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

7

NIOS Subjects taught

Computer Science

Board

State, NIOS, CBSE

CBSE Subjects taught

Computer Science

Experience in School or College

college

Taught in School or College

Yes

State Syllabus Subjects taught

Computer Science

Python Training classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Python Training classes

5

Seeker background catered to

Individual, Corporate company, Educational Institution

Certification provided

Yes

Python applications taught

Automation with Python , GUI (Graphical User Interfaces) with Python , Help in assignment, Data Visualization with Python, Regular Expressions with Python , Web Development 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 .Net/ASP.NET

<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 .Net/ASP.NET

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 Tuition/BTech Tuition

Answer is b. ASCII code form
Answers 293 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
X

Post your Learning Need

Let us shortlist and give the best tutors and institutes.

or

Send Enquiry to Suresh

Let Suresh know you are interested in their class

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.

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