Friday, January 27, 2017

Create responsive AngularJS Dynamic Tabs using BootStrap


The AngularJS directive here I create for my tab control is ngTab. Which accepts two parameters length & data. Length is the number of tabs we required. When data is the states & it’s cities. Data is in JSON format. You can replace this data as per your requirements. To get these parameters values in AngularJS ngTab directive I am using scope: { “length”: ‘=’, “data”: ‘@’ }.

You can watch this in the below app.js file. To create responsive Tabs I used BootStrap here. my-tab.html is my template for ngTab. In template file I am binding the state & cities values (In form of array) from the scope object of TabModule... https://goo.gl/N2zcjo

Sunday, January 22, 2017

Features of Object Oriented Programming


In Object Oriented Programming (OOP), more emphasis is given to the data rather than functions. In OOPs, Data is encapsulated with the associated functions that operate on it. That gives rise to a concept called Data Encapsulation. In OOPs, the real-life problem can be decomposed into a number of entities called Objects and then data and functions built around these objects.

What is an Object?

Objects are the physical and conceptual things that found in the universe. Hardware, Software, documents, human beings and even concepts are all examples of objects. Every object will have data structures called attributes and behavior called operation. Each object will have its own identity through its attributes and operations are same; the objects will never become equal. For instance, in case of student object, two students have the same attributes like name, address, sex and marks but they are not equal. Objects are the basic run-time entities in an object-oriented system... https://goo.gl/vTrEGE

Frequently asked OOPs Interview Questions and Answers

 
No matter whether you are a JAVA or C# or C++ professional. Object Oriented Programming (#OOPs) Technique is common to all high level languages. I experienced during a Technical interview nearly all experienced interviewers prefer to ask OOPs related interview questions. Compare to an experienced professional a fresher can have more chance to face OOPs interview questions during his/her Career journey. Object Oriented Programming technique is not at all difficult to learn but it is little bit confusing. That’s why to judge a fresher interviewers use OOPs interview questions.

To make your Career journey easier here in this session we are sharing the most frequently asked OOPs interview questions with answers. Read thoroughly the below interview questions before visit the interviewer... https://goo.gl/Er4eUk