Recent Posts

Showing posts with label Exclusive. Show all posts
Showing posts with label Exclusive. Show all posts

Wednesday, 21 December 2011

‘DAM 999′ songs in Oscar race,‘DAM 999′ songs Enters in Oscar race, 'DAM 999', its three songs in Oscar race, Bollywood Movie DAM 999 Songs

‘DAM 999′ songs in Oscar race,‘DAM 999′ songs Enters in Oscar race, 'DAM 999', its three songs in Oscar race, Bollywood Movie DAM 999 Songs

Three songs from Indian film DAM 999 are among 39 shortlisted numbers in contention for nominations in the Original Song category for the 84th Academy Awards.

The list was announced by the Academy of Motion Picture Arts and Sciences on its official website.

‘Dakkanaga Dugu Dugu’, ‘DAM999 Theme Song’ and ‘Mujhe Chhod Ke’ are the three songs from DAM 999 that are vying for a place in the final nomination list for the category.

International films Rio and The Muppets are the only other films with three songs each in the list.

The Academy will screen clips featuring each song, in random order, for voting members of the music branch in Los Angeles on January 5, 2012. Following the screenings, members will determine the nominees by an averaged point system of voting.

Under Academy rules, a maximum of two songs may be nominated from any one film.

The final 84th Academy Awards nominations will be announced on January 24, 2012, at the Samuel Goldwyn Theater.




Saturday, 17 December 2011

Sachin Tendulkar, Dhyan Chand now eligible for Bharat Ratna

Sachin Tendulkar, Dhyan Chand now eligible for Bharat Ratna

New Delhi: Sports heroes Sachin Tendulkar and Dhyan Chand are now eligible for the Bharat Ratna as the government has changed the eligibility criteria for the Bharat Ratna to widen its scope.

The Bharat Ratna category has been broadened and excellence in all fields of human endeavour is the new eligibility norm.

The Prime Minister’s Office has accepted the Ministry of Home Affairs’ recommendation of broad basing the Bharat Ratna category.

The change in rules came at the behest of the Sports Ministry.

The country’s highest civilian award was initially restricted to fields such as Art, Literature, Science and Public Service.

Reacting to the government’s move, Sports Minister Ajay Maken tweeted, “Bharat Ratna for any sportsperson would be a big big day for Indian Sports!”

The Home Ministry had spoken to the Prime Minister’s Office recommending that sports be made a category for conferring the Bharat Ratna.

It’s not just Sachin Tendulkar but even our politicians who are hoping to hit a sixer. The demand for a Bharat Ratna for Sachin is becoming louder and now government sources say that it could be a matter of time before he gets the nation’s highest award.

Maken had recently written to the Home Ministry pushing for Bharat Ratna for cricketer Sachin Tendulkar after calls came from several quarters to felicitate the master blaster.

Sachin’s name for Bharat Ratna started doing the rounds just before the world cup 2011 but it was felt that it would be too early to give it to him. And also with only arts, literature and public service as criteria, a sportsman would not find place. Ajay Maken had then pushed for a sports category.

Former Olympians Leslie Claudius and Gurbax Singh had also said that they feel the legendary Dhyan Chand did not get his due in India and demanded a joint Bharat Ratna for the Hockey wizard, along with champion cricketer Sachin Tendulkar.

“It is true that Dhyanchand did not get his dues in the country but that’s how Hockey administration is in India. It is regretful,” Leslie Claudius, who is a three-time Olympic gold medalist (London 1948, Helsinki 1952 and Melbourne 1956) had said.

He was also the member of silver medal winning Indian team at Rome Olympic in 1960. He was in the national team when Dhyanchand was coach in 1959.

PTI

Friday, 16 December 2011

Indian Batsmen Sachine, Laxman,rohit shine in tour

Canberra: Sachin Tendulkar (92), VVS Laxman (57) and Rohit Sharma (56) all got valuable time in the middle as India’ two-day practice match against Cricket Australia Chairman’s XI at the Manuka Oval ended in a draw. India were 320/4 at the the end of the second day’s play. Tendulkar retired 92 and VVS Laxman got retired hurt on 57 while in-form Rohit Sharma was not out on 56 when the stumps were drawn.
Jake Haberfield picked up the early wicket of opener Ajinkya Rahane for just three, Gautam Gambhir was dismissed by Glenn Maxwell for a 63-ball 35 that also included six boundaries, while stand-in skipper Rahul Dravid fell soon after lunch, caught by Peter George at mid-on off the bowling of Cameron Boyce for 45.
However, Tendulkar stayed on at the other end and steadied the innings with a 133-run partnership with Laxman.
Earlier on Thursday, Tom Cooper and Wes Robinson scored centuries and shared a 226-run partnership to lift the Australian invitational XI to 398 for six declared on a docile pitch after Dravid won the toss and elected to field.
Cooper’s unbeaten 182 contained 24 boundaries and three sixes, while Robinson’s 143 featured six big sixes – including five off test hopeful Pragyan Ojha.
India are using the two- and three-day matches in Canberra to prepare for the four-Test series against Australia starting December 26.
Src: IBN

Thursday, 15 December 2011

Top 20 Important C Language Programs, with explanation


Fibonacci series: Any number in the series is obtained by adding the previous two numbers of the series.
Let f(n) be n'th term.
f(0)=0;
f(1)=1;
f(n)=f(n-1)+f(n-2); (for n>=2)
Series is as follows
011
(1+0)
2 (1+1)
3 (1+2)
5 (2+3)
8 (3+5)
13 (5+8)
21 (8+13)
34 (13+21)
...and so on
Program: to generate Fibonacci Series(10 terms)
#include<stdio.h>
int main() {
//array fib stores numbers of fibonacci series
int i, fib[25];
//initialized first element to 0
fib[0] = 0;
//initialized second element to 1
fib[1] = 1;
//loop to generate ten elements
for (i = 2; i < 10; i++) {
//i'th element of series is equal to the sum of i-1'th element and i-2'th element.
fib[i] = fib[i - 1] + fib[i - 2];
}
printf("The fibonacci series is as follows \n");
//print all numbers in the series
for (i = 0; i < 10; i++) {
printf("%d \n", fib[i]);
}
return 0;
}
Output:
The fibonacci series is as follows
01123581
3
21
34
Explanation:
The first two elements are initialized to 0, 1 respectively. Other elements in the series are generated by looping
and adding previous two numbes. These numbers are stored in an array and ten elements of the series are
printed as output.


Generally when we use printf("") statement, we have to use a semicolon at the end. If printf is used inside an if
condition, semicolon can be avoided.
Program: Program to print some thing with out using semicolon(;)
#include <stdio.h>
int main() {
//printf returns the length of string being printed
if (printf("Hello World\n")) //prints Hello World and returns 11
{
//do nothing
}
return 0;
}
Output:
Hello World
Explanation:
The if statement checks for condition whether the return value of printf("Hello World") is greater than 0. printf
function returns the length of the string printed. Hence the statement if (printf("Hello World")) prints the string
"Hello World".

Generally when use printf("") statement we have to use semicolon at the end.
If we want to print a semicolon, we use the statement: printf(";");
In above statement, we are using two semicolons. The task of printing a semicolon without using semicolon
anywhere in the code can be accomplished by using the ascii value of ' ; ' which is equal to 59.
Program: Program to print a semicolon without using semicolon in the code.
#include <stdio.h>
int main(void) {
//prints the character with ascii value 59, i.e., semicolon
if (printf("%c\n", 59)) {
//prints semicolon
}
return 0;
}
Output:
;
Explanation:
If statement checks whether return value of printf function is greater than zero or not. The return value of function
call printf("%c",59) is 1. As printf returns the length of the string printed. printf("%c",59) prints ascii value that
corresponds to 59, that is semicolon(;).


strcmp() function compares two strings lexicographically. strcmp is declared in stdio.h
Case 1: when the strings are equal, it returns zero.
Case 2: when the strings are unequal, it returns the difference between ascii values of the characters that differ.
a) When string1 is greater than string2, it returns positive value.
b) When string1 is lesser than string2, it returns negative value.
Syntax:
int strcmp (const char *s1, const char *s2);
Program: to compare two strings.
#include<stdio.h>
#include<string.h>
int cmpstr(char s1[10], char s2[10]);
int main() {
char arr1[10] = "Nodalo";
char arr2[10] = "nodalo";
printf(" %d", cmpstr(arr1, arr2));
//cmpstr() is equivalent of strcmp()
return 0;
}/
/s1, s2 are strings to be compared
int cmpstr(char s1[10], char s2[10]) {
//strlen function returns the length of argument string passed
int i = strlen(s1);
int k = strlen(s2);
int bigger;
if (i < k) {
bigger = k;
}
else if (i > k) {
bigger = i;
}
else {
bigger = i;
}
//loops 'bigger' times
for (i = 0; i < bigger; i++) {
//if ascii values of characters s1[i], s2[i] are equal do nothing
if (s1[i] == s2[i]) {
}
//else return the ascii difference
else {
return (s1[i] - s2[i]);
}
}
//return 0 when both strings are same
//This statement is executed only when both strings are equal
return (0);
}
Output:
-32
Explanation:
cmpstr() is a function that illustrates C standard function strcmp(). Strings to be compared are sent as arguments
to cmpstr().
Each character in string1 is compared to its corresponding character in string2. Once the loop encounters a
differing character in the strings, it would return the ascii difference of the differing characters and exit.
strcat(string1,string2) is a C standard function declared in the header file string.h
The strcat() function concatenates string2, string1 and returns string1.
Program: Program to concatenate two strings
#include<stdio.h>
#include<string.h>
char *strct(char *c1, char *c2);
char *strct(char *c1, char *c2) {
//strlen function returns length of argument string
int i = strlen(c1);
int k = 0;
//loops until null is encountered and appends string c2 to c1
while (c2[k] != '\0') {
c1[i + k] = c2[k];
k++;
}
return c1;
}
int main() {
char string1[15] = "first";
char string2[15] = "second";
char *finalstr;
printf("Before concatenation:"
" \n string1 = %s \n string2 = %s", string1, string2);
//addresses of string1, string2 are passed to strct()
finalstr = strct(string1, string2);
printf("\nAfter concatenation:");
//prints the contents of string whose address is in finalstr
printf("\n finalstr = %s", finalstr);
//prints the contents of string1
printf("\n string1 = %s", string1);
//prints the contents of string2
printf("\n string2 = %s", string2);
return 0;
}
Output:
Before concatenation:
string1 = first
string2 = second
After concatenation:
finalstr = firstsecond
string1 = firstsecond
string2 = second
Explanation:
string2 is appended at the end of string1 and contents of string2 are unchanged.
In strct() function, using a for loop, all the characters of string 'c2' are copied at the end of c1. return (c1) is
equivalent to return &c1[0] and it returns the base address of 'c1'. 'finalstr' stores that address returned by the
function strct().

Tuesday, 13 December 2011

Beware Of Fake Job Offers From Companies,avoid fraudulent job offer.

With so many people currently unemployed, there are more scammers out there than ever. It’s unfortunate that unscrupulous people try to prey on those who are looking for legitimate jobs, but it does happen.

Online job boards and classified ads can be used by people posing as hiring companies, so it’s important to be aware and cautious when you’re looking for a job.

Symptoms of Fraudulent Job Offers:
Job offers sent from free internet email services like Gmail, Rediffmail, Yahoo mail, Hotmail, and so on can be treated as Fake Job Offers

Examples of some of the email IDs used for sending fake job offers:
careers@interviewmail.com
company.info@interviewmail.com
companyservice@one.co.il
hrdirectrecruitdept@hotmail.com
careers.tcs@companyhr.info
companyconsultancycareer@hotmail.com
companyconsultanyservices.tcs@gmail.com
companyservice@hotmail.com
Authorise or appoint any agent/agency/company to conduct any employment interviews or make offers of employment/benefits on the company’s behalf in lieu of money.
Charge any security amount, and will never ask you to deposit any money for or after getting a job offer.

SIX GOLDEN RULES TO AVOID FRAUD IN JOBS : 
  1. Don’t believe anyone who says they can get you through companies by ‘back-door’.
  2. Think twice before paying money to any of the job sites.
  3. Don’t attend the written tests/interviews that ask you to pay registration fee. 99.0 % of them are fake.
  4. Know the difference between ‘placement assistance’ and ‘placement guarantee’.
  5. Don’t believe in any ‘job guarantee’ programs from training institutes. 99.0 % of them don’t keep up their promises.
  6. Don’t believe in anyone who asks you to pay money for offering a job.
FAKE OFFER LETTERS:
This is to inform you all that in Recent Times lots of fake agency is sending mails to individuals candidates informing them about job offers in a well known Top Companies like infosys, Mahindra Satyam, Intel, Videocon, HCL, TCS and many More… Mostly these individuals use foreign identity/accents to influence candidates.

 Below are the some of examples of FAKE OFFER Letters mailed to the candidates mail id:




In case you or any of your have received any such mail, you are advised to bring it to immediate notice of the Management of the particular Company in the fraud job offer being circulated on the internet.

In Recent Times many Fresh graduates are preferring back door to get a job in a company, which is always dangerous.
Never pay any amount of money to anyone regarding job. frustration is common, we should have the patience. But if you loss some money regarding these type of jobs will add more frustration.

So I advice you to do a course and expertise yourself in it and then try on your own.


REMEMBER:
Under no circumstance should you pay any employer/agency in exchange for providing any employment!

In 2012 over than 3 lakh jobs create by IT &BPO


 
KOLKATA: The job market is set to bounce back in 2012 as companies maintain their growth and expansion plans for the year despite the global slowdown.
The January-March quarter is likely to see the creation of over 3 lakh jobs in traditionally top-hiring sectors like information technology (IT), business process outsourcing (BPO), healthcare, education, banking, financial services and insurance (BFSI) and energy, according to industry estimates.
Job generation in this quarter is similar to January to March 2011 levels, when close to 3.99 lakh jobs were created in the organised sector . Sectors that are likely to show caution are auto, construction, engineering, FMCG and telecom. The IT and BPO sectors alone will create as many as 2.5 lakh jobs next year, most of which will be created by March 2012, according to IT industry association Nasscom.
“While a slowdown is anticipated, there will not be much of an impact on the job market . In fact, we are seeing a lot of clients going ahead with fulfilling unmet demand,” says Ajit Isaac, MD of Bangalore-based placement and search firm Ikya Human Capital Solution. Hiring mandates, he adds, have grown by up to 10% in the January-March quarter of 2012 compared with the same period last year.
Demand for talent
The expansion of the IT industry into tier-II and tier-III cities will create the maximum thrust in newer jobs, says Nasscom president Som Mittal. At Indian IT and BPO companies, 65-70 % of the hiring is for fresh recruits, while 90% is for MNCs and captive units. The bullish hiring sentiments for next year comes as a whiff of fresh air after last week’s announcement that the Indian economy has grown at its slowest pace in more than two years during the July-September quarter.
The job market will not be affected in a huge way; in fact, there may be more demand for quality talent, says Ficci president Harsh Mariwala. “The government is expected to continue its reform process and attract more investment , considering there are signs of a muted GDP growth for this year. This will usher in more jobs and intensify the shortage of good talent,” says Mariwala, who is chairman and MD of Marico. The first quarter of 2012 will have job numbers similar to 2011, as per Ma Foi Randstad’s hiring estimates from clients.
“The market is likely to be flat this year, which in a way is not a bad signal since the external scenario has worsened as compared with the same period last year,” says Ma Foi Randstad MD & CEO E Balaji. In the January-March quarter of 2010, the organised sectors created some 2.5 lakh jobs, but the figure shot up to 3.99 lakh jobs in the same period this year, as per Ma Foi Randstad’s employment surveys .

Hackers broke into the Congress party website and replaced Sonia Gandhi‘s profile page


Hackers broke into the Congress party website and replaced Sonia Gandhi‘s profile page with sexual innuendo, apparently timing the attack with the party president’s 65th birthday on Friday.

It was not clear when the attack took place and Congress party leaders were not available for comment. The official website was inaccessible to the public at noon on Friday, a couple of hours after the hacked post was noticed on Gandhi’s profile page.

The attack came just days after India urged social media networks including Facebook, Twitter and Google to remove offensive material from their websites, unleashing a storm of criticism from Internet users complaining of censorship.A New York Times report Monday said Telecoms and Information Technology Minister Kapil Sibal called executives about six weeks ago and showed them a Facebook page that maligned Gandhi and told them it was “unacceptable.”

The government is very sensitive to criticism of Gandhi, whose family has dominated Indian politics for over six decades.

Jr NTR Dance for Kolaveri Di Song, Telugu Version: Why This Kolaveri Di,Why This Kolaveri Da in heavy Metal Music (Girl Version)

Jr NTR Dance for Kolaveri Di Song:
 
Why This Kolaveri Da in heavy Metal Music (Girl Version)

Telugu Version: Why This Kolaveri Di

Sunday, 11 December 2011

**FRESHER JOBS**