UrbanPro
true
Sharath Gajawada Computer Course trainer in Hyderabad/>

Sharath Gajawada

Test Engineer

Alwal, Hyderabad, India - 500010.

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

Details verified of Sharath Gajawada

Identity

Education

Know how UrbanPro verifies Tutor details

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

Overview

Have 2 years of experience in testing also the basic automation knowledge

Languages Spoken

Hindi

English

Telugu

Address

Alwal, Hyderabad, India - 500010

Verified Info

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

Computer Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Computer Classes

4

Type of Computer course taken

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

Oracle Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Software Testing classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Software Testing classes

2

Training for ISTQB certification

No

PL/SQL Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in PL/SQL Classes

1

Manual Testing Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Manual Testing Training

2

Automation Testing Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Reviews

No Reviews yet!

FAQs

1. Which computer courses do you teach?

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

2. Which classes do you teach?

I teach Automation Testing, Computer, Manual Testing, Oracle Training, PL/SQL and Software Testing Classes.

3. Do you provide a demo class?

Yes, I provide a free demo class.

4. How many years of experience do you have?

I have been teaching for 4 years.

Answers by Sharath Gajawada (9)

Answered on 24/07/2016 Learn IT Courses/Programming Languages/C Language

No, Because, here even though the value of p is accessed twice it is used to modify two different objects p and *p. i.e. let us take the value of p as 5, the address where p is stored at 100 location. now statement *p=p will override the value 200 with 5 i.e. P location is shifted from 100 to 5.
Answers 3 Comments
Dislike Bookmark

Answered on 24/07/2016 Learn IT Courses/Programming Languages/C Language

using ceil function. i.e. ceil(1.66)
Answers 8 Comments
Dislike Bookmark

Answered on 24/07/2016 Learn IT Courses/Programming Languages/C Language

Yes. If you have an array a (in which n is some value known at compile time), the first element is a, and the last element is a.
Answers 59 Comments
Dislike Bookmark

Answered on 24/07/2016 Learn IT Courses/Programming Languages/C Language

You can use the #ifdef and #ifndef preprocessor directives to check whether a symbol has been defined (#ifdef) or whether it has not been defined (#ifndef)
Answers 20 Comments
Dislike Bookmark

Answered on 24/07/2016 Learn IT Courses/Programming Languages/C Language

The ANSI C standard provides a predefined symbol named __STDC__ that is set to 1 when the compiler is enforcing strict ANSI standard conformance. If you want your programs to be 100 percent ANSI conformant, you should ensure that the __STDC__ symbol is defined. If the program is being compiled with non-ANSI... ...more
The ANSI C standard provides a predefined symbol named __STDC__ that is set to 1 when the compiler is enforcing strict ANSI standard conformance. If you want your programs to be 100 percent ANSI conformant, you should ensure that the __STDC__ symbol is defined. If the program is being compiled with non-ANSI options, the __STDC__ symbol is undefined. #ifdef __STDC__ printf("Congratulations! You are conforming perfectly to the ANSI standards!\n"); #else printf("Shame on you, you nonconformist anti-ANSI rabble-rousing programmer!\n"); #endif
Answers 30 Comments
Dislike Bookmark

Teaches

Computer Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Computer Classes

4

Type of Computer course taken

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

Oracle Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Software Testing classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Software Testing classes

2

Training for ISTQB certification

No

PL/SQL Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in PL/SQL Classes

1

Manual Testing Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Manual Testing Training

2

Automation Testing Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

No Reviews yet!

Answers by Sharath Gajawada (9)

Answered on 24/07/2016 Learn IT Courses/Programming Languages/C Language

No, Because, here even though the value of p is accessed twice it is used to modify two different objects p and *p. i.e. let us take the value of p as 5, the address where p is stored at 100 location. now statement *p=p will override the value 200 with 5 i.e. P location is shifted from 100 to 5.
Answers 3 Comments
Dislike Bookmark

Answered on 24/07/2016 Learn IT Courses/Programming Languages/C Language

using ceil function. i.e. ceil(1.66)
Answers 8 Comments
Dislike Bookmark

Answered on 24/07/2016 Learn IT Courses/Programming Languages/C Language

Yes. If you have an array a (in which n is some value known at compile time), the first element is a, and the last element is a.
Answers 59 Comments
Dislike Bookmark

Answered on 24/07/2016 Learn IT Courses/Programming Languages/C Language

You can use the #ifdef and #ifndef preprocessor directives to check whether a symbol has been defined (#ifdef) or whether it has not been defined (#ifndef)
Answers 20 Comments
Dislike Bookmark

Answered on 24/07/2016 Learn IT Courses/Programming Languages/C Language

The ANSI C standard provides a predefined symbol named __STDC__ that is set to 1 when the compiler is enforcing strict ANSI standard conformance. If you want your programs to be 100 percent ANSI conformant, you should ensure that the __STDC__ symbol is defined. If the program is being compiled with non-ANSI... ...more
The ANSI C standard provides a predefined symbol named __STDC__ that is set to 1 when the compiler is enforcing strict ANSI standard conformance. If you want your programs to be 100 percent ANSI conformant, you should ensure that the __STDC__ symbol is defined. If the program is being compiled with non-ANSI options, the __STDC__ symbol is undefined. #ifdef __STDC__ printf("Congratulations! You are conforming perfectly to the ANSI standards!\n"); #else printf("Shame on you, you nonconformist anti-ANSI rabble-rousing programmer!\n"); #endif
Answers 30 Comments
Dislike Bookmark

Contact

Load More

Sharath Gajawada describes himself as Test Engineer. He conducts classes in Automation Testing, Computer and Manual Testing. Sharath is located in Alwal, Hyderabad. Sharath takes Online Classes- via online medium. He has 4 years of teaching experience . HeĀ is well versed in Hindi, English and Telugu.

X

Share this Profile

Recommended Profiles

Sujit

Sujit photo Sector-71 Mohali, Chandigarh

Sudheer

Sudheer photo Kukatpally, Hyderabad

Sameer

Sameer photo Kothrud Bus Depot, Pune

Sqtl

Sqtl photo Aundh, Pune

Durai

Durai photo Madhapur, Hyderabad

Abdul Jaleel Mohammad

Abdul Jaleel Mohammad photo Langar Houz, Hyderabad

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