Pidilite Initiative For Healthy Hum Healthy Home With New DR Fixit App

23:37 Add Comment
The changing face of business over the years has been quite interesting. There were days when production and profit making were main priorities for any company. Over the years, companies have realised that there are other driving forces that build a great company. In the construction industry, specifically, architects, builders, consultants, contractors, dealers and corporate office employees form a part of the stakeholders and are the main pillars. Today, it’s their welfare that needs to be of utmost importance for the business to grow in the long run.

I was invited and was happy to be a part of Pidilite Industries event called ‘Healthy Hum Healthy Home’. Pidilite Industries jointly shares the dream to create a leak-free, damp-free India. This event was designed for the Loyal contractor base of Dr. Fixit & Roff.


People working on construction sites are prone to numerous health risks while they are on the job on a daily basis. Right from injuries due to mishandling machinery to respiratory infections due to construction material used. The chances of an unfortunate accident is often high if one is not well informed of the safety guidelines that are required to be followed by every worker.

The agenda of this event was to tackle all such problems and ensure that every worker is well aware of the safety rules to follow on-site and also to ensure health and fitness is never ignored and given its due importance regularly. Thus, Pidilite arranged for a health camp which included a full body check-up for everyone working at the construction site from the contractors to applicators. This was accompanied by a good distress yoga session to stay fit by a yoga expert.

Day of the Event - 26th Aug 2015
Venue – Pidilite Industries, Andheri East
  • Registration started at 9 am and the participants seemed excited and eager to learn what was in store for them.

  • After getting in employee can have one on one session with Tech help desk for solving your any queries and other problems.
  • The tech desks at the venue helped the attendees to get to know about the days agenda in depth.
  • The next stage was a medical check-up. If the medical inspector detected a respiratory disorder then the individual would have to take a thorough check –up and later on detailed reports were shared.
Medical Checkup Session
  • It was then time to lighten up with some snacks and fun activity that involved a lucky draw.
  • One of the main highlights of the event was the unveiling of the Dr. Fixit Mobile App. Details coming up later on in the post. 
DR Fixit App Intro
  • What followed was the distress yoga session that was carried out by an expert. They were taught exercises which they could perform on a daily basis which will help improve their lifestyle to a great extent.This was really interesting since I believe yoga could do wonders for every individual. 
Yoga Session
  • The next session focused on safety and was hosted by Mr Hemant Kadu, Cluster EHS Manager, L&T. He stressed on how one’s personal attention and precaution measures can help prevent major accidents.
  • To instil the importance of fitness, health and safety precautions the speaker made sure that various instances and statistics were shared with the audience in the form of videos and snapshots so as to be easily understood.
  • The event concluded with a lucky draw and goodies were shared with all the attendees.
End Of An Event With Lucky Draw



DR Fixit App:

As mentioned earlier, Pidilite Industries unveiled a waterproofing app on the go that’s designed by the company for:
  • Achitectures/Builders/ Consultants
  • Contractors.
  • Dealers.
  • Employees.
It’s certainly one-of-a-kind and should prove to be very helpful. You can download this application from Google Play Store for free, search for Dr.Fixit.

There are different sections for every type of user. As you can see below:

The app has some really interesting and informative videos. A dedicated section for news and views ensures that everyone is up to date with new offerings and current trends. You can also build plans with set budgets as suggested by the company. There’s no need to break your head searching for a dealer, the app does all of this for you. 

The event turned out to be a good learning experience. It’s nice to see that Pidilite cares for various stakeholders of the construction industry. So here are all updates. Do stay tuned for more. If in case you have any query, please comment below. Thanks for reading.

Aircel Multiplies Innovation For Continued Growth in MVAS

03:26 Add Comment
August 28, 2015,Mumbai Aircel have given the insight of latest trend in telecom sector. How different aspect of telecom sector have impacted by user expectation. How user trend changed ever since the value added services and internet revolution has taken place with revolution in smartphone development.


About Aircel:

Aircel is one of India’s leading innovative mobile service providers. The company is a pan-India 2G operator with 3G spectrum in 13 circles, BWA spectrum in 8 circles and is credited with the fastest 3G roll out ever in the Indian telecom space. As a young data led telecom player, Aircel has constantly been at the helm of introducing innovative and value for money products and services for its customers, which are industry firsts, be it the Aircel Pocket Internet, taking the first step in making 3G affordable for the masses, being the first telecom player to introduce Facebook Voice Updates on Aircel, and many more.

About Insight Of An Event Topics:


With a backdrop of the constantly growing smartphone adoption in India and a consumer who uses his mobile phone for much more. Aircel is building up a focus on introducing multiple innovative products in the space of Content VAS(Value Added Services) for its customers. Aircel’s VAS offering is comprehensive, providing customers with all their needs at fingertips. 

Whether it is music, entertainment, Caller Tunes, Voice Chat, USSDs, Contests, Gaming, Utility, Sports or Videos, the company has innovated in all spheres to stay ahead of the curve. Aircel has pioneered multiple VAS concepts such as ‘Cut Your Dialer Tune’ that enables customers to listen, choose and set their favorite part of a song as Dialer Tune. ‘Quiz Factory’ –which enables customers to use all forms of communication available on a mobile handset to play it, such as Voice, SMS and Data, making it a one-of-its-kind Value Added Services (VAS) proposition.

Here are some official Words from :

Reena Rathi, Head-VAS at Aircel:

“VAS is a very interesting space for us at Aircel. While it gives us the opportunity to grow as a company in ways more than one, it also helps us improve many lives. For instance, an Aircel customer knows best and in the simplest of ways what the day ahead for him looks like, because he gets an ‘Astro Buddy’ alert each morning that fills his day with positivity. He isn’t disturbed with phone calls while driving, because he has set his signature caller back ring tone giving that message to the caller. There are so many customers whose lives have transformed after winning bumper prizes such as cars and SUVs in our VAS contests.”

Here is what latest update from telecom sector from Aircel. Stay tuned for more. Thanks for reading, 

Loop In C# Programming With An Example

03:25 Add Comment
In previous article we have seen brief description of conditional statements which are back bone of programming. Here today we will see loop in C# programming and will see it with example. Speaking in layman term loops are used for task that need to perform representatively unless certain condition remains true and stop when that condition becomes false.


In programming languages loops are also important as conditional statements. Let me explain this with an simple example. If I will tell you to write program for printing 1 to 100 without loop statement. It will be very tedious task. Like this there are very different real-time task that need to be performed at that time loops becomes too handy for that.

C# provide following loops to handle different looping requirement:

While Loop: 

While loop is very simple of all. It simply execute the statement until condition becomes false.

Following is Syntax for the same:

while(condition expression)
{
//Statement
}

Let's take very simple example of writing tables of 5. Here the code for the same:

using System;
using System.Collections.Generic;
namespace Type_of_loop
{
    class Person
    {
        static void Main(string[] args)
        { int a=5, b=1,c;//declaration and assignment of variables
            Console.WriteLine("Table Of 5 :");
            while (b<=10)//condition expression
            {
                //statements
                c = a * b;
                Console.WriteLine(a+" X "+b+" = "+c);
                b++;
            }
        }
    }
}
Output of the following code will be:
Table Of 5 :
5 X 1 = 5
5 X 2 = 10
5 X 3 = 15
5 X 4 = 20
5 X 5 = 25
5 X 6 = 30
5 X 7 = 35
5 X 8 = 40
5 X 9 = 45
5 X 10 = 50
Press any key to continue . . .
In above program there are three variables viz a,b and c. Value of variable a is constant "a=5". On the other hand value of b keeps on changing till 10. Both values held by a and b are multiplied and their output is then stored in variable c. We can write a single program in all loop but every loop have their own purpose. Now we will see 

Do........While Loop:

Do while loop is similar to while loop. There is only one difference between while and do..while loop. In While loop there is always first condition is checked and then it entered in to loop. 

Syntax of Do.....While Loop:

do{
//statement
}while(condition expression);
Here notice we end/terminate the do..while loop after while condition.
using System;
using System.Collections.Generic;
namespace Type_of_loop
{
    class Person
    {
        static void Main(string[] args)
        {
            int a = 5;
           do
            {
                Console.WriteLine("This statement will execute only in do...while loop............");
            } while (a > 10) ;
        }
    }
}
On the other hand Do.. While loop one time statement is executed and then condition is checked. I am sure you are confused. So we will take on example:

I will write both program but both will have wrong false value at the first iteration itself.

Example of While Loop:
using System;
using System.Collections.Generic;
namespace Type_of_loop
{
    class Person
    {
        static void Main(string[] args)
        {
            int a = 5;
            while (a>10)
            {
                Console.WriteLine("This statement will not execute............");
            }
        }
    }
}
This program will execute without any error but you will not get anything as output.

Example of Do While Loop:
using System;
using System.Collections.Generic;
namespace Type_of_loop
{
    class Person
    {
        static void Main(string[] args)
        {
            int a = 5;
           do
            {
           Console.WriteLine("This statement will execute only in do...while loop............");            } while (a > 10) ;
        }
    }
}

Output:
This statement will execute only in do...while loop............ 
Here even if the condition is false then too the statement in the body of the loop get executed once. Now let's take same example for this loop is as follows:

using System;
using System.Collections.Generic;
namespace Type_of_loop
{
    class Person
    {
        static void Main(string[] args)
        {
            int a = 5,b=1,c;
           do
            {
                c = a * b;
                Console.WriteLine(a + " X " + b + " = " + c);
                b++;
            } while (b <= 10) ;
        }
    }
}

Output:
5 X 1 = 5
5 X 2 = 10
5 X 3 = 15
5 X 4 = 20
5 X 5 = 25
5 X 6 = 30
5 X 7 = 35
5 X 8 = 40
5 X 9 = 45
5 X 10 = 50
Press any key to continue . . .
For Loop:

This loop is most preferred loop in programming and most easy to write. Let's first see the syntax of the For loop:

Syntax:

for(initialization, condition, increment)
{
//Statement(s);
}
For loop is divided into 3 parts viz. Initialization, Condition, Increment:

for (int b = 1; b <= 10; b++)
  • Initialization:
    When for loop get executed, it first enter into initialization part and it only executed once. This step allow you to declare variable that have only scope in that for loop. In above example when loop started execution then it will first check int b=1; Here we initialize b and assign the value to it. Here semicolon indicate end of initialization phase termination or end of initialization phase
  • Condition:
    In next step it evaluate conditional expression. After the first iteration only Condition and increment phase of loop is checked. Initialization is ignored. In condition evaluated to be true then loop body get executed, or else it will be skipped and control jumps to the net statement. In above example we are checking for value of variable b if it less then or equal to 10 then only it will execute loop body or else it will skip loop and transfer control to next statement.
  • Increment:
    In this phase after checking for condition you can increment or decrement value of variable. Here we are incrementing value of variable b by 1. 
So this way loop iterated though itself until condition becomes false. Let's take that example of table of 5 using for loop:

using System;
using System.Collections.Generic;
namespace Type_of_loop
{
    class Person
    {
        static void Main(string[] args)
        {
            int a = 5,c;
            for (int b = 1; b <= 10; b++)
            {
                c = a * b;
                Console.WriteLine(a + " X " + b + " = " + c);
            }
        }
    }
}
Output:
5 X 1 = 5
5 X 2 = 10
5 X 3 = 15
5 X 4 = 20
5 X 5 = 25
5 X 6 = 30
5 X 7 = 35
5 X 8 = 40
5 X 9 = 45
5 X 10 = 50

So here all are loop provided in C# is explained with example. One foreach loop is remaining but we will see that in detail at later sessions. But when we talk about Loop we need to know some 

Loop Control Statement:

Loop control statements are used for changing th normal execution of the programming sequences of loop. There are two control statement provided by C# as follows:

break statement:

Break statement is used as for throwing control out of the loop. When compiler encounters beak keyword it will transfer control out of loop. Let's take the example we will initialize one variable with value of 1 and we will increment value by 1 each time we will terminate the loop once value of variable is 5 using break statement.
using System;
using System.Collections.Generic;
namespace Type_of_loop
{
    class Person
    {
        static void Main(string[] args)
        {
            int a = 1;
            while (a<10)
            {
                Console.WriteLine("Value of A is "+a);
                a++;
                if (a>5)
                {
                    break;
                }
            }
            Console.WriteLine("This will execute once break statement terminate the loop.....");
        }
    }
}
Output:
Value of A is 1
Value of A is 2
Value of A is 3
Value of A is 4
Value of A is 5
This will execute once break statement terminate the loop.....
continue statement:
 This statement will skip the intimidate next statement then it will pass control back to condition expression. And then it will evaluate. In this example we will increment the value of variable by one and when value of that variable is 5 I don't want to print it. Other then that we will print all the values:

using System;
using System.Collections.Generic;
namespace Type_of_loop
{
    class Person
    {
        static void Main(string[] args)
        {
            int a = 1;
            while (a < 10)
            {
                if (a == 5)
                {
                    a++;
                    continue;
                }
                Console.WriteLine("Value of A is " + a);
                a++;
            }
        }
    }
}

Output:

Value of A is 1
Value of A is 2
Value of A is 3
Value of A is 4
Value of A is 6
Value of A is 7
Value of A is 8
Value of A is 9
Press any key to continue . . . 
Check on the output, value of variable 5 is not printed.  So when it enter in condition when we check a==5 after that it will increment value of a by 1 and then continue statement transfer control directly to loop statement.

Infinite Loop:
There are sometimes condition arises where by mistake we write code such a way that condition expression always remains true then loop will run forever. This kind of loop. For example:

using System;
using System.Collections.Generic;
namespace Type_of_loop
{
    class Person
    {
        static void Main(string[] args)
        {
            int a = 1;
            while (a==1)
            {
                Console.WriteLine("This is infinite loop......");
            }
        }
    }
}
When you execute above code, it will execute forever unless you do not stop it manually.

With this we are all gone through what is loops and what types of loop C# provide. We have also seen what are loop control statement and concept of infinite loop, all of this with an example. Do comment below if you find this article useful or have nay query thanks for reading.

Life at Google House Google’s Mobile-First Product Showcase-India

08:33 Add Comment
On 20 August 2015 Google has open their Google House For Showcase of featured demonstrations of Google’s Search, Maps, Photos, Translate and YouTube apps, as well as appearances from celebrity chef Kunal Kapur, fashion photographer Dabboo Ratnani and Anushka Menon and YouTube comedic sensation Karan Talwar. We are lucky to witness this Google House and their new feature that are showcased in that event and get chance to meet many celebrities from various fields.


We will discus what are new features that Google has unveil in Google House and what this celebrities reviews about it:

  • A hands-on showcase of the new instant translation feature in Google Translate. Recently launched in Hindi,instant translate helps you break through language barriers by instantly translating printed text, like street signs or ingredient lists by opening the app on your phone and pointing your camera at the text. This translation app perform this translation work in real-time while you are using camera.
  • A look at the new Google Photos app which automatically backs up photos and videos across all your devices. With people around the world uploading 1.8 billion photos every day,taking 93 million selfies and more photos being taken every two minutes than the whole of humanity took in the 1800s, it’s just as well that Google Photo offers unlimited, free storage.
    Photography stars Dabboo Ratnani & Anushka Menon:
    For celebrity photographer Dabboo Ratnani, Bollywood is where home is and photography a way of life.
"While photography is a way of life for me, what’s also important is making sure my clientele has easy and early access to the photos I take of them. I’m always on the move so it is important for me to have access to a good photo editor and for me to be able to search through and find a particular photo shoot quickly enough. Google Photos has both of these features easily available to access in terms of a great editor and the cool new Assistant feature. These have become my favourites today!”
         While, Anushka Menon, one of India’s most iconic fashion and beauty photographers:
"Photography is adding a humanistic, versatile & colourful touch to make my work both modern and fresh. I always try to combine aesthetics that combine Indian culture and western fashion codes. My favourite feature is being able to store multiple pictures and not worry about running out of space. I also love that they are chronologically arranged and each of my photo shoot appears as a beautiful Story that I can go back and share with my friends and family.” 
  • An overview of recent Search innovations like faster and lighter search results for people accessing the web from a mobile device with a slow connection like 2G. Voice Search updates to the Google app which has been optimized for English in the Indian accent and in Hindi to make finding answers to your questions faster, easier and more local. As well as some of the latest Google Now updates, which bring you information when and where you want it, before you even have to ask — like a personal assistant. It is really very fast and responsive. It also impressively works with an Indian accent of Eglish and Hindi both.

    All you need to do is changing input voice setting and all done. It will recognize Indian English accent and Hindi flawlessly. Just day OK GOOGLE and it will start listing to your voice command.

    Celebrity chef Kunal Kapur Commenting on his use of Google Search, celebrated chef Kunal Kapur says,
“I travel the world meeting new people, experiencing new cultures and of course, searching for new ingredients and culinary experiences. Sometimes when I travel I don’t even know the name of the ingredients I see in the local markets and Google Image search helps me find out what it is exactly. Another great feature is the abundance of recipes online. I still remember days when I looked through my grandma’s book of recipes. Today, all I do is search online and find a treasure trove of so many recipes sent in by users from their families. And I use Google Now to keep everything organized. It has become my constant companion and has made managing a multi time-zone life much easier while Google Photos helps me archive and share my experiences instantly.”
  •  As well as an overview of recent offline features, like the ability to save Maps for times when you might not have a connection. Or YouTube Offline, which gives you a way to watch videos without chewing through all your data — even when you don’t have a connection. This feature really help while traveling especially long traveling in flights and trains.
          YouTube comedian Karan Talwar As YouTube funny man Karan Talwar explains;
“One of the best things that Google has done for its consumers is providing them the ‘YouTube Offline’ option. This helps my viewers access my videos easily and also helps everyone view their favourite videos anytime, anywhere without a data connection. I myself save a lot of videos offline for viewing to avoid buffering and save time.”

So this is all about what has unviel in Google House and place was awesome. We are feeling great to write this update. If you have any question and update do comment below. Stay tuned for latest update. Thanks for reading.

Crave For The Speed Get Airtel 4G And Check What You Can Do

22:33 Add Comment
We have witness the significant growth in mobile internet. Gone were the days where we used to surf on mobile devices that only show little piece of data and internet connectivity is very slow. After the revolution of mobile internet generation i.e. 2G, 2.5G(Edge), 3G and now 4G. Here we will talk about what you can do with power of 4G which has been launched by Airtel/Airtel 4G in India recently.


Since I am blogger and IT student I can understand the importance of internet. As a blogger I need to stay connected to Social word all the time and as an IT student I need internet even in my smartphone for any situation that demands or where I can find solution online for my problems. Not before so log I was using 3G but that was not sufficient. Let me tell you one situation where 4G has save me:

In IT we used have presentations that has been given on point of demand or at very short notice. I was out of station for some reason and presentation work has been assign by concern faculties at the same time. This presentation need to be presented within short notice of 2 days. I was in rural part of Gujarat so finding cyber cafe there, was really hard and city was far away from that village. I was ready with my presentation just wondering how to present it. At that time I was using 3G on my device. I convenience my professors to allow me for online presentation on Skype. But even in full coverage 3G was not fast enough. There I meet one of my friend he was also tech savvy. He was having Airtel 4G connectivity in his device. Since I was knowing 3G is not fast enough, I took chance to try 4G. Believe me guys presentation on the Skype to my faculties was flawless. This was my first time experience of Airtel 4G and it was impressive.

There is general myth in users that 4G is just increase in download speed. But that is not true. Earlier when we want to upload images or videos on social media from smartphone, either we will wait for Wi-Fi connection or if we upload from mobile data then we keep stuff for upload and leave our smartphone on standby for long time. I also need to upload many images, files, videos and MP3 online for sharing with friends on social media. 4G network has also provide user to even upload their stuff on internet. This help the people like us that have lot of stuff to upload on net.

Even 4G also have benefits for corporate presentations or video conference. If I will be given 4G connectivity I will never have presentation for video conference or presentation. Since 4G provide larger bandwidth to user so whether it is data upload or download it is always much faster than any other type of internet medium. No matter wherever you are you can always be ready for conference call.

Beside corporate world and study aspect there are much more users aspect to consider. Now a days smartphone not only got amazing processing power but also provide high quality camera equipped with them. So video quality is much more clear and you can talk with your live loved once and your friends flawlessly on chatting app that allow video calling like Viber, Line and so on. Not to forgot it also save your calling charges and international calling charges.

My favorite time-pass during traveling is watching videos and listing to online streaming MP3. I was used to get glitches while listening to MP3 online or while watching videos they used to stream in lower resolution. This will spoil your mood sometime. But lightning fast speed I can do this with ease.

For More check out this videos that explains everything:

For any queries comment on below section. Stay tuned for more. Thanks for reading.

Meizu Flagship MX5 Available on Snapdeal For Registration

02:02 Add Comment
On 19 August 2015 in New Delhi Meizu, one of the leading smartphone brands in China today announced its exclusive partnership with India’s largest online marketplace Snapdeal for its flagship model, MX5. The registration for the smartphone will commence at 10:00 am from Wednesday, August 19th, 2015.

About Meizu :

Established in 2003 and headquartered in Zhuhai, China, MEIZU designs and produces smartphones. MEIZU expanded into the smartphone market in 2008 and has been committed to developing high-end smartphones ever since. Based on a business philosophy and commitment to pursuing perfection and long-term development, MEIZU remains laser focused on developing innovative and user-friendly smartphones for consumers. 

With more than 5000 employees and 1800 retail stores, the company has built a global presence in Hong Kong, Israel, Russia and Ukraine, EU, India and other southeast countries.MEIZU phones are characterized by their light, comfortable design with a unique wide screen, premium sound quality, high-definition camera, and simple, elegant user interface, combining performance, ease of use and functionality with the durability needed to survive the human experience. 

Lets movie on to smartphone specification declare by company. They are as follows:

  • AMOLED display, for the better and for future: The display from Samsung comes with amazing specifications and infinite contrast range. It produces more vivid pictures and text is displayed crystal clear.
  • mCharge: Fast charging technology 25% recharged over a cup of coffee The MX5 features mCharge, the world's most sophisticated quick charge technology.
  • mTouch 2.0: New fingerprint sensor makes identification faster and the appearance smoother and elegant.
  • An awesome design: Exquisite all metal body, 12-gun 3D sand blasting, a 5 step anodizing process and superb fine polishing. 
  • Daily experience comes before benchmarks: The Mediatek Helio X10 is a 64-bit octa-core CPU manufactured using the 28nm HPM process.
  • Dual-SIM with dual-standby and dual 4G: Primary 4G SIM-card provides you with high-speed internet, while the second SIM-card provides you with 2G voice calls.
  • 20.7 megapixels camera: Equipped with the camera of 6P lens, which significantly increases its peripheral resolution and laser-aided focussed technology that helps customers to take outstanding photos. 
  • Advanced 64-bit Flyme OS 4.5 Popular Flyme system:  Updates its excellent Flyme 4 to 64-bit Flyme 4.5 for Android with 100+ functional updates. 
Here are official word from Mr.David, Head of Meizu India:
"Our philosophy at Meizu has always been driven by our commitment to delivering innovative and user friendly products,We are glad to partner with Snapdeal for the flagship product MX5 given their connect with the Indian consumers and robust distribution network across India."

And Mr.Tony Navin, Senior Vice President, Partnerships & Strategic Initiatives, Snapdeal
 said:
"We are excited to take Meizu MX5 to consumers across 5000+ cities and towns across India through the Snapdeal platform. This phone is a great addition to our product offerings with its promise of value for every buck spent by the consumers and we are confident that it will be well received by our customers"

So here is what we have received exited news regarding this new launch of company and it's innovative product. If you have nay suggestion or any query do let us know in comment. Will get back to you soon. Stay tuned for more.Thanks for reading.




NNG Forecasts 40% Growth In Revenues For 2015

05:31 Add Comment
NNG, the Hungary-based leading automotive navigation provider realized a growth of 25% YoY in their India operations. They have also forecast a 40% increase in revenues for India in the current financial year ending December 2015 announced in Mumbai, 12 August 2015. This is in line with the tremendous expected growth of the automotive sector in India.

Also Read: Improve Your Health And Balance Your Diet With Sweetness


Some History of NNG India:
NNG develops cutting edge infotainment and navigation software for the global automotive market. The company offers on-board, 3D navigation applications that incorporate connected features and a universal online update portal. NNG’s goal is to make in-car infotainment and navigation easy, fun, safe and integrated through all communication devices for everybody on board. Unique features and advanced technology, combined with a high level of flexibility, enable fast time-to-market at a low cost.

The award winning iGO Navigation Software is currently installed in more than 20 million devices worldwide with over 30 million signed orders from 34 global car brands. NNG continues to strengthen its global footprint through 11 offices around the world, including Hungary, Japan (2x), the United States (3x), Switzerland, Australia, Israel, India, and China.

Also Read :Typical Characteristics Of Mumbaikar That Makes Us Unique Then Others

Now Coming back to the point of growth on NNG This growth is based on the one engine technology the company applies: with the easy adaptability and flexibility of the software NNG can turn its “Navigation for All” strategy into reality – providing navigation solutions tailored for the individual needs and concepts of the OEMs. It is complete with a number of India-specific features to fully accommodate the local market, including local languages. 

Here are some official words Péter Bolesza, Vice President of Eastern Europe and Emerging Markets at NNG said:
“We see tremendous growth potential keeping in mind the expected increase in the number of cars manufactured in India. As it is expected to become one of the top three car manufacturers in the world, we foresee the use and importance of navigation solutions to increase as well as it quickly adapts to the global standards. We are positive and confident in the Indian market and see a bright future ahead for the automotive sector.”
NNG has been present in India since 2011, with their office located in Gurgaon. The company is the proud holder of the Mobility Excellence Award 2014 for “Best Automotive Navigation Provider”, awarded by Mobility India.

Also Read: ASUS Launched New Members in Asus ZenFone Family In ZenFestival

So here is all story rounding up. Just tell us if you opinion in comment section below. Stay tuned for more. Thanks for reading.

C# Conditional Statement: With Example

07:21 Add Comment
Conditional Statements and Loops are most important aspect of any programming language. Every programming language offer same set of conditional structure. IF Statement, IF...ELSE Statement, Nested IF Statement, Switch Statement. Beside this C# also provide loop statement.

Also Read:  Type Conversion Or Type Casting In C# With Examples

Conditional statement control for flow of program based on certain condition. Where as Loop also control program flow but they repeats the programming statement till the condition remains true.

Condition Statement:

First we will start with conditional statements. For understanding this statement you first need to understand basic flow of Conditional statement. Here is basic flow we have tried to explain diagrammatically. 

IF Statement:

If statement is simplest conditional statement that we use in day to day life. Programming becomes easy when we compare this things with real world scenario. We take day to day decision using this type thinking only. 
Example: If I will buy xyz thing then what will be it's cost. If it cost below $20 then only I will buy this thing.

In programming also we need to avoid certain conditions to get fulfill. Here is syntax for simple if statement:
if(boolean_expression)
{
 //this statement will only execute when boolean_expression is true.
}
Let's take above situation and covert it into programming scenario.
using System;
using System.Collections.Generic;
namespace Type_of_if
{
    class Person
    {
        static void Main(string[] args)
        {
            int expense = 10;// You have 20$ at your exposure
            if (expense > 20)// Check if expense is more then 20$ then you can purchase more items
            {
                Console.WriteLine("You cannot buy more..........");
            }
            Console.WriteLine("You can buy more..........");
        }
    }
}

Output:

 You can buy more..........

In above example class person act as real person that is in supermarket and have amount of 20$ to spend for his daily needs. In this if condition, person check for expense variable every time he buy any item i.e. total sum is less then $20 if it more then that then he will not buy. If you change value of variable expense to greater then 20 say 22 then will show you output as:

You cannot buy more..........

IF.......ELSE Statement:

In above example we have only evaluated one condition. If this... but in real life situation we always check for if not this........ then that. Suppose that person need some more cash for buying more stuff but have used his entire $20 amount. Then what to do? Everyone have debit card with us now days. So if person runs out of money then So this condition in above condition can be integrated as follows:

using System;
using System.Collections.Generic;

namespace Type_of_if
{
    class Person
    {
        static void Main(string[] args)
        {
            int expense = 22;// This is your expense

            if (expense < 20)// Check if expense is less then 20$ then you can purchase more items
            {
                Console.WriteLine("You have still money left...........");
            }
            else// if expense is more then $20 then you can use debit card
            {
                Console.WriteLine("You have to use debit card now.....");
            }
        }
    }
}

Output
You have to use debit card now.....

IF.......ELSE....IF

In above condition if person have more then two choices to make then we can use IF.....ELSE....IF. It is also known as IF...ELSE ladder. Let's say person have $20 cash and debit card and vouchers for the specific store, where is is doing shopping. Then his preference will be if amount is less then $20 then spend $20 if less then $ 30 voucher worth of $30 and still if bill is more then that but less then $50 he will use debit card having balance $50. But we always make our case safe. So if amount is more then $50 will say you have to use two option combine.

Here is programmatic implementation of above condition:

using System;
using System.Collections.Generic;
namespace Type_of_if
{
    class Person
    {
        static void Main(string[] args)
        {
            int expense = 15;// This is your expense
            if (expense < 20)// Check if expense is less then 20$ then you can purchase more items
            {
                Console.WriteLine("You have used money ...........");
             
            }
            else if(expense <30)
            {
                Console.WriteLine("You vouchers are used ");
             
            }
            else if(expense < 50)
            {
                Console.WriteLine("You have used your debit card....... ");
            }
            else
            {
                Console.WriteLine("You have to use all of them..... ");
            }
        }
    }
}

Also Read: C# Data Type In Detail

SWITCH Statement: 

Switch statement also work like if...else..if statement that we saw above. You can also write the above program using switch statement. But I'll take different example this time. We all know grading system in school that we used to get out exam score. Will write simple program in Switch case for the same.

First you need to learn basic syntax for switch statement :

switch(expression) {
   case constant-expression  :
      statement;
      break;
   case constant-expression  :
      statement(s);
      break;
   default :
   statement(s);
}

Program is as follows:
using System;
using System.Collections.Generic;
namespace Type_of_if
{
    class Person
    {
        static void Main(string[] args)
        {
            char result;
            Console.WriteLine("Enter Your Grade from A OR B OR C OR D OR F");
            result = Convert.ToChar(Console.ReadLine());
         
            switch (result)
            {
                case 'A':
                    Console.WriteLine("You have got 75% and above");
                    break;
                case 'B':
                    Console.WriteLine("You have got less then 75% ");
                    break;
                case 'C':
                    Console.WriteLine("You have got 60% and above");
                    break;
                case 'D':
                    Console.WriteLine("You have got less then 60% and above");
                    break;
                case 'F':
                    Console.WriteLine("Better Luck Next Time");
                    break;
                default:
                    Console.WriteLine("Invalid input");
                    break;
            }
        }
    }
}
The program is self explanatory. But you need to know if you input alphabet small or any other then A OR B OR C OR D OR F you will get out put as invalid input. Hence we can say switch case is case sensitive. You can run it and check by your self. 

The?:operator OR Ternary operator:

This is popularly known as ternary operator. It can be used in place of IF..... ELSE statement. It works same as IF... ELSE. 

Syntax:

Exp1 ? Exp2 : Exp3;


In this operator ? is conditional operator. And expression one is evaluated as boolean expression. Let's see simple example.
using System;
using System.Collections.Generic;
namespace Type_of_if
{
    class Person
    {
        static void Main(string[] args)
        {
            int a = 10;
            string classfy;
            classfy = (a > 0) ? "positive" : "Negative";
            Console.WriteLine("Variable A is classify as "+classfy+" number");
        }
    }
}

Output:
Variable A is classify as positive number
In above example we have just classify if variable a having value 10 is positive or negative.

So here all conditional operators/ statements are explained with example. We are trying out best to make you understand program in laymen term. If you still have any doubt or any query feel free to comment below. Thanks fro reading.

ASUS Launched New Members in Asus ZenFone Family In ZenFestival

08:10 Add Comment
Yesterday Asus have celebrated their Zenfestival in Delhi-India. We are also invited by Asus to be a part of this. ASUS Chairman Jonney Shih today announced the pricing and availability of ZenFone 2 Deluxe, ZenFone 2 Laser, ZenFone Selfie, ASUS ZenPad 7.0 and ASUS ZenPad 8.0 for users in India, at an exclusive ZenFestival event held at the Jawaharlal Nehru Stadium in New Delhi, India.


The event opened with an exhilarating performance featuring flying drummers, after which Mr. Shih took the stage along with ASUS Design Center Director, Jen Chuang, to make the announcements.
“We are very excited to bring our latest ZenFone models and all-new ZenPad Series to the Indian market,” said Mr. Shih. “These brand-new innovations are each an empowering luxury that strikes the perfect balance of beauty, functionality and performance, and offers Indian consumers a premium user experience tailored to their individual mobile needs.”

Asus has introduced 3 family member to their ZenFone family viz.  

ZenFone 2 Deluxe: See the crystal miracle

ZenFone 2 Deluxe also known as ZE551ML delivers powerful all-round performance and beauty.ZenFone 2 Deluxe features a 5.5-inch Full HD IPS display with anti-scratch Gorilla Glass 3. ZenFone also provide 13MP rear camera with f/2.0 5 element lens with dual tone LED flash. 5 MP PixelMaster cameras provide 85 dgree wide angle and 140 degree selfie panorama support. Asus ZenFone 2 Dulax have 2.3GHz 64-bit Intel Atom processor with 4GB RAM and Dual SIM 4G/LTE connectivity. ZenFone 2 Deluxe also features ASUSBoostMaster fast-charge technology for 60% capacity in just 39 minutes. As with all other ZenFone 2 models, ZenFone 2 Deluxe includes the latest ASUS ZenUI — the world’s first fully-customizable mobile interface — and Trend Micro™ security software for safe web browsing. Zenfone 2 deluxe starts from - INR 22999/-

ZenFone 2 Laser: See at the speed of light

ZenFone 2 Laser models all benefit from a powerful 13MP PixelMaster camera with an f/2.0 wide-aperture lens to capture stunning, High-resolution photos with zero shutter lag augmented by laser auto-focus technology that empowers users to capture perfect clarity in just 0.3 seconds. Available in 5-inch (ZE500KL), 5.5-inch (ZE550KL) and 6.0-inch (ZE601KL) versions with up to 1920 x 1080-pixel Full HD resolution, ZenFone 2 Laser also incorporates the latest and toughest Corning Gorilla Glass 4. It boasts an up to 1.5GHz octa-core 64-bit Qualcomm Snapdragon 615 processor with adreno 306 GPU. It also provide RAM up to 3GB of fast memory for unwavering performance. 
Zenfone laser 6 inch - starting from Rs 17999, 
With audio cover - Rs. 17999 and 
Zenfone laser 5.5 inch - ze550kl - 2gbram/ 16Gb 9999, 
3Gb ram/ 16Gb - 13999.

ZenFone Selfie: See the perfect you

ZenFone Selfie also known as ZD551KL, Asus ZenFone comes with dual 13MP PixelMaster cameras, dual-color, dual-LED Real Tone flash both front and rear, plus laser auto-focus for ultra-fast shots with complete clarity.
ZenFone Selfie’s Ergonomic Arc design and intuitive rear key makes capturing selfies easier than ever, with live digital cosmetics to apply some magical glamor — all enjoyed instantly on the stunning 5.5-in Full HD display.
ZenFone Selfie’s exceptional front-facing PixelMaster camera has a huge 13MP resolution and an f/2.2-aperture, 88-degree wide-angle lens to capture more of every smile. The unique Selfie Panorama mode enables selfies with an outlook of up to 140 degrees, so everything and everyone becomes part of the shot.
This smartphone introduce by Bollywood star hot beauty Sonakshi Sinha. It was lot of fun and enjoyment.
ZenFone Selfie’s rear camera is just as advanced, with a large f/2.0 aperture lens for superior low-light shots. Both cameras are engineered with five-prism Largan lenses and top-quality Toshiba sensors, and include dual-LED Real Tone flash technology for perfect illumination in any lighting conditions. ZenFone Selfie also delivers superb macro photography that works on subjects as close as 6cm, plus rear laser auto-focus to compose shots in the blink of an eye. Zenfone selfie - 15999.

ZenFone Max: See for longer


The highlight of the new ZenFone Max also known as ZC550KL is its incredibly-long-lasting high-capacity 5000mAh lithium-polymer battery that gives users an unprecedented amount of mobile freedom.
ZenFone Max has a bright and clear 5.5-inch IPS display with wide viewing angles, protected by the latest Corning Gorilla Glass 4 for unrivalled scratch-resistance, strength and everyday durability. At the heart of ZenFone Max is a powerful yet power-efficient 64-bit Qualcomm Snapdragon 410 processor with up to 2GB of RAM. ZenFone Max features a 13MP/5MP PixelMaster cameras with a wide f/2.0 aperture, and the rear camera also boasts laser auto-focus for sharp, near-instant shots.

AVAILABILITY

ASUS ZenFone 2 Deluxe, ZenFone Selfie, ZenFone 2 Laser will be available from August, 2015 in India for online purchase through Flipkart, ASUS Exclusive stores and authorized retailers.

So here we are providing you guys and exclusive updates regarding ZenFestival. If you have any query do post in comment section below. Stay tuned fro latest updates. thanks fro reading.