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:
.jpg)
Sir,all Question are almost done but Fibboniacci Series & factorial are not
ReplyDeleteOk i will soon share the solutions to your problems...
DeleteFIBONACCI SERIES FOR C#
Deleteusing 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;
}
}
}
Q - enter a no. from 1 to 7 and display the corresponding day of the week
ReplyDeleteQ- 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