SlideShare a Scribd company logo
Website : www.osglsofttech.com
 Internship on PHP, JAVA, ANDROID, SEO/SMO,
C/C++, HTML, CSS, My SQL, PHOTOSHP with
LIVE PROJECT, PLACEMENT ASSISTANCE,
OSGL SOFT-TECH PVT LTD CERTIFICATION
1) What is HTML?
HTML is short for HyperText Markup Language, and is the language of the World Wide
Web. It is the standard text formatting language used for creating and displaying
pages on the Web. HTML documents are made up of two things: the content and the
tags that format it for proper display on pages.
2) What are tags?
Content is placed in between HTML tags in order to properly format it. It makes
use of the less than symbol (<) and the greater than symbol (>). A slash
symbol is also used as a closing tag. For example:
<strong>sample</strong>
3) Do all HTML tags come in pair?
No, there are single HTML tags that does not need a closing tag. Examples are
the <img> tag and <br> tags.
4) What are some of the common lists that can be used when designing a page?
You can insert any or a combination of the following list types:
– ordered list
– unordered list
– definition list
– menu list
– directory list
Each of this list types makes use of a different tag set to compose
5) What is image map?
Image map lets you link to many different web pages using a single image. You
can define shapes in images that you want to make part of an image
mapping.
6) What is the advantage of collapsing white space?
White spaces are blank sequence of space characters, which is actually treated
as a single space character in html. Because the browser collapses multiple
space into a single space, you can indent lines of text without worrying about
multiple spaces. This enables you to organize the html code into a much
more readable format.
7) Can attribute values be set to anything or are there specific values that they
accept?
Some attribute values can be set to only predefined values. Other attributes can accept
any numerical value that represents the number of pixels for a size.
8) How do you insert a copyright symbol on a browser page?
To insert the copyright symbol, you need to type &copy; or & #169; in an HTML file.
9) How do you create links to sections within the same page?
Links can be created using the <a> tag, with referencing through the use of the number
(#) symbol. For example, you can have one line as <a href=”#topmost”>BACK TO
TOP</a>, which would result in the words “BACK TO TOP” appearing on the
webpage and links to a bookmark named topmost. You then create a separate tag
command like <a name=”topmost”> somewhere on the top of the same webpage so
that the user will be linked to that spot when he clicked on “BACK TO TOP”.
10) Is there any way to keep list elements straight in an html file?
By using indents, you can keep the list elements straight. If you indent each subnested
list in further than the parent list that contains it, you can at a glance determine the
various lists and the elements that it contains.
1. What is CSS?
The full form of CSS is Cascading Style Sheets. It is a styling language which is simple
enough for HTML elements. It is popular in web designing, and its application is
common in XHTML also.
2. What is the origin of CSS ?
Standard Generalized Markup Language marked the beginning of style sheets in
1980s.
3. What are the different variations of CSS?
The variations for CSS are:
CSS 1
CSS 2
CSS 2.1
CSS 3
CSS 4
4. What are the limitations of CSS?
Limitations are:
Ascending by selectors is not possible
Limitations of vertical control
No expressions
No column declaration
Pseudo-class not controlled by dynamic behavior
Rules, styles, targeting specific text not possible
5. What are CSS frameworks?
It is a pre-planned libraries, which allows easier and more standards-compliant
webpage styling, using CSS language.
6. Who maintains the CSS specifications?
World Wide Web Consortium maintains the CSS specifications.
7. In how many ways can a CSS be integrated as a web page?
CSS can be integrated in three ways:
Inline: Style attribute can be used to have CSS applied HTML elements.
Embedded: The Head element can have a Style element within which the code can be
placed.
Linked/ Imported: CSS can be placed in an external file and linked via link element.
8. Discuss the merits and demerits of Embedded Style Sheets?
Merits of Embedded Style Sheets:
Multiple tag types can be created in a single document.
Styles, in complex situations, can be applied by using Selector and Grouping methods.
Extra download is unnecessary.
Demerits of Embedded Style Sheets:
Multiple documents cannot be controlled.
9. What does CSS selector mean?
A string equivalent of HTML elements by which declarations or a set of it, is declared
and is a link that can be referred for linking HTML and Style sheet is CSS selector.
10. Enlist the media types CSS allows?
The design and customization of documents are rendered by media. By applying media
control over the external style sheets, they can be retrieved and used by loading it
from the network.
What is PHP?
PHP is a server side scripting language commonly used for web applications. PHP has
many frameworks and cms for creating websites.Even a non technical person can
cretae sites using its CMS.WordPress,osCommerce are the famus CMS of php.It is
also an object oriented programming language like java,C-sharp etc.It is very eazy
for learning
PHP Questions
What is the use of "echo" in php?
It is used to print a data in the webpage, Example: <?php echo 'Car insurance'; ?> , The
following code print the text in the webpage
How to include a file to a php page?
We can include a file using "include() " or "require()" function with file path as its
parameter.
What's the difference between include and require?
If the file is not found by require(), it will cause a fatal error and halt the execution of the
script. If the file is not found by include(), a warning will be issued, but execution will
continue.
require_once(), require(), include().What is difference between them?
require() includes and evaluates a specific file, while require_once() does that only if it
has not been included before (on the same page). So, require_once() is
recommended to use when you want to include a file where you have a lot of
functions for example. This way you make sure you don't include the file more times
and you will not get the "function re-declared" error.
Differences between GET and POST methods?
We can send 1024 bytes using GET method but POST method can transfer large
amount of data and POST is the secure method than GET method.
How to declare an array in php?
Eg : var $arr = array('apple', 'grape', 'lemon');
What is the use of 'print' in php?
This is not actually a real function, It is a language construct. So you can use with out
parentheses with its argument list.
Example print('PHP Interview questions');
print 'Job Interview ');
What is use of in_array() function in php ?
in_array used to checks if a value exists in an array
What is use of count() function in php ?
count() is used to count all elements in an array, or something in an object
Company Name : OSGL Soft-Tech Pvt Ltd
Website : www.osglsofttech.com
Phone No. : +91-8650030309
+91-8650030308
Mail : info@osglsofttech.com
Address : TBI-GEU, 566/6 Bell Road, Clement
Town, Dehradun
Headoffice : 131, 1st Floor, PKT-9, Sector-5,
Rohini, North-East Delhi-110085

More Related Content

What's hot

What's hot (20)

Html
HtmlHtml
Html
 
Hushang Gaikwad
Hushang GaikwadHushang Gaikwad
Hushang Gaikwad
 
An Seo’s Intro to Web Dev, HTML, CSS and JavaScript
An Seo’s Intro to Web Dev, HTML, CSS and JavaScriptAn Seo’s Intro to Web Dev, HTML, CSS and JavaScript
An Seo’s Intro to Web Dev, HTML, CSS and JavaScript
 
How to Make HTML and CSS Files
How to Make HTML and CSS FilesHow to Make HTML and CSS Files
How to Make HTML and CSS Files
 
Internet and Web Technology (CLASS-4) [CSS & JS]
Internet and Web Technology (CLASS-4) [CSS & JS] Internet and Web Technology (CLASS-4) [CSS & JS]
Internet and Web Technology (CLASS-4) [CSS & JS]
 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
 
1 introductin to HTML
1 introductin to HTML1 introductin to HTML
1 introductin to HTML
 
Frontend Crash Course: HTML and CSS
Frontend Crash Course: HTML and CSSFrontend Crash Course: HTML and CSS
Frontend Crash Course: HTML and CSS
 
HTML
HTMLHTML
HTML
 
Html css java script basics All about you need
Html css java script basics All about you needHtml css java script basics All about you need
Html css java script basics All about you need
 
Html
HtmlHtml
Html
 
Iwt module 1
Iwt  module 1Iwt  module 1
Iwt module 1
 
Hypertext markup language (html)
Hypertext markup language (html)Hypertext markup language (html)
Hypertext markup language (html)
 
Intro to HTML & CSS
Intro to HTML & CSSIntro to HTML & CSS
Intro to HTML & CSS
 
Span and Div tags in HTML
Span and Div tags in HTMLSpan and Div tags in HTML
Span and Div tags in HTML
 
Website development courses
Website development coursesWebsite development courses
Website development courses
 
Internet and Web Technology (CLASS-3) [HTML & CSS]
Internet and Web Technology (CLASS-3) [HTML & CSS] Internet and Web Technology (CLASS-3) [HTML & CSS]
Internet and Web Technology (CLASS-3) [HTML & CSS]
 
Full
FullFull
Full
 
PHP HTML CSS Notes
PHP HTML CSS  NotesPHP HTML CSS  Notes
PHP HTML CSS Notes
 
Introduction to Html
Introduction to Html Introduction to Html
Introduction to Html
 

Similar to Website development-osgl

Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.doc
butest
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.doc
butest
 

Similar to Website development-osgl (20)

Ncp computer appls web tech asish
Ncp computer appls  web tech asishNcp computer appls  web tech asish
Ncp computer appls web tech asish
 
ashish ppt webd.pptx
ashish ppt webd.pptxashish ppt webd.pptx
ashish ppt webd.pptx
 
WELCOME-FOLKS--CSS.-AND-HTMLS.pptx
WELCOME-FOLKS--CSS.-AND-HTMLS.pptxWELCOME-FOLKS--CSS.-AND-HTMLS.pptx
WELCOME-FOLKS--CSS.-AND-HTMLS.pptx
 
Web development intership Presentation.pptx
Web development intership Presentation.pptxWeb development intership Presentation.pptx
Web development intership Presentation.pptx
 
Interview+Questions (1).pdf
Interview+Questions (1).pdfInterview+Questions (1).pdf
Interview+Questions (1).pdf
 
Html5 deciphered - designing concepts part 1
Html5 deciphered - designing concepts part 1Html5 deciphered - designing concepts part 1
Html5 deciphered - designing concepts part 1
 
HTML & JAVA Script
HTML & JAVA ScriptHTML & JAVA Script
HTML & JAVA Script
 
Introduction to whats new in css3
Introduction to whats new in css3Introduction to whats new in css3
Introduction to whats new in css3
 
Lecture-7.pptx
Lecture-7.pptxLecture-7.pptx
Lecture-7.pptx
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.doc
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.doc
 
web devs ppt.ppsx
web devs ppt.ppsxweb devs ppt.ppsx
web devs ppt.ppsx
 
Website 101
Website 101Website 101
Website 101
 
HTML practical file
HTML practical fileHTML practical file
HTML practical file
 
What is html xml and xhtml
What is html xml and xhtmlWhat is html xml and xhtml
What is html xml and xhtml
 
WEB DEVELOPMENT
WEB DEVELOPMENTWEB DEVELOPMENT
WEB DEVELOPMENT
 
Html & CSS - Best practices 2-hour-workshop
Html & CSS - Best practices 2-hour-workshopHtml & CSS - Best practices 2-hour-workshop
Html & CSS - Best practices 2-hour-workshop
 
Bootcamp - Web Development Session 2
Bootcamp - Web Development Session 2Bootcamp - Web Development Session 2
Bootcamp - Web Development Session 2
 
Web development using HTML and CSS
Web development using HTML and CSSWeb development using HTML and CSS
Web development using HTML and CSS
 
Presentation 1 [autosaved]
Presentation 1 [autosaved]Presentation 1 [autosaved]
Presentation 1 [autosaved]
 

Recently uploaded

Industrial Training Report- AKTU Industrial Training Report
Industrial Training Report- AKTU Industrial Training ReportIndustrial Training Report- AKTU Industrial Training Report
Industrial Training Report- AKTU Industrial Training Report
Avinash Rai
 
Accounting and finance exit exam 2016 E.C.pdf
Accounting and finance exit exam 2016 E.C.pdfAccounting and finance exit exam 2016 E.C.pdf
Accounting and finance exit exam 2016 E.C.pdf
YibeltalNibretu
 

Recently uploaded (20)

PART A. Introduction to Costumer Service
PART A. Introduction to Costumer ServicePART A. Introduction to Costumer Service
PART A. Introduction to Costumer Service
 
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
NCERT Solutions Power Sharing Class 10 Notes pdf
NCERT Solutions Power Sharing Class 10 Notes pdfNCERT Solutions Power Sharing Class 10 Notes pdf
NCERT Solutions Power Sharing Class 10 Notes pdf
 
Basic Civil Engg Notes_Chapter-6_Environment Pollution & Engineering
Basic Civil Engg Notes_Chapter-6_Environment Pollution & EngineeringBasic Civil Engg Notes_Chapter-6_Environment Pollution & Engineering
Basic Civil Engg Notes_Chapter-6_Environment Pollution & Engineering
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
 
B.ed spl. HI pdusu exam paper-2023-24.pdf
B.ed spl. HI pdusu exam paper-2023-24.pdfB.ed spl. HI pdusu exam paper-2023-24.pdf
B.ed spl. HI pdusu exam paper-2023-24.pdf
 
The Benefits and Challenges of Open Educational Resources
The Benefits and Challenges of Open Educational ResourcesThe Benefits and Challenges of Open Educational Resources
The Benefits and Challenges of Open Educational Resources
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
 
Basic Civil Engineering Notes of Chapter-6, Topic- Ecosystem, Biodiversity G...
Basic Civil Engineering Notes of Chapter-6,  Topic- Ecosystem, Biodiversity G...Basic Civil Engineering Notes of Chapter-6,  Topic- Ecosystem, Biodiversity G...
Basic Civil Engineering Notes of Chapter-6, Topic- Ecosystem, Biodiversity G...
 
Industrial Training Report- AKTU Industrial Training Report
Industrial Training Report- AKTU Industrial Training ReportIndustrial Training Report- AKTU Industrial Training Report
Industrial Training Report- AKTU Industrial Training Report
 
50 ĐỀ LUYỆN THI IOE LỚP 9 - NĂM HỌC 2022-2023 (CÓ LINK HÌNH, FILE AUDIO VÀ ĐÁ...
50 ĐỀ LUYỆN THI IOE LỚP 9 - NĂM HỌC 2022-2023 (CÓ LINK HÌNH, FILE AUDIO VÀ ĐÁ...50 ĐỀ LUYỆN THI IOE LỚP 9 - NĂM HỌC 2022-2023 (CÓ LINK HÌNH, FILE AUDIO VÀ ĐÁ...
50 ĐỀ LUYỆN THI IOE LỚP 9 - NĂM HỌC 2022-2023 (CÓ LINK HÌNH, FILE AUDIO VÀ ĐÁ...
 
How to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS ModuleHow to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS Module
 
Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
 
[GDSC YCCE] Build with AI Online Presentation
[GDSC YCCE] Build with AI Online Presentation[GDSC YCCE] Build with AI Online Presentation
[GDSC YCCE] Build with AI Online Presentation
 
NLC-2024-Orientation-for-RO-SDO (1).pptx
NLC-2024-Orientation-for-RO-SDO (1).pptxNLC-2024-Orientation-for-RO-SDO (1).pptx
NLC-2024-Orientation-for-RO-SDO (1).pptx
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 
Salient features of Environment protection Act 1986.pptx
Salient features of Environment protection Act 1986.pptxSalient features of Environment protection Act 1986.pptx
Salient features of Environment protection Act 1986.pptx
 
How to Break the cycle of negative Thoughts
How to Break the cycle of negative ThoughtsHow to Break the cycle of negative Thoughts
How to Break the cycle of negative Thoughts
 
Accounting and finance exit exam 2016 E.C.pdf
Accounting and finance exit exam 2016 E.C.pdfAccounting and finance exit exam 2016 E.C.pdf
Accounting and finance exit exam 2016 E.C.pdf
 

Website development-osgl

  • 2.  Internship on PHP, JAVA, ANDROID, SEO/SMO, C/C++, HTML, CSS, My SQL, PHOTOSHP with LIVE PROJECT, PLACEMENT ASSISTANCE, OSGL SOFT-TECH PVT LTD CERTIFICATION
  • 3. 1) What is HTML? HTML is short for HyperText Markup Language, and is the language of the World Wide Web. It is the standard text formatting language used for creating and displaying pages on the Web. HTML documents are made up of two things: the content and the tags that format it for proper display on pages. 2) What are tags? Content is placed in between HTML tags in order to properly format it. It makes use of the less than symbol (<) and the greater than symbol (>). A slash symbol is also used as a closing tag. For example: <strong>sample</strong> 3) Do all HTML tags come in pair? No, there are single HTML tags that does not need a closing tag. Examples are the <img> tag and <br> tags.
  • 4. 4) What are some of the common lists that can be used when designing a page? You can insert any or a combination of the following list types: – ordered list – unordered list – definition list – menu list – directory list Each of this list types makes use of a different tag set to compose 5) What is image map? Image map lets you link to many different web pages using a single image. You can define shapes in images that you want to make part of an image mapping. 6) What is the advantage of collapsing white space? White spaces are blank sequence of space characters, which is actually treated as a single space character in html. Because the browser collapses multiple space into a single space, you can indent lines of text without worrying about multiple spaces. This enables you to organize the html code into a much more readable format.
  • 5. 7) Can attribute values be set to anything or are there specific values that they accept? Some attribute values can be set to only predefined values. Other attributes can accept any numerical value that represents the number of pixels for a size. 8) How do you insert a copyright symbol on a browser page? To insert the copyright symbol, you need to type &copy; or & #169; in an HTML file. 9) How do you create links to sections within the same page? Links can be created using the <a> tag, with referencing through the use of the number (#) symbol. For example, you can have one line as <a href=”#topmost”>BACK TO TOP</a>, which would result in the words “BACK TO TOP” appearing on the webpage and links to a bookmark named topmost. You then create a separate tag command like <a name=”topmost”> somewhere on the top of the same webpage so that the user will be linked to that spot when he clicked on “BACK TO TOP”.
  • 6. 10) Is there any way to keep list elements straight in an html file? By using indents, you can keep the list elements straight. If you indent each subnested list in further than the parent list that contains it, you can at a glance determine the various lists and the elements that it contains. 1. What is CSS? The full form of CSS is Cascading Style Sheets. It is a styling language which is simple enough for HTML elements. It is popular in web designing, and its application is common in XHTML also. 2. What is the origin of CSS ? Standard Generalized Markup Language marked the beginning of style sheets in 1980s.
  • 7. 3. What are the different variations of CSS? The variations for CSS are: CSS 1 CSS 2 CSS 2.1 CSS 3 CSS 4 4. What are the limitations of CSS? Limitations are: Ascending by selectors is not possible Limitations of vertical control No expressions No column declaration Pseudo-class not controlled by dynamic behavior Rules, styles, targeting specific text not possible 5. What are CSS frameworks? It is a pre-planned libraries, which allows easier and more standards-compliant webpage styling, using CSS language.
  • 8. 6. Who maintains the CSS specifications? World Wide Web Consortium maintains the CSS specifications. 7. In how many ways can a CSS be integrated as a web page? CSS can be integrated in three ways: Inline: Style attribute can be used to have CSS applied HTML elements. Embedded: The Head element can have a Style element within which the code can be placed. Linked/ Imported: CSS can be placed in an external file and linked via link element. 8. Discuss the merits and demerits of Embedded Style Sheets? Merits of Embedded Style Sheets: Multiple tag types can be created in a single document. Styles, in complex situations, can be applied by using Selector and Grouping methods. Extra download is unnecessary. Demerits of Embedded Style Sheets: Multiple documents cannot be controlled.
  • 9. 9. What does CSS selector mean? A string equivalent of HTML elements by which declarations or a set of it, is declared and is a link that can be referred for linking HTML and Style sheet is CSS selector. 10. Enlist the media types CSS allows? The design and customization of documents are rendered by media. By applying media control over the external style sheets, they can be retrieved and used by loading it from the network. What is PHP? PHP is a server side scripting language commonly used for web applications. PHP has many frameworks and cms for creating websites.Even a non technical person can cretae sites using its CMS.WordPress,osCommerce are the famus CMS of php.It is also an object oriented programming language like java,C-sharp etc.It is very eazy for learning PHP Questions
  • 10. What is the use of "echo" in php? It is used to print a data in the webpage, Example: <?php echo 'Car insurance'; ?> , The following code print the text in the webpage How to include a file to a php page? We can include a file using "include() " or "require()" function with file path as its parameter. What's the difference between include and require? If the file is not found by require(), it will cause a fatal error and halt the execution of the script. If the file is not found by include(), a warning will be issued, but execution will continue. require_once(), require(), include().What is difference between them? require() includes and evaluates a specific file, while require_once() does that only if it has not been included before (on the same page). So, require_once() is recommended to use when you want to include a file where you have a lot of functions for example. This way you make sure you don't include the file more times and you will not get the "function re-declared" error.
  • 11. Differences between GET and POST methods? We can send 1024 bytes using GET method but POST method can transfer large amount of data and POST is the secure method than GET method. How to declare an array in php? Eg : var $arr = array('apple', 'grape', 'lemon'); What is the use of 'print' in php? This is not actually a real function, It is a language construct. So you can use with out parentheses with its argument list. Example print('PHP Interview questions'); print 'Job Interview '); What is use of in_array() function in php ? in_array used to checks if a value exists in an array What is use of count() function in php ? count() is used to count all elements in an array, or something in an object
  • 12. Company Name : OSGL Soft-Tech Pvt Ltd Website : www.osglsofttech.com Phone No. : +91-8650030309 +91-8650030308 Mail : info@osglsofttech.com Address : TBI-GEU, 566/6 Bell Road, Clement Town, Dehradun Headoffice : 131, 1st Floor, PKT-9, Sector-5, Rohini, North-East Delhi-110085