Wednesday 30 January 2013

Experiences In Hyderabad

        We are students of M.C.A. final yr (6th Semester) studied in 'G.H.Raisoni of Information Technology' in Nagpur (Maharashtra). After we finished our 5th semester we often wondered in which place we would get a chance to do our 6th Semester Live Project. We always had a very keen interest to come to Hyderabad because it is known as a good I.T. city where one could learn and start a career in a professional field. We tried with Inforica and now we are very lucky that we were able to get a chance to work with Inforica and probably we have taken "THE FIRST STEP TOWARDS THE CORPORATE WORLD".
      The Experiences in Hyderabad so far has been quite good. The hostel is good, with North-Indian food sometimes, good room-mates particularly who know Hindi and English because we don't know Telugu.. We haven't yet gone anywhere accept the company so we yet don't know much about Hyderabad. Hopefully after 6 months when we will go back to Nagpur we would have learned a lot and we will work hard and will surely make our decision of coming to Hyderabad a great success.

Experiences With Inforica






Since we are doing our Internship with Inforica, I would like to share about Inforica.

About INFORICA

Operating since 2000, Inforica is one of the leading Integration and Professional services firms in Canada. With a team of over 100 highly experienced professionals, is offering the capabilities of a large firm and the entrepreneurial zeal of a start-up.
There value proposition is simple – They offer deep capability with a track record of 100% project success at highly competitive prices. They have extensive business and technical experience with Fortune 500 clients across diverse industries. Inforica focuses on the following Enterprise Solutions.
Business Communications Management
Provides an advanced, all-IP communication solution for multichannel contact centers and contact-intensive, multisite organizations. Here are some of the areas they cover:

1.Contact Centre Solutions - A communications platform should make your contact center a service powerhouse.
2.IP Telephony Solutions - support voice over IP (VoIP), open standards like SIP, mobile workers and the unified voice and data communications business now demands.
3.Communications Based Process Automation - Processes are what make organizations tick. Some processes are horizontal (apply to all-types of organizations) and some are vertical (industry‐specific) in nature.
4.Process Automations - Focuses on delivering Business Process Automation through real-time data acquisition, process monitoring and reporting for the Healthcare, Hospitality, Campus and Energy and Facility Management Solutions.
Enterprise Resource Planning
5.PeopleSoft
6.Microsoft Dynamics AX

CRM Solutions
CRM is an integrated approach to acquiring, retaining and deepening customer relationships.CRM enables organizations to leverage the value of every customer interaction.

Business Intelligence Solutions
There Business Intelligence practice focuses on Reporting and Data Warehousing. Working with industry-leading technologies their solutions can help you achieve business intelligence objectives.

Industry Solutions
Energy Management - focuses on delivering holistic solutions to effectively and efficiently monitor and manage in real time energy and utilities consumption within a single or multiple dwelling units.

HealthCare Solutions- Delivering integrated communications that optimizes workflow, decreases cost-of-care and leverages investment in current systems.

Education Solutions - Delivering web based hosted Elementary report card solutions, Web portals for schools and Student Information
Systems

Global Sourcing
Ifusion -Designed from the ground up, iFusion™ offers you the best of both worlds by combining the immediacy and trust of a local consulting partner with tangible cost savings (30%—40%) of an offshore development model.

WHAT INFORICA DOES

Business Intelligence Solutions
Business Communications Management
Business Process Outsourcing
CRM Solutions
Enterprise Resource Planning
Global Sourcing

So it was all about Inforica, now I would like to share some of our Experiences from the first day of Internship.
At the beginning we were quite afraid to join here for a Live Project but at the same time we were excited to come to Hyderabad and found ourselves lucky to join a company like Inforica. It was a pleasure to join here. From the first day we learnt a lot from Sudeep (our Guide). He is very kind and a Good coach. Now it’s been one week and we probably got habitual to this environment. And believe me it’s a Great feeling for a fresher’s like us TO ENTER TO A CORPORATE WORLD with such a great Company.

Monday 28 January 2013



// Write a program to print the area of a circle.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace areaofcircle
{
    class Program
    {
        static void Main(string[] args)
        {
            int r;
            double a, p;
            p = 3.14;
            Console.WriteLine("Enter the value of radius");
            r = Convert.ToInt32(Console.ReadLine());
            a = p * r * r;
            Console.WriteLine("area" + a);
            Console.ReadLine();

        }
    }
}


// Write a program to print the fibonacci series

using System
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace fibo
{
    class Program
    {
        static void Main(string[] args)
        {
            int n, i, pre = 0;
            int next = 1;
            Console.WriteLine("Enter the value of n:  ");
            n = Convert.ToInt32(Console.ReadLine());
            for (i = 2; i <= n; i++)
            {
                int a = pre + next;
                Console.WriteLine(" " + a);
                pre = next;
                next = a;
            }
            Console.ReadKey();
            }
        }
    }


// Write a program to print the table of a number

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Table
{
    class Program
    {
        static void Main(string[] args)
        {
            int i,a,n;
            Console.WriteLine("Enter the number");
            n= Convert.ToInt32(Console.ReadLine());
            for(i=1;i<= 10;i++)
            {
                a=n*i;
                Console.WriteLine(a);
            }
            Console.ReadKey();
        }
    }
}

Its all About HARD WORK and PASSION !!


Today we all had a meeting with Sudeep, he discussed very Good and Inspiring thoughts with us like, How to do a better programming ?How to make our self a Good Programmer ? etc. The most important of all he spoke about the HARD WORK. Sudeep said ' To be a good Programmer u need to do a lot of Hard work and need to Fall in love with the Programming'. Apart from this he shared many other thoughts that surely going to Groom us in the upcoming months, if ll do the hard work.


// Write a program that prints

//*
//**
//***
//****

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication5
{
    class Program
    {
        static void Main(string[] args)
        {
            for (int i = 1; i <= 4; i++)
            {
              
                for (int j = 1; j <= i; j++)
                {
                    Console.Write("*");
                }

                Console.WriteLine();
            }
            Console.ReadKey();
        }
    }
}


// Write a program to take as input your name and print “Hello name”.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            
            string name = string.Empty;
            Console.WriteLine("Enter your Name:");
            name = Console.ReadLine();
            Console.Clear();
            Console.Write("\n");
            Console.WriteLine("Hello " + name);
            Console.ReadKey();
        }  
    }
}

// Write a program to find out m % n without using the % operator.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace prog7
{
    class Program
    {
        static void Main(string[] args)
         {
            int n = 0, m = 0, def=0;
 
            Console.WriteLine("Enter M value");
 
            m = int.Parse(Console.ReadLine());
            Console.WriteLine("Enter Nvalue");
            n = int.Parse(Console.ReadLine());
            if (n == 1)
                Console.WriteLine("Result   " +def);
            else
            {
                while (m > 1)
                {
                    m = m - n;
                    //Once it meet such a condition that m become lesser then n that's mean now we can't devide m number through n
                    if (m < n)
                        break;
                }
 
                //Moving to the next line 
                Console.WriteLine();
 
                //Printing the biggest number from n number 
                Console.WriteLine(" Result: " + m);
 
            }
 
            //Waiting for any keypress 
            Console.ReadKey();
        }
       }
     }

// Write a program to find out m / n without using the / operator
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace prog6
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = 0, m = 0, d = 0;
            Console.WriteLine("Enter M value");
            m = int.Parse(Console.ReadLine());
            Console.WriteLine("Enter Nvalue");
            n = int.Parse(Console.ReadLine());
            if (n == 1)
                Console.WriteLine("Result" + m);
            else
            {
                while (m > 1)
                {
                    m = m - n;
                    d++;
                }
                //Moving to the next line 
                Console.WriteLine();
                //Waiting for any keypress 
                Console.ReadKey();

            }
        }
    }
}

// Write the programs to print the even numbers between 1 to 100. 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace evennum
{
    class Program
    {
        static void Main(string[] args)
        {
            int n ;
            {
                Console.WriteLine("the even numbers between 1 to 100 are :");
                for (n = 1; n <= 100; n++)
                    if(n%2==0)
                    //while (n <= 100)
              
                Console.WriteLine(n);
                Console.ReadKey();
             }
        }
    }
}

Sunday 27 January 2013


//Write a program to find the biggest number in n numbers without using arrays.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace biggestnumber
{
    class Program
    {
        static void Main(string[] args)
       {
            int ntimes = 0,biggest_number=0,num=0;
            Console.Write("How many times you want to enter the number : ");
            ntimes = int.Parse(Console.ReadLine());
            for (int i = 1; i <= ntimes; i++)
            {
                Console.Write("Enter {0} Number    ",i);
                num = int.Parse(Console.ReadLine());
                    if (biggest_number< num)
                    biggest_number = num;
            }
            Console.WriteLine();
            Console.WriteLine("The biggest Number : " + biggest_number);
           Console.ReadKey();
        } } }

//Write a program to take as input a number n and find the sum of all numbers from 1 to n.
//Eg. If input is 6 then output should be 1+2+3+4+5+6 = 21 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace addtwonos
{
    class Program
    {
       
        static void Main(string[] args)
        {
            int n = 0, total = 0, temp = 0;
            Console.Write("Enter the n number :  ");
            n = int.Parse(Console.ReadLine());

            for (int i = 1; i <= n; i++)
            {
                Console.Write("Enter the {0} number ", i);
                temp = int.Parse(Console.ReadLine());

                total = total + temp;
            }

            Console.WriteLine("The total of a number u entered is : " + total);
            //total = Int32.Parse(Console.ReadLine());
            Console.ReadKey();
        }
    }
}

Friday 25 January 2013

Busy day....


Today it was quite a busy day for me. I did some basic programs with the help of mindqjobs.com site.
Practising basic programs has now become a regular activity for me.Since m in a training period i need to go on learning and try new things. The other half day i kept myself busy in watching educational videos and learn something interesting like Web Services.

Thursday 24 January 2013

Now I have started watching the videos to learn the basics of visual studio.net. However it will take time to master programming. I have also performed some basic c# programs today. My day was better than yesterday,felt relaxed, and also learn quite a bit.

End of the day !!

Today it was quite hectic day watching educational videos and doing the basic programs. There are so many videos m confused about which video should i watch as a fresher/beginner.

Today's task...

Our four task for today are

!. To create a spread sheet
2. To post something on the blog.
3. To perform at least 25 basic c# programs.
4. To watch the educational videos to learn visual studio.net

Out of these these first two task are already completed and now we will do the remaining two by the end of the day.

Wednesday 23 January 2013

Visit to the site www.mindqjobs.com

Before completing today's task, just sharing a tasks of day before today's job. Sudeep told to visit the site www.mindqjobs its a site for Job seekers and also has other features like online videos and other study material that would probably grab the attention of the people. You just need to Register yourself then anyone can the advantage of it.
I did the same, created my own log in ID and jotted down the Five good and Five bad things about the Site.

5 Good things about the MindQJobs.

1. A Very good site for the Job seekers.
2. It also gives the benefits of E-learning, Downloads and Problem solution which makes the task easier.
3.This site also provide other benefits such as one can track the progress, compare evaluation and analyse his/her performance which other sites usually don't provide.
4. Once you register with MindQjobs it also provide various online courses related to MBA, Soft Skills, Technical etc that will probably helpful.
5. Provide good guidance in building the resume and sharing it  and also gives different pattern that will display the content of your resume in a standardized manner.

5 Bad things about the MindQJobs.

1. Free Registration is complicated.
2. Takes time for a new member to register himself/herself with the MindQjobs (the new user face the problem for getting the password through mail)
3. Unless you are not a registered member of this website, it doesn't work, only it ll show the contents.You cannot fetch the other benefits that a registered member gets.
4. In the Discuss Queries section, the contents are not seeing properly, the contents are overlapped with each other that makes the reading difficult.
5. There should be a "Help" section after the Home-Learn-Features-Discuss so that the user ll instantly get the help regarding there doubts.


Just Do It !!

Today, the second day of my training period !! Feeling quite comfortable than the first day.
Got the 4 tasks to complete today. Lets see how much time it will take to complete the job.