Category: Uncategorized


online

From september 15 onwards the tamilnadu employment exchanges around tamilnadu are centralized using a online service. Even though there are 32 employment exchange in tamilnadu only 4 of them are capable of doing all the process like registration, renewal and updation. The office in tharamani, chennai is the only place we can register your Engg or Diploma certificated to get some internship in any of the government organization like BSNL.

Previously people need to register or renew need to wait for long time and visit the office in person to get the job done. And the number of people registering increasing every annual states result time. In order to minimize the time and to make the work ease the government now provide the online service to register, renewal and updation. Following is the link for that.

http://www.tnvelaivaaippu.gov.in/EmploymentExchange/login/loginFrame.jsp

Here are some simple code to display various diamond shape in C sharp console application. The diamond shape display challenges you in usage of for loop. First the very simple one display a half triangle shape like.

*
**
***
****
*****

for this we need to use nested for loop and the first loop take care of the vertical limits and the second loop take care of the horizontal lines.
eg:

for (int i = 0; i <= 5; i++)
{
for (int j=0; j = 0; i–)
{
for (int j = 0; j <= i; j++)
{
Console.Write("*");
}
Console.WriteLine();
}

this will output as follows

*****
****
***
**
*

Finally the complete diamond shape like as follows
*
**
****
******
********
**********
*************
***********
*********
*******
*****
***
*

the code is simple though
1) first we need to specify an empty string to track of the spaces
2) a for loop to track of the vertical axis
3) second for loop to add the space to the string
4) third for loop just add a * after that space to the string

by this four steps we get the first half of the diamond
by reversing this one back we will get the next part of the diamond

source:

String line = "";
for (int i = 0; i < 7; i++)
{
line = "";
for (int j = 0; j < 7 – i; j++)
{
line = line + " ";
}
for (int k = 0; k = 0; i–)
{
line = “”;
for (int j = 0; j < 7 – i; j++)
{
line = line + " ";
}
for (int k = 0; k < 1 + i * 2; k++)
{
line = line + "*";
}
Console.WriteLine(line);
}

And if you have any queries please comment me…Thank you for viewing this post.

Scientific experts from around the world are genuinely predicting that five years from now, all life on Earth could well finish. Some are saying it’ll be humans that set it off. Others believe that a natural phenomenon will be the cause. And the religious folks are saying it’ll be God himself who presses the stop button.

1. Mayan Calendar
The first mob to predict 2012 as the end of the world were the Mayans, a bloodthirsty race that were good at two things:
Building highly accurate astrological equipment out of stone and Sacrificing Virgins.

Thousands of years ago they managed to calculate the length of the lunar moon as 329.53020 days, only 34 seconds out. The Mayan calendar predicts that the Earth will end on December 21, 2012. Given that they were pretty close to the mark with the lunar cycle, it’s likely they’ve got the end of the world right as well.

2. Sun Storms
Solar experts from around the world monitoring the sun have made a startling discovery: our sun is in a bit of strife. The energy output of the sun is, like most things in nature, cyclic, and it’s supposed to be in the middle of a period of relative stability. However, recent solar storms have been bombarding the Earth with so much radiation energy, it’s been knocking out power grids and destroying satellites. This activity is predicted to get worse, and calculations suggest it’ll reach its deadly peak sometime in 2012

3. The Atom Smasher
Scientists in Europe have been building the world’s largest particle accelerator. Basically its a 27km tunnel designed to smash atoms together to find out what makes the Universe tick. However, the mega-gadget has caused serious concern, with some scientists suggesting that it’s properly even a bad idea to turn it on in the first place. They’re predicting all manner of deadly results, including mini black holes. So when this machine is fired up for its first serious experiment in 2012, the world could be crushed into a super-dense blob the size of a basketball.

4. The Bible says…
If having scientists warning us about the end of the world isn’t bad enough,religious folks are getting in on the act as well. Interpretations of the Christian Bible reveal that the date for Armageddon, the final battle between Good an Evil, has been set down for 2012. The I Ching, also known as the Chinese book of Changes, says the same thing, as do various sections of the Hindu teachings.

Click for more exciting facts

2012

We were warned

What about your guess guys? Do you think the world has an end ? Do you fear of world disaster ? Already many questions like this arise in many peoples mind because of the film 2012 which portrait the end of the Mayan Long Count calendar cycle. The film is completed its shooting and ready to go on roll from November 13. The director of the movie is already doing such movies some 5 years back who is Roland Emmerich. He already directed some huge budget film like Independence day, 10,000 BC,Godzilla and Day after tomorrow.

The Buzz around the Indian market is will this make a mark like Titanic and the film that follows them. Because its take many years that a Hollywood movie getting a warm welcome like this and filling Box office.

The special thing about the movie is that the trailer released recently itself speak about how the movie will be. It show some extraordinary CG works like destruction of Los Angele’s, Brazil’s tall statue and sinking of a big ship wreck.

Trailer :

First Day

This is the first day am blogging. I create this blog to share my knowledge.

Follow

Get every new post delivered to your Inbox.