SlideShare a Scribd company logo
© 2013 www.Codelect.net
AngularJS	Interview	Questions		
1. Consider the below AngularJS application, what will be displayed in the index.html page?
//index.html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Greeting</title>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular.min.js"></script>
<script src="scripts.js"></script>
</head>
<body >
<div ng-app="myApp">
<div>
{{ 'World' | eveningGreeting }}
</div>
</div>
</body>
</html>
//scripts.js
var myAppModule = angular.module('myApp', []);
myAppModule.filter('morningGreeting', function() {
return function(name) {
© 2013 www.Codelect.net
return 'Good Morning, ' + name + '!';
};
});
var i18nModule = angular.module('I18NApp', []);
i18nModule.filter('eveningGreeting', function() {
return function(name) {
return 'Good Evening, ' + name + '!';
};
});
Answers:
1. Good Evening, World!
2. Good Morning, World!
3. An $injector error will occur
4. An empty page
2. While running the below AngularJS code, you have encountered the following error in the console:
Error: Invalid value for <circle> attribute r="{{r}}"
What can be done to solve this error?
//AngularJS Code
<!doctype html>
<html ng-app>
<head>
ҧ
© 2013 www.Codelect.net
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular.min.js"></script>
</head>
<body>
<div>
<label>Name:</label>
<input type="text" ng-model="r" placeholder="Enter Radius Size">
<hr>
<svg width="200" height="200">
<circle cx="150" cy="150" r="{{r}}" stroke-width="4" fill="blue" />
</svg>
</div>
</body>
</html>
Answers:
1. Nothing, AngularJS does not support SVG
2. Use the following attribute ng-attr-r (instead of r)
3. Use the following attribute radius (instead of r)
4. Add you own custom directive to create circles
Copy protected with Online-PDF-NoCopy.com

More Related Content

What's hot (20)

Introduction to AngularJS Framework
Introduction to AngularJS Framework
Raveendra R
 
Introduction to AngularJS
Introduction to AngularJS
David Parsons
 
Introduction to AngularJS
Introduction to AngularJS
Aldo Pizzagalli
 
AngularJS
AngularJS
Hiten Pratap Singh
 
Angularjs tutorial
Angularjs tutorial
HarikaReddy115
 
Modules in AngularJs
Modules in AngularJs
K Arunkumar
 
Angular js best practice
Angular js best practice
Matteo Scandolo
 
AngularJS
AngularJS
Maurice De Beijer [MVP]
 
OCTO BOF - How to build Netvibes with AngularJS
OCTO BOF - How to build Netvibes with AngularJS
Jonathan Meiss
 
Gettings started with the superheroic JavaScript library AngularJS
Gettings started with the superheroic JavaScript library AngularJS
Armin Vieweg
 
Angular Js
Angular Js
Knoldus Inc.
 
Angular js for beginners
Angular js for beginners
Munir Hoque
 
AngularJS is awesome
AngularJS is awesome
Eusebiu Schipor
 
Angular js
Angular js
Knoldus Inc.
 
Angular Seminar-js
Angular Seminar-js
Mindfire Solutions
 
Angular js tutorial slides
Angular js tutorial slides
samhelman
 
Get satrted angular js
Get satrted angular js
Alexandre Marreiros
 
Angular js PPT
Angular js PPT
Imtiyaz Ahmad Khan
 
AngularJS - What is it & Why is it awesome ? (with demos)
AngularJS - What is it & Why is it awesome ? (with demos)
Gary Arora
 
AngularJS One Day Workshop
AngularJS One Day Workshop
Shyam Seshadri
 
Introduction to AngularJS Framework
Introduction to AngularJS Framework
Raveendra R
 
Introduction to AngularJS
Introduction to AngularJS
David Parsons
 
Introduction to AngularJS
Introduction to AngularJS
Aldo Pizzagalli
 
Modules in AngularJs
Modules in AngularJs
K Arunkumar
 
Angular js best practice
Angular js best practice
Matteo Scandolo
 
OCTO BOF - How to build Netvibes with AngularJS
OCTO BOF - How to build Netvibes with AngularJS
Jonathan Meiss
 
Gettings started with the superheroic JavaScript library AngularJS
Gettings started with the superheroic JavaScript library AngularJS
Armin Vieweg
 
Angular js for beginners
Angular js for beginners
Munir Hoque
 
Angular js tutorial slides
Angular js tutorial slides
samhelman
 
AngularJS - What is it & Why is it awesome ? (with demos)
AngularJS - What is it & Why is it awesome ? (with demos)
Gary Arora
 
AngularJS One Day Workshop
AngularJS One Day Workshop
Shyam Seshadri
 

Similar to AngularJS interview questions (7)

III - Better angularjs
III - Better angularjs
WebF
 
When to use and when not to use AngularJS - Liju Pillai, www.perfomatix.com
When to use and when not to use AngularJS - Liju Pillai, www.perfomatix.com
Perfomatix Solutions
 
Exploring AngularJS - Liju Pillai
Exploring AngularJS - Liju Pillai
Liju Pillai
 
Introduction to AngularJS
Introduction to AngularJS
Jussi Pohjolainen
 
Optimizing a large angular application (ng conf)
Optimizing a large angular application (ng conf)
A K M Zahiduzzaman
 
Working with AngularJS
Working with AngularJS
André Vala
 
Angular Interview Questions & Answers
Angular Interview Questions & Answers
Ratnala Charan kumar
 
III - Better angularjs
III - Better angularjs
WebF
 
When to use and when not to use AngularJS - Liju Pillai, www.perfomatix.com
When to use and when not to use AngularJS - Liju Pillai, www.perfomatix.com
Perfomatix Solutions
 
Exploring AngularJS - Liju Pillai
Exploring AngularJS - Liju Pillai
Liju Pillai
 
Optimizing a large angular application (ng conf)
Optimizing a large angular application (ng conf)
A K M Zahiduzzaman
 
Working with AngularJS
Working with AngularJS
André Vala
 
Angular Interview Questions & Answers
Angular Interview Questions & Answers
Ratnala Charan kumar
 
Ad

Recently uploaded (20)

Tree_Traversals.pptbbbbbbbbbbbbbbbbbbbbbbbbb
Tree_Traversals.pptbbbbbbbbbbbbbbbbbbbbbbbbb
RATNANITINPATIL
 
Structural Design for Residential-to-Restaurant Conversion
Structural Design for Residential-to-Restaurant Conversion
DanielRoman285499
 
TEA2016AAT 160 W TV application design example
TEA2016AAT 160 W TV application design example
ssuser1be9ce
 
Decoding Kotlin - Your Guide to Solving the Mysterious in Kotlin - Devoxx PL ...
Decoding Kotlin - Your Guide to Solving the Mysterious in Kotlin - Devoxx PL ...
João Esperancinha
 
Universal Human Values and professional ethics Quantum AKTU BVE401
Universal Human Values and professional ethics Quantum AKTU BVE401
Unknown
 
The first edition of the AIAG-VDA FMEA.pptx
The first edition of the AIAG-VDA FMEA.pptx
Mayank Mathur
 
社内勉強会資料_Chain of Thought .
社内勉強会資料_Chain of Thought .
NABLAS株式会社
 
Rigor, ethics, wellbeing and resilience in the ICT doctoral journey
Rigor, ethics, wellbeing and resilience in the ICT doctoral journey
Yannis
 
4th International Conference on Computer Science and Information Technology (...
4th International Conference on Computer Science and Information Technology (...
ijait
 
02 - Ethics & Professionalism - BEM, IEM, MySET.PPT
02 - Ethics & Professionalism - BEM, IEM, MySET.PPT
SharinAbGhani1
 
Fundamentals of Digital Design_Class_21st May - Copy.pptx
Fundamentals of Digital Design_Class_21st May - Copy.pptx
drdebarshi1993
 
Flow Chart Proses Bisnis prosscesss.docx
Flow Chart Proses Bisnis prosscesss.docx
rifka575530
 
A Comprehensive Investigation into the Accuracy of Soft Computing Tools for D...
A Comprehensive Investigation into the Accuracy of Soft Computing Tools for D...
Journal of Soft Computing in Civil Engineering
 
FINAL 2013 Module 20 Corrosion Control and Sequestering PPT Slides.pptx
FINAL 2013 Module 20 Corrosion Control and Sequestering PPT Slides.pptx
kippcam
 
362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf
362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf
djiceramil
 
最新版美国圣莫尼卡学院毕业证(SMC毕业证书)原版定制
最新版美国圣莫尼卡学院毕业证(SMC毕业证书)原版定制
Taqyea
 
Week 6- PC HARDWARE AND MAINTENANCE-THEORY.pptx
Week 6- PC HARDWARE AND MAINTENANCE-THEORY.pptx
dayananda54
 
operationg systemsdocumentmemorymanagement
operationg systemsdocumentmemorymanagement
SNIGDHAAPPANABHOTLA
 
Water demand - Types , variations and WDS
Water demand - Types , variations and WDS
dhanashree78
 
Center Enamel can Provide Aluminum Dome Roofs for diesel tank.docx
Center Enamel can Provide Aluminum Dome Roofs for diesel tank.docx
CenterEnamel
 
Tree_Traversals.pptbbbbbbbbbbbbbbbbbbbbbbbbb
Tree_Traversals.pptbbbbbbbbbbbbbbbbbbbbbbbbb
RATNANITINPATIL
 
Structural Design for Residential-to-Restaurant Conversion
Structural Design for Residential-to-Restaurant Conversion
DanielRoman285499
 
TEA2016AAT 160 W TV application design example
TEA2016AAT 160 W TV application design example
ssuser1be9ce
 
Decoding Kotlin - Your Guide to Solving the Mysterious in Kotlin - Devoxx PL ...
Decoding Kotlin - Your Guide to Solving the Mysterious in Kotlin - Devoxx PL ...
João Esperancinha
 
Universal Human Values and professional ethics Quantum AKTU BVE401
Universal Human Values and professional ethics Quantum AKTU BVE401
Unknown
 
The first edition of the AIAG-VDA FMEA.pptx
The first edition of the AIAG-VDA FMEA.pptx
Mayank Mathur
 
社内勉強会資料_Chain of Thought .
社内勉強会資料_Chain of Thought .
NABLAS株式会社
 
Rigor, ethics, wellbeing and resilience in the ICT doctoral journey
Rigor, ethics, wellbeing and resilience in the ICT doctoral journey
Yannis
 
4th International Conference on Computer Science and Information Technology (...
4th International Conference on Computer Science and Information Technology (...
ijait
 
02 - Ethics & Professionalism - BEM, IEM, MySET.PPT
02 - Ethics & Professionalism - BEM, IEM, MySET.PPT
SharinAbGhani1
 
Fundamentals of Digital Design_Class_21st May - Copy.pptx
Fundamentals of Digital Design_Class_21st May - Copy.pptx
drdebarshi1993
 
Flow Chart Proses Bisnis prosscesss.docx
Flow Chart Proses Bisnis prosscesss.docx
rifka575530
 
FINAL 2013 Module 20 Corrosion Control and Sequestering PPT Slides.pptx
FINAL 2013 Module 20 Corrosion Control and Sequestering PPT Slides.pptx
kippcam
 
362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf
362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf
djiceramil
 
最新版美国圣莫尼卡学院毕业证(SMC毕业证书)原版定制
最新版美国圣莫尼卡学院毕业证(SMC毕业证书)原版定制
Taqyea
 
Week 6- PC HARDWARE AND MAINTENANCE-THEORY.pptx
Week 6- PC HARDWARE AND MAINTENANCE-THEORY.pptx
dayananda54
 
operationg systemsdocumentmemorymanagement
operationg systemsdocumentmemorymanagement
SNIGDHAAPPANABHOTLA
 
Water demand - Types , variations and WDS
Water demand - Types , variations and WDS
dhanashree78
 
Center Enamel can Provide Aluminum Dome Roofs for diesel tank.docx
Center Enamel can Provide Aluminum Dome Roofs for diesel tank.docx
CenterEnamel
 
Ad

AngularJS interview questions

  • 1. © 2013 www.Codelect.net AngularJS Interview Questions 1. Consider the below AngularJS application, what will be displayed in the index.html page? //index.html <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Greeting</title> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular.min.js"></script> <script src="scripts.js"></script> </head> <body > <div ng-app="myApp"> <div> {{ 'World' | eveningGreeting }} </div> </div> </body> </html> //scripts.js var myAppModule = angular.module('myApp', []); myAppModule.filter('morningGreeting', function() { return function(name) {
  • 2. © 2013 www.Codelect.net return 'Good Morning, ' + name + '!'; }; }); var i18nModule = angular.module('I18NApp', []); i18nModule.filter('eveningGreeting', function() { return function(name) { return 'Good Evening, ' + name + '!'; }; }); Answers: 1. Good Evening, World! 2. Good Morning, World! 3. An $injector error will occur 4. An empty page 2. While running the below AngularJS code, you have encountered the following error in the console: Error: Invalid value for <circle> attribute r="{{r}}" What can be done to solve this error? //AngularJS Code <!doctype html> <html ng-app> <head>
  • 3. ҧ © 2013 www.Codelect.net <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular.min.js"></script> </head> <body> <div> <label>Name:</label> <input type="text" ng-model="r" placeholder="Enter Radius Size"> <hr> <svg width="200" height="200"> <circle cx="150" cy="150" r="{{r}}" stroke-width="4" fill="blue" /> </svg> </div> </body> </html> Answers: 1. Nothing, AngularJS does not support SVG 2. Use the following attribute ng-attr-r (instead of r) 3. Use the following attribute radius (instead of r) 4. Add you own custom directive to create circles Copy protected with Online-PDF-NoCopy.com