Friday, 27 December 2013

NIIT


Hello NIIT Students , Welcome you all in my blog named Tech Showcase ....

Students as we all know NIIT provides so many courses which covers so many technologies which are at glance in the market , but it is quite difficult to learn all without the help of your faculties.

And  the important fact is you have to understand these technologies in a very fast mode to compete with the other students and boost up your knowledge to make yourself fit for the market.

If we want to learn any new technology may it comes in your syllabus or not ,we often try to collect more data from other modes like purchasing various books from market ,through internet and from any other knowledgeable persons and make ourselves understandable and satisfied . These all ways are not wrong but you will have to spend two very important things of yours  Money and Time for a long and both are very precious for all.

Students ... this blog is made to provide you the very friendly platform for learning the Technologies in a short time ... just follow the way and learn the concepts in a very simple methodologies..

This Blog will provide you the pictures as well as  recorded videos  to assist you in any way and very important fact is 'I WELCOME YOUR IDEAS ALSO' ...  Yes in case you have something interesting  ideas and thoughts regarding the topic then you can also share through comments .... You are welcome for that....

I have divided the technologies with  different posts and links and tried my best to make you understand or in case you do not get then can comment and send mail for that but this is exception case for me..

LETS START THE JOURNEY OF TECHNOLOGIES...

WISH YOU ALL THE BEST..

Follow the links below for your technology:

1.SQL Server 2012

2.LBEPS

3.Microsoft Office 2010

4.HTML5

5.OOPS Using C#

6.Window Store App Development using XAML and C#

7.Data Structure and Algorithm

8. C Programming  

9.OOPS using C++

10.PHP and MYSQL

11.OOPS using Java

12.Microsoft Office 2013



4 comments:

  1. Sir,all Question are almost done but Fibboniacci Series & factorial are not

    ReplyDelete
    Replies
    1. Ok i will soon share the solutions to your problems...

      Delete
    2. FIBONACCI SERIES FOR C#


      using System;
      class fibonacci
      {
      public static void Main()
      {
      int n1;
      int n2;
      n1 = n2 = 1;
      Console.WriteLine("{0}", n1);
      while (n2 < 200)
      {
      Console.WriteLine(n2);
      n2 += n1;
      n1 = n2 - n1;

      }
      }
      }

      Delete
  2. Q - enter a no. from 1 to 7 and display the corresponding day of the week
    Q- accept two no. and any one of the following character + - * or / based on the character entered the no. should be + - * or / and the result should be displayed ... are not completed

    ReplyDelete