Our Blog

What’s Happening
  • Defect

     
    What is Defect?
    Defect is any difference between expected and actual result. Defect is also known as the bug.
    A reason for defects:
     1)Requirement Phase Problems:
    Requirement related problem lead to developed functionality not as per user expectation. The problem can be:

    Unclear or missing Requirement: The customer is either not clear about his requirement.

    Frequently changing requirement: Changes become on … Continue reading

  • CSS TRANSITION

     

    Transition provides a way to control animation speed when changing CSS properties.CSS3 transitions allow you to change property values smoothly (from one value to another), over a given duration, you can cause the changes in a property to take place over a period of time. For example, if you change the background color of an element from white … Continue reading

  • Swift – Functions

     

    A function is a set of statements which organized together to perform a specific task. Functions are used to pass local and global parameter values inside the function calls.

    Function Declaration – Function declaration tells about a function’s name, return type, and parameters to the compiler.
    Function Definition – Function Definition represent the actual body … Continue reading

  • Swift – Generics

     

    Generic helps us to write code which is flexible, reusable functions and types which have a different type like Int, float, string etc. Generic reduces the duplication of code, code with generic is represented in an abstract manner.

    Generic is one of the new features that is present in the swift language.  In Swift language, Array … Continue reading

  • Introduction of Magento Product Types

     

    This tutorial will provide the detailed information regarding Magento product types. Magento gives us control over products in a way that few open source e-commerce platforms allow. Magento provides six types of products. Appropriate selection of product type is essential for accessing the appropriate set of features required to sell the product. Following are the … Continue reading

  • THE LIFE-CYCLE – WEB SITE DEVELOPMENT PROCESS

     

    The website development life-cycle is divided into different steps, similar to the traditional software development process.Here I am going to explain the different steps in the development process of web engineering.The steps may vary from application to application.

    Introduction:-

    A systematic website development process can follow a number of standard or company specific frameworks, modeling tools, methodologies, … Continue reading

  • SENSORS IN ANDROID

     
    #Overview of Sensors
    The sensor is used for to monitor the three-dimensional device movement or any change in device environment. Those are measured the device motion, device orientation and different types of environmental conditions.
    A sensor is supposed to provide the high accuracy & clarity to provide the raw data.

    Ex.

    The game application uses the device gravity … Continue reading

  • Swift –Collection Types

     

    Collection Types

    Swift has three primary collection types, they are arrays, sets, and dictionaries, for storing collections of values. Arrays are ordered collections of values and  Sets are unordered collections of unique values. Dictionaries are unordered collections of key-value pair.

    Arrays, sets, and dictionaries in Swift are everytime clear about the types of values and keys that … Continue reading

Post A Comment