UI Developer

  Home  GUI  UI Developer


“User Interface Expert based Frequently Asked Questions by expert members with experience as GUI Developer. These questions and answers will help you strengthen your technical skills, prepare for the new job test and quickly revise the concepts”



90 UI Developer Questions And Answers

65⟩ Tell me what is the new DOCTYPE?

Instead of typing out a ridiculously long DOCTYPE statement to tell the browser how to render your webpage, this long line of code has been truncated to <!doctype html>.

 169 views

66⟩ Explain what are the new media-related elements in HTML5?

Canvas and WebGL. <Canvas> is a new element that acts as a container for graphical elements like images and graphics. Coupled with JavaScript, it supports 2D graphics. WebGL stands for Web Graphics Language, a free cross-platform API that is used for generating 3D graphics in web browsers.

 166 views

78⟩ Tell me what are some new HTML5 markup elements?

There are several:

☛ <article>

☛ <aside>

☛ <bdi>

☛ <command>

☛ details>

☛ <figure>

☛ <figcaption>

☛ <summary>

☛ <header>

☛ <footer>

☛ <hgroup>

☛ <mark>

☛ <meter>

☛ <nav>

☛ <progress>

☛ <ruby>

☛ <rt>

☛ <section>

☛ <time>

☛ and <wpr>

 160 views

80⟩ Explain what are data- attributes good for?

The HTML5 data- attribute is a new addition that assigns custom data to an element. It was built to store sensitive or private data that is exclusive to a page or application, for which there are no other matching attributes or elements.

 252 views