Login
Sign up
Categories
IT & Programming
Design & Multimedia
Writing & Translation
Sales & Marketing
Admin Support
Engineering & Manufacturing
Finance & Management
Website Designing & Development
Database Management
Networking & Troubleshooting
Aviation & Aerospace
Softwares & Applications
Stocks & Investments
Electronics & Appliances
Online Tools
General Knowledge & Aptitude
Mathematics
Educational Subjects & Courses
Business & Organization
Health & Wellbeing
Culture & Ethics
IT Field Knowledge & Experience
Languages & Communication
Entrepreneurship & Leadership
Economics & Development
Mass Communication & Media
Research Methods & Evaluation
Public Relations & Dealings
Educational Methods and Research
Educational Subjects & Techniques
Crime & Justice
Governments & Policies
Cyber Security & Ethical Hacking
Hospitality & Tourism
Soft Skills & Personal Management
Transportation & Driving Rules
Forest and Nature
Religion
Skill Assessment
MCQs
Login
Sign up
Categories
IT & Programming
Design & Multimedia
Writing & Translation
Sales & Marketing
Admin Support
Engineering & Manufacturing
Finance & Management
Website Designing & Development
Database Management
Networking & Troubleshooting
Aviation & Aerospace
Softwares & Applications
Stocks & Investments
Electronics & Appliances
Online Tools
General Knowledge & Aptitude
Mathematics
Educational Subjects & Courses
Business & Organization
Health & Wellbeing
Culture & Ethics
IT Field Knowledge & Experience
Languages & Communication
Entrepreneurship & Leadership
Economics & Development
Mass Communication & Media
Research Methods & Evaluation
Public Relations & Dealings
Educational Methods and Research
Educational Subjects & Techniques
Crime & Justice
Governments & Policies
Cyber Security & Ethical Hacking
Hospitality & Tourism
Soft Skills & Personal Management
Transportation & Driving Rules
Forest and Nature
Religion
Skill Assessment
MCQs
Login
Sign up
Skill Assessments
>
IT & Programming
>
ExtJs Skill Assessment
>
Quiz # 1
ExtJs Quiz # 1
Instructions
Quiz:
ExtJs Quiz # 1
Subject:
Basic Extjs
Total Questions:
30 MCQs
Time:
30 Minutes
Note
Do not refresh the page while taking the test.
Results along with correct answers will be shown at the end of the test.
Start Quiz
ExtJs Quiz # 1
End Quiz
Question
1
of 30
00:00
What is the difference between Ext.get() and Ext.getDom()?
Ext.get() is faster than Ext.getDom().
Ext.get() only allows xpath queries.
Ext.get() makes the CPU spin faster than Ext.getDom().
Ext.get() will convert a DOM object to an Ext.element object, whereas Ext.getDom() will convert an Ext.element object to a DOM object.
Extjs 4.x provide us a new concept when we work with MVC pattern, this is a class when we need to control the views in the Controller class and is useful to provide us a searching of components within Ext.ComponentManager.
Ext.create
Ext.draw.Component
Ext.chart.Chart
Ext.ComponentQuery
In Ext, what is a proxy?
Proxies are dummy controls that handle the events such as a click event in lieu of the actual control.
Proxies are used by Stores to handle the loading and saving of Model data. Usually developers will not need to create or interact with proxies directly.
Proxies are dummy controls that hold the values for the real controls.
Proxies are members of the Ext support staff will write your code for you.
Ext JS is a JavaScript library for developing interactive web applications using technologies such as AJAX, DHTML and DOM. It was developed by Sencha.
True
False
What is the difference between Ext.addClass() and Ext.removeClass()?
Ext.addClass() is deprecated.
Ext.addClass() will add the class to a DOM object whereas Ext.removeClass() will remove a class from a DOM object.
Ext.addClass() has better performance.
Ext.removeClass() has better performance.
What is the difference between an Ext.element and an Ext.component?
Elements are visible and components are invisible.
Elements are heavier objects in memory and components are more lightweight
Elements are the parent class of Components.
An Ext.element encapsulates a DOM element, adding simple DOM manipulation facilities, normalizing for browser differences, whereas an Ext.component is the base class for all objects in Ext, such as controls, panels and stores.
is Extjs a cross-browser RIA framework?
True
False
What is the difference between a GridPanel and an EditorGridPanel?
The EditorGridPanel extends the GridPanel Class to provide cell editing on selected columns.
The EditorGridPanel can have more columns in it.
The EditorGridPanel is slower to start up.
The GridPanel is smaller.
Which one of the following is true about the Ext viewport?
The viewport can only have 4 items in it.
The viewport does not allow a different layout type to be specified.
The viewport has a 4px black border by default.
The viewport automatically re-sizes itself to the size of the browser viewport.
What data proxy does Ext support?
All of the above
AJAX
JSON-P
REST
is it possible to migrate from Extjs 3 to Extjs 4?
False
True
Why would a developer use buffered scrolling?
Buffered scrolling enables a developer to load any number of records into a grid without paging.
This allows a developer to submit changes without validation.
Buffered scrolling makes all the UI interactions run at 120 fps.
Buffered scrolling makes the interface much shinier.
Extjs 4.x includes a new pattern concept named MVC.
True
False
The LocalStorageProxy uses the new HTLM5 localStorage API to load and save data into the client brwoser
False
True
What is the name of the method on an Ext.data.store that synchronizes the records in the store with a remote data source?
load
upload
sync
download
True or false? Ext Js supports all major web browsers including: IE 6+,Firefox 1.5+(Pc,Mac),Safari 3+,Opera9+(Pc,Mac).
True
False
Extjs 4 introduces a new package organization and that is why some classes names are not the same as they were in Extjs 3.
False
True
Why would a developer use a Pager?
To make ComboBoxes display faster.
To alert users of problems with their data.
To more quickly display and load large amounts of data in a GridPanel.
To simulate an e-Reader.
With Sandbox mode you can run Extjs 4 alongside with previous versions of Extjs on the same page.
False
True
What is theme inheritance?
Creating themes that are passed from one developer to another.
Creating themes that have similar colors.
Making your themes object oriented.
Setting up your theme to extend or inherit from a base theme so as to include all the necessary classes to work properly.
What is a RESTful store in Ext?
A store that allows the user to slowly browser a website.
A store that allows for cross-site scripting.
A store that slows when the demand is too much on the server's hardware.
A stores that supports a convenient way to interface with a RESTful web service.
What are the 4 folders that a developer should create to employ the recommended MVC architecture in Ext?
Clicks,Selects,Changes,Checks
Controls,Views,UIs,Events
Models,Views,Animations,HTML
Models,Views,Controllers,Stores
What is the difference between theming and styling in Ext?
Themes are only one file, styles require many files.
Themes are more visually appealing.
Theming is differentiated from "styling" by the ability to flip a switch and change the theme.
Themes are cheaper than styles.
What region type is required for border layout?
Center
North
East
No region type is required
South
What is the name of the object a developer would use to create a group of radiobuttons in which only one radio button can be selected at a time?
Ext.form.RadioTeam
Ext.form.Radio
Ext.form.CheckBox
Ext.form.RadioGroup
Why would a developer use a JsonPStore instead of a JsonStore?
To create a store that has data with no flaws in it.
To facilitate the creation of a store in Ext that would allow for cross-site requests of JSON data.
JsonPStores work better with server side JSON.
A JsonP store can hold more data than a JsonStore.
Why would a developer use Ext.fly() instead of Ext.get()?
In a situation where a developer would be calling a repetitive,atomic function on many different elements and needs to reduce the memory footprint.
To make Ext run in turbo-mode.
To increase the number of controls allowed on a page.
To make a small, airborn insect appear in the DOM.
What is the name of the event that fires when all the DOM objects have been loaded but before all images are loaded and before the onLoad event?
onReadyToGo
onDocumentReady
onBeforePageLoaded
onBeforeLoaded
The _____ organizes its children horizontally across the container.
Anchor layout
Accordion layout
Absolute layout
HBox layout
True or False. There can only be one locked column.
False
TRUE
Submit Test
Prev Question
ABCd
Next Question
Liked this quiz? Share it with friends:
Share Quiz
Share
WhatsApp
Facebook
Twitter
LinkedIn
Or copy link:
Copy
Link copied to clipboard!
Copy
ExtJs Skill Assessment
Login to see Skill Score (It's Free)
Your Skill Level:
Poor
Retake Quizzes to improve it
Start Assessment
ExtJs Skill Assessment
Login to see Skill Score (It's Free)
Your Skill Level:
Poor
Retake Quizzes to improve it
Start Assessment