3
Answers

How to explain about the project in Interview?

Photo of darma teja

darma teja

7y
826
1
I need suggestions from you all:
 
If an Interviewer asked me about my Project:
 
I would like to say like this: 
 
My project is mainly aimed to create the web application to automate the process between my company, Customers and Suppliers.
My roles in the project are:
1. Requirements gathering from Customer and with Business Consultant
2. Design Use cases
3. Developing/Coding (Do I have to say what technologies I used??)
4. unit Testing and fixing bugs
What to explain if Interviewer asks about Architcture of the project??
Do I have explain about MVC or ??
Modules used in your project?
 
Advance thanks, Darma 
 

Answers (3)

1
Photo of Maram Kiran
NA 259 13.7k 7y
Hamid Khan
 
Thanks for your reply, but this will work for the normal angular apps. My app is built using Yeoman scaffolding 
1
Photo of Hamid Khan
NA 2.5k 68.8k 7y
You can do it by using angular.bootstrap() function
 
 
  1. <html>  
  2.  <body>   
  3.     <div ng-controller="Ctrl">   
  4.         Hello {{msg}}!    
  5.    </div>     
  6.   <script src="lib/angular.js"></script>    
  7.     <script>       
  8.     var app = angular.module('myApp', []);    
  9.        app.controller('Ctrl', function ($scope)  
  10.  {               $scope.msg = 'World';     
  11.         });    
  12.         //manual bootstrap process   
  13.         angular.element(document).ready(function () {  
  14.              angular.bootstrap(document, ['myApp']);     
  15.       });     </script>  
  16.  </body>   
  17. </html>    
1
Photo of Hamid Khan
NA 2.5k 68.8k 7y
Hi Maram,
 
Please go through with these link:
 
https://www.addwebsolution.com/blog/create-angularjs-app-yeoman-grunt-and-bower
 
https://www.airpair.com/js/using-angularjs-yeoman
 
 you can download the sample from below link:
 
https://github.com/yeoman/generator-angular 
 
you can learn from basics :
 
https://www.toptal.com/angular-js/your-first-angularjs-app-part-2-scaffolding-building-and-testing