UrbanPro
true
Alia Y. Class 12 Tuition trainer in Plano/>

Alia Y.

7421 Oak Ridge Dr Plano, Plano, United States - 75025.

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

Details verified of Alia Y.

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 senior lecturer , igcse ict and computer science teacher with over 24 years of experience. I am giving online lessons in igcse computer science and ict. I have the patience and the experience to teach the subject matter in an easy and interactive way. I teach in an interactive manner in the classroom that is why I believe I am able to engage the students in the learning process. My igcse students grades have ranged from a* to c with zero failures . I focus on both the theoretical and practical side of a subject. I believe both the syllabus and past papers should be covered.

Languages Spoken

English Mother Tongue (Native)

Education

University of Gezira 2003

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

Address

7421 Oak Ridge Dr Plano, Plano, United States - 75025

Verified Info

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

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

20

Board

IGCSE

Preferred class strength

Group Classes, One on one/ Private Tutions

IGCSE Subjects taught

Accounts, Computer Science, Mathematics

Experience in School or College

I am a senior lecture in the Computer Science and Information Systems Department. I am head teacher of ICT and Computer Science for KS3 , IGCSE and A-level curriculum with excellent results. I have been teaching for over 24 years.

Taught in School or College

Yes

BA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BA Tuition

20

Field tutored for

Mathematics, Computer Science

BA Computer Science Subjects

Data Structures, Operating Systems, Computer Networks, Internet Technologies, Programming Fundamentals using C++, Artificial Intelligence, Theory of Computation, Design and Analysis of Algorithms, Computer System Architecture, Database Management Systems

BA Mathematics Subjects

Algebra

Experience in School or College

I have taught in both public and private Universities. In Sudan University for science and Technology and In Bayan University

Type of class

Regular Classes, Crash Course

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

Yes

HTML Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in HTML Training

20

Teaching Experience in detail in HTML Training

I been teaching web authoring for over 20 years. I teach HTML 5 , CSS and Java Script

Class I-V Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class I-V Tuition

20

Fees

₹ 1000 per hour

Board

IGCSE

IGCSE Subjects taught

Mathematics

Experience in School or College

I have over 24 years of experience in both School and College levels.

Taught in School or College

Yes

Microsoft Excel Training classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Microsoft Excel Training classes

20

Teaches following Excel features

Basic Excel, Excel Macro Training, Advanced Excel

Teaching Experience in detail in Microsoft Excel Training classes

I have taught in both in university level and in High School Level. I have the ability to teach the advance Excel functions with great simplicity.I have taught the ICDL , IGCSE and Alevel excel syllabus with excellent outcomes.

Courses

Reviews

No Reviews yet!

FAQs

1. Which school boards of Class 12 do you teach for?

IGCSE

2. Have you ever taught in any School or College?

Yes

3. Which classes do you teach?

I teach BA Tuition, Class 12 Tuition, Class I-V Tuition, HTML and Microsoft Excel 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 20 years.

Answers by Alia Y. (10)

Answered on 24/06/2023 Learn IT Courses/CSS +1 IT Courses/HTML

if i wanted to divide the web page to sections so I can apply different css properties to different parts , I use the div tag e.g <!DOCTYPE html><html><head><style>.myDiv { border: 5px outset red; background-color: lightblue; text-align: center;}</style></head><body> <h1>The... ...more

if i wanted to divide the web page to sections so I can apply different css properties to different parts , I use the div tag

e.g

<!DOCTYPE html>
<html>
<head>
<style>
.myDiv {
border: 5px outset red;
background-color: lightblue;
text-align: center;
}
</style>
</head>
<body>

<h1>The div element</h1>

<div class="myDiv">
<h2>This is a heading in a div element</h2>
<p>This is some text in a div element.</p>
</div>

<p>This is some text outside the div element.</p>

</body>
</html>

reference

https://www.w3schools.com/

 

Answers 1 Comments
Dislike Bookmark

Answered on 24/06/2023 Learn IT Courses/CSS +1 IT Courses/HTML

CSS syntax consist of selector {property :value} e.g h1 {color :#FF0000;} here you want to apply the red color to the h1 tag what if I want to apply red colours to several tags h1 , h3 and P ? I simply write it as h1 , h3 , p { color :#FF0000; } ...more

CSS syntax consist of

selector {property :value}

e.g 

h1 {color :#FF0000;}

here you want to apply the red color to the h1 tag

what if I want to apply red colours to several tags h1 , h3 and P ?

I simply write it as

h1 , h3 , p 

{

color :#FF0000;

}

 

 

 

Answers 2 Comments
Dislike Bookmark

Answered on 24/06/2023 Learn IT Courses/CSS +1 IT Courses/HTML

yes , check out the link css zen gardern for ideas https://www.csszengarden.com
Answers 1 Comments
Dislike Bookmark

Answered on 24/06/2023 Learn IT Courses/CSS +1 IT Courses/HTML

if you want to link to the file alia.css . Both the web document and the css file must be in the same folder. In the head section of the web page <link rel="stylesheet" href="alia.css"> Example of the full web page <!DOCTYPE html><html><head> <link rel="stylesheet" href="alia.css"></head><body><h1>... ...more

if you want to link to the file alia.css . Both the web document and the css file must be in the same folder. In the head section of the web page 

  <link rel="stylesheet" href="alia.css">

Example of the full web page

<!DOCTYPE html>
<html>
<head>
  <link rel="stylesheet" href="alia.css">
</head>
<body>
<h1> I have the h1 of defined in alia.css applied </h1>
</body>
</html>

Answers 1 Comments
Dislike Bookmark

Answered on 24/06/2023 Learn IT Courses/CSS +1 IT Courses/HTML

the image you want to display will be in a file . the file will have one of three extensions gif , png , jpg the name of the filename will be written after the src property. For example if I want to display the image house.gif (the image file and the HTML document should be in the same folder for... ...more

the image you want to display will be in a file .

the file will have one of three extensions gif , png , jpg

the name of the filename will be written after the src property.

For example if I want to display the image house.gif (the image file and the HTML document should be in the same folder for it to work)

<img src="house.gif">

 

Answers 1 Comments
Dislike Bookmark

Teaches

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

20

Board

IGCSE

Preferred class strength

Group Classes, One on one/ Private Tutions

IGCSE Subjects taught

Accounts, Computer Science, Mathematics

Experience in School or College

I am a senior lecture in the Computer Science and Information Systems Department. I am head teacher of ICT and Computer Science for KS3 , IGCSE and A-level curriculum with excellent results. I have been teaching for over 24 years.

Taught in School or College

Yes

BA Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in BA Tuition

20

Field tutored for

Mathematics, Computer Science

BA Computer Science Subjects

Data Structures, Operating Systems, Computer Networks, Internet Technologies, Programming Fundamentals using C++, Artificial Intelligence, Theory of Computation, Design and Analysis of Algorithms, Computer System Architecture, Database Management Systems

BA Mathematics Subjects

Algebra

Experience in School or College

I have taught in both public and private Universities. In Sudan University for science and Technology and In Bayan University

Type of class

Regular Classes, Crash Course

Class strength catered to

Group Classes, One on one/ Private Tutions

Taught in School or College

Yes

HTML Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in HTML Training

20

Teaching Experience in detail in HTML Training

I been teaching web authoring for over 20 years. I teach HTML 5 , CSS and Java Script

Class I-V Tuition

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Class I-V Tuition

20

Fees

₹ 1000 per hour

Board

IGCSE

IGCSE Subjects taught

Mathematics

Experience in School or College

I have over 24 years of experience in both School and College levels.

Taught in School or College

Yes

Microsoft Excel Training classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Microsoft Excel Training classes

20

Teaches following Excel features

Basic Excel, Excel Macro Training, Advanced Excel

Teaching Experience in detail in Microsoft Excel Training classes

I have taught in both in university level and in High School Level. I have the ability to teach the advance Excel functions with great simplicity.I have taught the ICDL , IGCSE and Alevel excel syllabus with excellent outcomes.

Courses

No Reviews yet!

Answers by Alia Y. (10)

Answered on 24/06/2023 Learn IT Courses/CSS +1 IT Courses/HTML

if i wanted to divide the web page to sections so I can apply different css properties to different parts , I use the div tag e.g <!DOCTYPE html><html><head><style>.myDiv { border: 5px outset red; background-color: lightblue; text-align: center;}</style></head><body> <h1>The... ...more

if i wanted to divide the web page to sections so I can apply different css properties to different parts , I use the div tag

e.g

<!DOCTYPE html>
<html>
<head>
<style>
.myDiv {
border: 5px outset red;
background-color: lightblue;
text-align: center;
}
</style>
</head>
<body>

<h1>The div element</h1>

<div class="myDiv">
<h2>This is a heading in a div element</h2>
<p>This is some text in a div element.</p>
</div>

<p>This is some text outside the div element.</p>

</body>
</html>

reference

https://www.w3schools.com/

 

Answers 1 Comments
Dislike Bookmark

Answered on 24/06/2023 Learn IT Courses/CSS +1 IT Courses/HTML

CSS syntax consist of selector {property :value} e.g h1 {color :#FF0000;} here you want to apply the red color to the h1 tag what if I want to apply red colours to several tags h1 , h3 and P ? I simply write it as h1 , h3 , p { color :#FF0000; } ...more

CSS syntax consist of

selector {property :value}

e.g 

h1 {color :#FF0000;}

here you want to apply the red color to the h1 tag

what if I want to apply red colours to several tags h1 , h3 and P ?

I simply write it as

h1 , h3 , p 

{

color :#FF0000;

}

 

 

 

Answers 2 Comments
Dislike Bookmark

Answered on 24/06/2023 Learn IT Courses/CSS +1 IT Courses/HTML

yes , check out the link css zen gardern for ideas https://www.csszengarden.com
Answers 1 Comments
Dislike Bookmark

Answered on 24/06/2023 Learn IT Courses/CSS +1 IT Courses/HTML

if you want to link to the file alia.css . Both the web document and the css file must be in the same folder. In the head section of the web page <link rel="stylesheet" href="alia.css"> Example of the full web page <!DOCTYPE html><html><head> <link rel="stylesheet" href="alia.css"></head><body><h1>... ...more

if you want to link to the file alia.css . Both the web document and the css file must be in the same folder. In the head section of the web page 

  <link rel="stylesheet" href="alia.css">

Example of the full web page

<!DOCTYPE html>
<html>
<head>
  <link rel="stylesheet" href="alia.css">
</head>
<body>
<h1> I have the h1 of defined in alia.css applied </h1>
</body>
</html>

Answers 1 Comments
Dislike Bookmark

Answered on 24/06/2023 Learn IT Courses/CSS +1 IT Courses/HTML

the image you want to display will be in a file . the file will have one of three extensions gif , png , jpg the name of the filename will be written after the src property. For example if I want to display the image house.gif (the image file and the HTML document should be in the same folder for... ...more

the image you want to display will be in a file .

the file will have one of three extensions gif , png , jpg

the name of the filename will be written after the src property.

For example if I want to display the image house.gif (the image file and the HTML document should be in the same folder for it to work)

<img src="house.gif">

 

Answers 1 Comments
Dislike Bookmark

Contact

Load More

Alia Y. conducts classes in BA Tuition, Class 12 Tuition and Class I-V Tuition. Alia is located in 7421 Oak Ridge Dr Plano, Plano. Alia takes Online Classes- via online medium. She has 20 years of teaching experience . Alia has completed Master of Computer Applications (M.C.A.) from University of Gezira in 2003. She is well versed in 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