Correct Answer:
$ionicHistory
Note: This Question is unanswered, help us to find answer for this one
Which of following options are true regarding native audio? Check all that apply.
Correct Answer:
preloadSimple is used for simple sounds that will be played once
preloadComplex for sounds that will be played as looping sounds or background audio
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
By default, Ionic will cache a maximum of ............... views.
Correct Answer:
10
Note: This Question is unanswered, help us to find answer for this one
Which command(s) can you use to start an an app from scratch?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
How can "tap for a div and all of its children elements" be disabled?
Correct Answer:
div data-tap-disabled=“true”> ... /div>
Note: This Question is unanswered, help us to find answer for this one
Which cordova plugin is used to open external links from your app inside a web browser view?
Correct Answer:
org.apache.cordova.inappbrowser
Note: This Question is unanswered, help us to find answer for this one
Which of the following $colors exists in Ionic 2? Check all that apply.
Correct Answer:
primary
secondary
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
How can you call node server using ionic?
Correct Answer:
angular.module('starter.services', ['ngResource']) .factory('Session', function ($resource) { return
Note: This Question is unanswered, help us to find answer for this one
Using the following code, How to call node server using ionic?
Correct Answer:
angular.module('starter.services', ['ngResource']) .factory('Session', function ($resource) { return
Note: This Question is unanswered, help us to find answer for this one
Using the following code, how can you call node server using ionic?
Correct Answer:
angular.module('starter.services', ['ngResource']) .factory('Session', function ($resource) { return
Note: This Question is unanswered, help us to find answer for this one
In AppCtrl controller, how can you retrieve and set the platform using ionic.Platform?
Correct Answer:
.controller('AppCtrl', function($scope) { $scope.platform = ionic.Platform.platform(); })
Note: This Question is unanswered, help us to find answer for this one
What is the default color of the button defined below? <button class="button button-positive"> button-positive
Correct Answer:
Blue
Note: This Question is unanswered, help us to find answer for this one
For example, the NativeStorage is connected. Which of the following lines of code correctly adds newItem to storage ?
Correct Answer:
NativeStorage.setItem('newItem', {new: 1}).then(()=>);
Note: This Question is unanswered, help us to find answer for this one
Which one is the main class for Header & Footer?
Correct Answer:
bar
Note: This Question is unanswered, help us to find answer for this one
Using the following code, how can you disable cache with an attribute?
Correct Answer:
ion-view cache-view="false" view-title="My Title!"> ... /ion-view>
Note: This Question is unanswered, help us to find answer for this one
The CLI automatically adds a new ........... named resources.
Correct Answer:
Folder
Note: This Question is unanswered, help us to find answer for this one
Which of the following lines is starting template for Ionic 2 application ?
Correct Answer:
<ion-nav [root]="rootPage"></ion-nav>
Note: This Question is unanswered, help us to find answer for this one
$scope.clickMe = function(){ console.log(myVar) };Assume use the following code int the controller , Which of the following prints the value of the myVar in each click to the checkbox? $scope.myVar = false;
Correct Answer:
<ion-checkbox ng-model="myVar" ng-change="clickMe()"></ion-checkbox>
Note: This Question is unanswered, help us to find answer for this one
$scope.myVar = false; $scope.clickMe = function(){ console.log(myVar) };
Correct Answer:
<ion-checkbox ng-model="myVar" ng-change="clickMe()"></ion-checkbox>
Note: This Question is unanswered, help us to find answer for this one
Assume the following code in the controller. Which of the following prints the value of the myVar in each click to the checkbox?
Correct Answer:
<ion-checkbox ng-model="myVar" ng-change="clickMe()"></ion-checkbox>
Note: This Question is unanswered, help us to find answer for this one
How i can get the input value within ionic 2 in my Component as following?
Correct Answer:
Both of the above
Note: This Question is unanswered, help us to find answer for this one
Sub header is created when bar-subheader class is added to ion-header-bar. We will add bar-assertive class to apply red color to our sub header?
Correct Answer:
<ion-header-bar class="bar-positive"> <div class="buttons"> <button class="button">Button</button> </div> <h1 class="title">Title!</h1> <div class="buttons"> <button class="button icon ion-home"></button> </div> </ion-header-bar><ion-header-bar class="bar-subheader bar-assertive"><h1 class="title">Subheader</h1></ion-header-bar>
Note: This Question is unanswered, help us to find answer for this one
How to create dropdown menu & Side menu in Ionic?
Correct Answer:
ion-list> div ng-repeat="group in groups"> ion-item class="item-stable" ng-click="toggleGroup(group)" ng-class="{active: isGroupShown(group)}"> i class="icon" ng-class="isGroupShown(group) ? 'ion-minus' : 'ion-plus'"> /i> Group {{group.name}} /ion-item> ion-item class="item-accordion" ng-repeat="item in group.items" ng-show="isGroupShown(group)"> {{item}} /ion-item> /div> /ion-list>
Note: This Question is unanswered, help us to find answer for this one
How can you create a dropdown menu & side menu in Ionic? (choose all that apply)
Correct Answer:
ion-list> div ng-repeat="group in groups"> ion-item class="item-stable" ng-click="toggleGroup(group)" ng-class="{active: isGroupShown(group)}"> i class="icon" ng-class="isGroupShown(group) ? 'ion-minus' : 'ion-plus'"> /i> Group {{group.name}} /ion-item> ion-item class="item-accordion" ng-repeat="item in group.items" ng-show="isGroupShown(group)"> {{item}} /ion-item> /div> /ion-list>
$scope.groups = []; for (var i=0; i<10; i++) { $scope.groups[i] = { name: i, items: [] }; for (var j=0; j<3; j++) { $scope.groups[i].items.push(i + '-' + j); } } $scope.toggleGroup = function(group) { if ($scope.isGroupShown(group)) { $scope.shownGroup = null; } else { $scope.shownGroup = group; } }; $scope.isGroupShown = function(group) { return $scope.shownGroup === group; };
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Range will usually require icons to display data clearly. We just need to add icons before and after range input to place them on both sides of the range element choose a correct answer?
Correct Answer:
<div class = "item range"> <i class = "icon ion-volume-low"></i> <input type = "range" name = "volume"> <i class = "icon ion-volume-high"></i> </div>
Note: This Question is unanswered, help us to find answer for this one
$scope.clickMe = function(){ console.log(myVar) };Assume use the following code int the controller , Which of the following prints the value of the myVar in each click to the checkbox? $scope.myVar = false;
Correct Answer:
<ion-checkbox ng-model="myVar" ng-change="clickMe()"></ion-checkbox>
Note: This Question is unanswered, help us to find answer for this one
$scope.myVar = false; $scope.clickMe = function(){ console.log(myVar) };
Correct Answer:
<ion-checkbox ng-model="myVar" ng-change="clickMe()"></ion-checkbox>
Note: This Question is unanswered, help us to find answer for this one
How i can get the input value within ionic 2 in my Component as following?
Correct Answer:
Both of the above
Note: This Question is unanswered, help us to find answer for this one
What options will allow you to get the input value within Ionic 2 in my Component?
Correct Answer:
Both of the above
Note: This Question is unanswered, help us to find answer for this one
Sub header is created when bar-subheader class is added to ion-header-bar. We will add bar-assertive class to apply red color to our sub header?
Correct Answer:
<ion-header-bar class="bar-positive"> <div class="buttons"> <button class="button">Button</button> </div> <h1 class="title">Title!</h1> <div class="buttons"> <button class="button icon ion-home"></button> </div> </ion-header-bar><ion-header-bar class="bar-subheader bar-assertive"><h1 class="title">Subheader</h1></ion-header-bar>
Note: This Question is unanswered, help us to find answer for this one
Sub header is created when bar-subheader class is added to ion-header-bar. How can we add bar-assertive class to apply red color to our sub header?
Correct Answer:
<ion-header-bar class="bar-positive"> <div class="buttons"> <button class="button">Button</button> </div> <h1 class="title">Title!</h1> <div class="buttons"> <button class="button icon ion-home"></button> </div> </ion-header-bar><ion-header-bar class="bar-subheader bar-assertive"><h1 class="title">Subheader</h1></ion-header-bar>
Note: This Question is unanswered, help us to find answer for this one
How to create dropdown menu & Side menu in Ionic?
Correct Answer:
ion-list> <div ng-repeat="group in groups"> ion-item class="item-stable" ng-click="toggleGroup(group)" ng-class="{active: isGroupShown(group)}"> <i class="icon" ng-class="isGroupShown(group) ? 'ion-minus' : 'ion-plus'"></i> Group {{group.name}} </ion-item> <ion-item class="item-accordion" ng-repeat="item in group.items" ng-show="isGroupShown(group)"> {{item}} </ion-item> </div> </ion-list>
Note: This Question is unanswered, help us to find answer for this one
$scope.clickMe = function(){ console.log(myVar) };Assume use the following code int the controller , Which of the following prints the value of the myVar in each click to the checkbox? $scope.myVar = false;
Correct Answer:
<ion-checkbox ng-model="myVar" ng-change="clickMe()"></ion-checkbox>
Note: This Question is unanswered, help us to find answer for this one
$scope.myVar = false; $scope.clickMe = function(){ console.log(myVar) };
Correct Answer:
<ion-checkbox ng-model="myVar" ng-change="clickMe()"></ion-checkbox>
Note: This Question is unanswered, help us to find answer for this one
How i can get the input value within ionic 2 in my Component as following?
Correct Answer:
Both of the above
Note: This Question is unanswered, help us to find answer for this one
Sub header is created when bar-subheader class is added to ion-header-bar. We will add bar-assertive class to apply red color to our sub header?
Correct Answer:
<ion-header-bar class="bar-positive"> <div class="buttons"> <button class="button">Button</button> </div> <h1 class="title">Title!</h1> <div class="buttons"> <button class="button icon ion-home"></button> </div> </ion-header-bar><ion-header-bar class="bar-subheader bar-assertive"><h1 class="title">Subheader</h1></ion-header-bar>
Note: This Question is unanswered, help us to find answer for this one
How to create dropdown menu & Side menu in Ionic?
Correct Answer:
ion-list> <div ng-repeat="group in groups"> <ion-item class="item-stable" ng-click="toggleGroup(group)" ng-class="{active: isGroupShown(group)}"> <i class="icon" ng-class="isGroupShown(group) ? 'ion-minus' : 'ion-plus'"></i> Group {{group.name}} </ion-item> <ion-item class="item-accordion" ng-repeat="item in group.items" ng-show="isGroupShown(group)"> {{item}} </ion-item> </div> </ion-list>
Note: This Question is unanswered, help us to find answer for this one
What can be called after current play/record or stop action has completed?
Correct Answer:
mediaSuccess
Note: This Question is unanswered, help us to find answer for this one
Which of the following components needed to start with Ionic?
Correct Answer:
NodeJS
Note: This Question is unanswered, help us to find answer for this one
Which is a delegate service that Ionic does not provide:
Correct Answer:
$scope
Note: This Question is unanswered, help us to find answer for this one
The _____ repository contains all of the AngularJS wrappers for Cordova plugins to make it easier for you to use the plugins?
Correct Answer:
ngCordova
Note: This Question is unanswered, help us to find answer for this one
The _____ repository contains all of the AngularJS wrappers for Cordova plugins to make it easier for you to use the plugins.
Correct Answer:
ngCordova
Note: This Question is unanswered, help us to find answer for this one
Which of the following $colors are exists in Ionic 2?
Correct Answer:
primary
Note: This Question is unanswered, help us to find answer for this one
Which of the following are CSS components of Ionic?
Correct Answer:
Colors
Checkbox
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements is True of Ionic-nav-view?
Correct Answer:
used for navigation
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements are true about Ionic-nav-view? (choose all that apply)
Correct Answer:
used for navigation
should be placed in index.html
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
You can start an app using one of our starter templates or start from scratch, using the following command?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Ionic components with ___ to make the page more functional?
Correct Answer:
Cordova
Note: This Question is unanswered, help us to find answer for this one
Which of the following lines of code will pass the {status: "ACTIVE"} to MainPage ?
Correct Answer:
this.nav.push(MainPage, {status: "ACTIVE"});
Note: This Question is unanswered, help us to find answer for this one
How can you pass data from one view to another by using UI-router?
Correct Answer:
$stateProvider .state('todos', { url: '/todos', controller: 'TodosCtrl', templateUrl: 'todos.html', resolve: { todos: function(TodosService) { return TodosService.getTodos() } } })
Note: This Question is unanswered, help us to find answer for this one
For the given code below how can you detect the user’s platform? import { Platform } from 'ionic-angular'; @Component({...}) export MyPage { constructor(platform: Platform) { this.platform = platform; // TODO : check if the device is iOS }
Correct Answer:
if (this.platform.is('ios')) { .. }
Note: This Question is unanswered, help us to find answer for this one
Which of the following plugins are exists in Ionic Native?
Correct Answer:
Camera
Note: This Question is unanswered, help us to find answer for this one
Which of the following plugins exists in Ionic Native? Check all that apply.
Correct Answer:
Camera
Bluetooth Status
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Which of the following options allows to customize navigation transition?
Correct Answer:
None of the above
Note: This Question is unanswered, help us to find answer for this one
The CLI automatically adds a new ____ named resources?
Correct Answer:
Icon
Note: This Question is unanswered, help us to find answer for this one
Which of the following components allows to see the next page in navigation stack?
Correct Answer:
navPush
Note: This Question is unanswered, help us to find answer for this one
Which of the following components allows you to see the next page in navigation stack?
Correct Answer:
navPush
Note: This Question is unanswered, help us to find answer for this one
Which of the following properties can be passed while creating marker?
Correct Answer:
snippet
Note: This Question is unanswered, help us to find answer for this one
Ionic is a open source, front-end?
Correct Answer:
SDK
Note: This Question is unanswered, help us to find answer for this one
Which of the following SASS files is the "main" style file in Ionic 2 project?
Correct Answer:
global.scss
Note: This Question is unanswered, help us to find answer for this one
How can Ionic framework be injected into javascript?
Correct Answer:
angular.module('myApp', [‘ionic'])
Note: This Question is unanswered, help us to find answer for this one
Which of the following controllers is responsive for navigating in Ionic 2?
Correct Answer:
NavigationController
Note: This Question is unanswered, help us to find answer for this one
Which directive is used to attach a controller to the DOM?
Correct Answer:
ng-controller
Note: This Question is unanswered, help us to find answer for this one
Which of the following global objects will include installed plugin?
Correct Answer:
plugins
Note: This Question is unanswered, help us to find answer for this one
Which of the following params should be passed first while creating new Map instance ?
Correct Answer:
DOM element
Note: This Question is unanswered, help us to find answer for this one
Which of the following attribute needed to define for ionic application?
Correct Answer:
ng-app
Note: This Question is unanswered, help us to find answer for this one
Which attribute is needed to define for ionic application?
Correct Answer:
ng-app
Note: This Question is unanswered, help us to find answer for this one
Which of the following methods will display location on the map with special zoom level?
Correct Answer:
animateCamera
Note: This Question is unanswered, help us to find answer for this one
Which of the following components is not exist in Ionic 2?
Correct Answer:
Tooltip
Note: This Question is unanswered, help us to find answer for this one
Which component does not exist in Ionic 2?
Correct Answer:
Tooltip
Note: This Question is unanswered, help us to find answer for this one
Which of the following commands can be used to create a component with preview-box selector?
Correct Answer:
ionic -g component PreviewBox
Note: This Question is unanswered, help us to find answer for this one
$scope.clickMe = function(){ console.log(myVar) };Assume use the following code int the controller , Which of the following prints the value of the myVar in each click to the checkbox? $scope.myVar = false;
Correct Answer:
<ion-checkbox ng-model="myVar" ng-change="clickMe()"></ion-checkbox>
Note: This Question is unanswered, help us to find answer for this one
$scope.clickMe = function(){ console.log(myVar) };Assume use the following code int the controller , Which of the following prints the value of the myVar in each click to the checkbox? $scope.myVar = false;
Correct Answer:
<ion-checkbox ng-model="myVar" ng-change="clickMe()"></ion-checkbox>
Note: This Question is unanswered, help us to find answer for this one
Using the following code, How to pass data between Controller/View in Ionic?
Correct Answer:
.controller('SearchCtrl', function($scope, $state, $http) { $scope.search = function() { console.log('Starting search..'); var res = $http.post('http://endpoint:8080/search',{"language":"en"}) .success(function(data) { alert("Search OK"); //take the data.results and make sure its available when I move to tab.search-results $state.go('tabs.search-results', {result: data}); }).error(function(data) { alert("Search Bad"); }); }; })
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct way to pass data between Controller/View in Ionic?
Correct Answer:
.controller('SearchCtrl', function($scope, $state, $http) { $scope.search = function() { console.log('Starting search..'); var res = $http.post('http://endpoint:8080/search',{"language":"en"}) .success(function(data) { alert("Search OK"); //take the data.results and make sure its available when I move to tab.search-results $state.go('tabs.search-results', {result: data}); }).error(function(data) { alert("Search Bad"); }); }; })
Note: This Question is unanswered, help us to find answer for this one
How i can get the input value within ionic 2 in my Component as following?
Correct Answer:
Both of the above
Note: This Question is unanswered, help us to find answer for this one
Sub header is created when bar-subheader class is added to ion-header-bar. We will add bar-assertive class to apply red color to our sub header?
Correct Answer:
<ion-header-bar class="bar-positive"> <div class="buttons"> <button class="button">Button</button> </div> <h1 class="title">Title!</h1> <div class="buttons"> <button class="button icon ion-home"></button> </div> </ion-header-bar><ion-header-bar class="bar-subheader bar-assertive"><h1 class="title">Subheader</h1></ion-header-bar>
Note: This Question is unanswered, help us to find answer for this one
Ionic provides many services like __ and various delegate services?
Correct Answer:
$loading, $actionSheet
Note: This Question is unanswered, help us to find answer for this one
Ionic provides many services like .................. and various delegate services.
Correct Answer:
$loading, $actionSheet
Note: This Question is unanswered, help us to find answer for this one
Which of the following are Ionic 2 decorators?
Correct Answer:
@Pipe
@Page
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Which service is used for Ionic Popover?
Correct Answer:
$ionicPopover
Note: This Question is unanswered, help us to find answer for this one
How to programmatically enable and disable GPS in Ionic Framework or Cordova?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Which of the following command, “copies all files from the www folder into the target platform’s www folder and builds the app’s source code so that it can be run on a simulator/emulator or a device”?
Correct Answer:
ionic build <platform>
Note: This Question is unanswered, help us to find answer for this one
Plugins are where Cordova stores the plugins that you add to your project. Plugins are added by the following command?
Correct Answer:
ionic plugin add {plugin}
Note: This Question is unanswered, help us to find answer for this one
Plugins can be added using the following command?
Correct Answer:
ionic plugin add {plugin}
Note: This Question is unanswered, help us to find answer for this one
How to create dropdown menu & Side menu in Ionic?
Correct Answer:
<ion-list> <div ng-repeat="group in groups"> <ion-item class="item-stable" ng-click="toggleGroup(group)" ng-class="{active: isGroupShown(group)}"> <i class="icon" ng-class="isGroupShown(group) ? 'ion-minus' : 'ion-plus'"></i> Group {{group.name}} </ion-item> <ion-item class="item-accordion" ng-repeat="item in group.items" ng-show="isGroupShown(group)"> {{item}} </ion-item> </div> </ion-list>
Note: This Question is unanswered, help us to find answer for this one
Ionic Framework navigating from a view on One tab to a view on another tab?
Correct Answer:
.state('tab.chats', { urls: '/chats', views: { 'tab-chats': { templateUrls: 'templates/tab-chats.html', controller: 'ChatsCtrl' } } })
Note: This Question is unanswered, help us to find answer for this one
What option shows Ionic Framework navigating from a view on one tab to a view on another tab?
Correct Answer:
.state('tab.chats', { urls: '/chats', views: { 'tab-chats': { templateUrls: 'templates/tab-chats.html', controller: 'ChatsCtrl' } } })
Note: This Question is unanswered, help us to find answer for this one
Ionic Framework has the following Features?
Correct Answer:
AngularJS
CSS components
Ionic CLI
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
How to set ion-select component with 100% width in IONIC 2?
Correct Answer:
.myCustomSelect{ max-width: 100% !important;}
Note: This Question is unanswered, help us to find answer for this one
Which option will allow you to set ion-select component with 100% width in IONIC 2?
Correct Answer:
.myCustomSelect{ max-width: 100% !important;}
Note: This Question is unanswered, help us to find answer for this one
Which service is used for navigation in Ionic?
Correct Answer:
$stateProvider
Note: This Question is unanswered, help us to find answer for this one
How to hide some elements when keyboard open?
Correct Answer:
By using hide-on-keyboard-open class in elements
Note: This Question is unanswered, help us to find answer for this one
All Ionic color classes can be applied to toggle element?
Correct Answer:
Styling Toggle
Note: This Question is unanswered, help us to find answer for this one
All Ionic color classes can be applied to which toggle element?
Correct Answer:
Styling Toggle
Note: This Question is unanswered, help us to find answer for this one
Which of the followings are True regarding native audio?
Correct Answer:
preloadSimple is used for simple sounds that will be played once
preloadComplex for sounds that will be played as looping sounds or background audio
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Used to set global options for all InAppBrowsers?
Correct Answer:
setDefaultOptions(parameter1)
Note: This Question is unanswered, help us to find answer for this one
Whether the application is running on the device, as the device uses Cordova to display the application?
Correct Answer:
Cordova
Note: This Question is unanswered, help us to find answer for this one
The __ is a content pane that can go over the user’s main view temporarily. Usually used for making a choice or editing an item?
Correct Answer:
Modal
Note: This Question is unanswered, help us to find answer for this one
The ............. is a content pane that can go over the user’s main view temporarily. It is usually used for making a choice or editing an item.
Correct Answer:
Modal
Note: This Question is unanswered, help us to find answer for this one
Which option is used for making a choice or editing an item by temporarily going over the user's main view?
Correct Answer:
Modal
Note: This Question is unanswered, help us to find answer for this one
When creating checkbox form you need to add checkbox class name to both label and _____ elements?
Correct Answer:
input
Note: This Question is unanswered, help us to find answer for this one
Used the clear method to entire view history?
Correct Answer:
clearHistory()
Note: This Question is unanswered, help us to find answer for this one
Which option allows you to clear the entire view history?
Correct Answer:
clearHistory()
Note: This Question is unanswered, help us to find answer for this one
The direction which the nav view transition should animate?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
__ keeps track of views as the user navigates through an app. Similar to the way a browser behaves, an Ionic app is able to keep track of the previous view, the current view, and the forward view (if there is one). However, a typical web browser only keeps track of one history stack in a linear fashion?
Correct Answer:
$ionicHistory
Note: This Question is unanswered, help us to find answer for this one
The $ionicConfigProvider can be used to set the maximum allowable views which can be cached, But this can also be use to disable all caching by the following setting?
Correct Answer:
$ionicConfigProvider.views.maxCache(0);
Note: This Question is unanswered, help us to find answer for this one
The $ionicConfigProvider can be used to set the maximum allowable views which can be cached. This can also be used to disable all caching by the following setting?
Correct Answer:
$ionicConfigProvider.views.maxCache(0);
Note: This Question is unanswered, help us to find answer for this one
The view is about to enter and become the active view?
Correct Answer:
$ionicView.beforeEnter
Note: This Question is unanswered, help us to find answer for this one
Which option shows that the view is about to be entered and become the active view?
Correct Answer:
$ionicView.beforeEnter
Note: This Question is unanswered, help us to find answer for this one
By default, views are cached to improve performance. When a view is navigated away from, its element is left in the DOM, and its scope is disconnected from the $watch cycle. When navigating to a view that is already cached, its scope is then reconnected, and the existing element that was left in the DOM becomes the active view?
Correct Answer:
Caching
Note: This Question is unanswered, help us to find answer for this one
Add custom page transition on ionic 2, As following code?
Correct Answer:
import { Config } from 'ionic-angular'; @NgModule({}) class AppModule { constructor(private config: Config) { this.config.setTransition('fade-transition', FadeTransition); } }
Note: This Question is unanswered, help us to find answer for this one
Which code below will add a custom page transition on ionic 2?
Correct Answer:
import { Config } from 'ionic-angular'; @NgModule({}) class AppModule { constructor(private config: Config) { this.config.setTransition('fade-transition', FadeTransition); } }
Note: This Question is unanswered, help us to find answer for this one
In your AppCtrl controller, retrieve and set the platform using ionic.Platform, Choose a following code?
Correct Answer:
.controller('AppCtrl', function($scope) { $scope.platform = ionic.Platform.platform(); })
Note: This Question is unanswered, help us to find answer for this one
What are the Ionic Events?
Correct Answer:
on-hold
Note: This Question is unanswered, help us to find answer for this one
Which of the following are Ionic Events? Check all that apply.
Correct Answer:
on-hold
on-touch
on-swipe
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
How to include ngCordova plugins in my Ionic app?
Correct Answer:
Both of the above
Note: This Question is unanswered, help us to find answer for this one
Which option allows you to include ngCordova plugins in an Ionic app?
Correct Answer:
Both of the above
Note: This Question is unanswered, help us to find answer for this one
To do this, in our markup we use ionNavView top level directive. To display a header bar we use the ____ directive that updates as we navigate through the navigation stack?
Correct Answer:
ionNavBar
Note: This Question is unanswered, help us to find answer for this one
In our markup we use ionNavView top level directive. To display a header bar we can use the directive that updates as we navigate through the navigation stack.
Correct Answer:
ionNavBar
Note: This Question is unanswered, help us to find answer for this one
Called after current play/record or stop action has completed?
Correct Answer:
mediaSuccess
Note: This Question is unanswered, help us to find answer for this one
What is the Ionic Framework Features as following?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
What are Ionic Framework features?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Use input-label to place a label to the left of the input element. When the user enters text the label does not hide. Note that there's nothing stopping you from also using a placeholder label too?
Correct Answer:
<div class="list"> <label class="item item-input"> <span class="input-label">Username</span> <input type="text"> </label> <label class="item item-input"> <span class="input-label">Password</span> <input type="password"> </label> </div>
Note: This Question is unanswered, help us to find answer for this one
Use an input-label to place a label to the left of the input element. When the user enters text the label does not hide. Note that there's nothing stopping you from also using a placeholder label too. Choose the best option.
Correct Answer:
<div class="list"> <label class="item item-input"> <span class="input-label">Username</span> <input type="text"> </label> <label class="item item-input"> <span class="input-label">Password</span> <input type="password"> </label> </div>
Note: This Question is unanswered, help us to find answer for this one
What is the impact on performance of localStorage in an Ionic app?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Toggle can be implemented using Ionic classes?
Correct Answer:
two
Note: This Question is unanswered, help us to find answer for this one
Toggle can be implemented using how many Ionic classes?
Correct Answer:
two
Note: This Question is unanswered, help us to find answer for this one
How you can Remove caching completely in Ionic?
Correct Answer:
$scope.$on('$ionicView.beforeEnter', function () { $scope.doRefresh(); });
Note: This Question is unanswered, help us to find answer for this one
Returns: promise A promise which is resolved when the modal is finished animating in?
Correct Answer:
show()
Note: This Question is unanswered, help us to find answer for this one
Which cordova plugin is used to open external links form your app inside a web browser view?
Correct Answer:
org.apache.cordova.inappbrowser
Note: This Question is unanswered, help us to find answer for this one
Choose a correct answer, Ionic framework JSON data retrieving?
Correct Answer:
$http.get('content.js').success(function(response) { //whereever you want to put the data });
Note: This Question is unanswered, help us to find answer for this one
Which option displays Ionic framework JSON data retrieving?
Correct Answer:
$http.get('content.js').success(function(response) { //whereever you want to put the data });
Note: This Question is unanswered, help us to find answer for this one
Which directive in Ionic allows to show huge lists, without affecting scroll performance?
Correct Answer:
collection-repeat
Note: This Question is unanswered, help us to find answer for this one
Which of the following components are needed to start with Ionic? Check all that apply.
Correct Answer:
NodeJS
Android SDK
XCode
Cordova and Ionic
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Remove pager (dots) in new ion-slides ionic component?
Correct Answer:
options="{pagination: false}"
Note: This Question is unanswered, help us to find answer for this one
How can you remove pager (dots) in new ion-slides ionic component?
Correct Answer:
options="{pagination: false}"
Note: This Question is unanswered, help us to find answer for this one
Which of the following statement is True for a command line utility?
Correct Answer:
A command line utility is one to be used from a shell (or commonly known as a Terminal). It receives input from this shell, and reports its output in the same shell.
Note: This Question is unanswered, help us to find answer for this one
When we start our app and open the ____ it will log the latitude and longitude of the device. When our position is changed, the lat and long values will change?
Correct Answer:
console
Note: This Question is unanswered, help us to find answer for this one
Which method will be used to get real time location using cordova-plugin-geolocation?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Which of the following are True regarding Ionic Framework?
Correct Answer:
Ionic is open source
Ionic is used for developing mobile application
It provides tools and services for building mobile UI with native look and feel
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Ionic to provide all ten of the animated _____ within 3KB?
Correct Answer:
SVGs
Note: This Question is unanswered, help us to find answer for this one
Which of the following SASS variables are exists in Ionic 2?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
What is the default colour of the button defined below? <button class="button button-positive"> button-positive
Correct Answer:
Blue
Note: This Question is unanswered, help us to find answer for this one
Ionic ____ system is that it is FlexBox?
Correct Answer:
Grid
Note: This Question is unanswered, help us to find answer for this one
Which of the following options can be used to customize Ionic popup?
Correct Answer:
subTitle
Note: This Question is unanswered, help us to find answer for this one
Which of the following options can be used to customize Ionic popup? Check all that apply.
Correct Answer:
subTitle
okText
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
The ionNavView directive is used to _____ templates?
Correct Answer:
Render
Note: This Question is unanswered, help us to find answer for this one
A complex popup has a buttons _____ with each button having a text?
Correct Answer:
Array
Note: This Question is unanswered, help us to find answer for this one
Which of the following life cycle events are exists in Ionic 2 navigation?
Correct Answer:
ionViewDidEnter
Note: This Question is unanswered, help us to find answer for this one
Which of the following life cycle events exist in Ionic 2 navigation? Check all that apply.
Correct Answer:
ionViewDidEnter
ionViewDidLoad
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Ionic is front end __ framework built on top of AngularJS and Cordova?
Correct Answer:
Hybrid
Note: This Question is unanswered, help us to find answer for this one
Which service should be injected into controller to make http request?
Correct Answer:
$http
Note: This Question is unanswered, help us to find answer for this one
Which of the following is correct explanation of abbreviature FAB?
Correct Answer:
Floating Action Buttons
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct explanation of abbreviation FAB?
Correct Answer:
Floating Action Buttons
Note: This Question is unanswered, help us to find answer for this one
Ionic provides custom ___ and methods?
Correct Answer:
Components
Note: This Question is unanswered, help us to find answer for this one
Ionic provides custom ............... and methods?
Correct Answer:
Components
Note: This Question is unanswered, help us to find answer for this one
Which of the following lines shows the Unique Device id ?
Correct Answer:
console.log(Device.device.uuid);
Note: This Question is unanswered, help us to find answer for this one
Which gesture is used for the touch stays at the same location 500ms?
Correct Answer:
on-hold
Note: This Question is unanswered, help us to find answer for this one
Which gesture is used for the touch that stays at the same location 500ms?
Correct Answer:
on-hold
Note: This Question is unanswered, help us to find answer for this one
What are the methods of the ionic.EventController?
Correct Answer:
on, of, trigger, onGesture, ofGesture
Note: This Question is unanswered, help us to find answer for this one
Ionic has __ that are purely CSS-driven?
Correct Answer:
components
Note: This Question is unanswered, help us to find answer for this one
Ionic has ................. that are purely CSS-driven.
Correct Answer:
components
Note: This Question is unanswered, help us to find answer for this one
Which of the following properties can be passed to create method of Toast component?
Correct Answer:
duration
position
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Which of the following Google Maps instances are exists in ionic-native after installing google-maps package ?
Correct Answer:
GoogleMapsLatLng
Note: This Question is unanswered, help us to find answer for this one
Which of the following Google Maps instances exist in ionic-native after installing google-maps package? Check all that apply.
Correct Answer:
GoogleMap
GoogleMapsEvent
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Which of the following Cordova plugins can be used for geolocation?
Correct Answer:
cordova-plugin-geolocation
Note: This Question is unanswered, help us to find answer for this one
Disable all caching globally in Ionic?
Correct Answer:
$ionicConfigProvider.views.maxCache(0);
Note: This Question is unanswered, help us to find answer for this one
Which of the following disables caching the views in Ionic apps?
Correct Answer:
$ionicConfigProvider.views.maxCache(0);
Note: This Question is unanswered, help us to find answer for this one
In Ionic, localStorage has size limit around?
Correct Answer:
5 MB
Note: This Question is unanswered, help us to find answer for this one
How do you persist data between application launches and you can use?
Correct Answer:
localStorage
Note: This Question is unanswered, help us to find answer for this one
How do you persist data between application launches? Check all that apply.
Correct Answer:
localStorage
sessionStorage
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
27- By default Ionic will cache a maximum of ____ views?
Correct Answer:
10
Note: This Question is unanswered, help us to find answer for this one
Which of the following plugins can be used for safety storage?
Correct Answer:
cordova-plugin-secure-storage
Note: This Question is unanswered, help us to find answer for this one
Which of the following components needed to start with Ionic?
Correct Answer:
Cordova and Ionic
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements is True of Ionic-nav-view?
Correct Answer:
None of the above
Note: This Question is unanswered, help us to find answer for this one
What are the Ionic Events?
Correct Answer:
on-hide
Note: This Question is unanswered, help us to find answer for this one
How to create dropdown menu & Side menu in Ionic?
Correct Answer:
}; $scope.isGroupShown = function(group) { return $scope.shownGroup === group; };
$scope.group = []; for (var i=0; i<10; i++) { $scope.groups[i] = { name: i, item: [] }; $scope.isGroupShown = function(group) { return $scope.shownGroup === group; };
Note: This Question is unanswered, help us to find answer for this one
Which of the following options can be used to customize Ionic popup?
Correct Answer:
okText
Note: This Question is unanswered, help us to find answer for this one
Which of the following life cycle events are exists in Ionic 2 navigation?
Correct Answer:
ionViewDidLoad
Note: This Question is unanswered, help us to find answer for this one
Which of the following $colors are exists in Ionic 2?
Correct Answer:
priority
Note: This Question is unanswered, help us to find answer for this one
Which of the following plugins are exists in Ionic Native?
Correct Answer:
Bluetooth Status
Note: This Question is unanswered, help us to find answer for this one
Which of the following Google Maps instances are exists in ionic-native after installing google-maps package ?
Correct Answer:
GoogleMapsEvent
Note: This Question is unanswered, help us to find answer for this one
How do you persist data between application launches and you can use?
Correct Answer:
webStorage
Note: This Question is unanswered, help us to find answer for this one
Ionic Framework MCQs | Topic-wise