ICC world cup live score

click here for LIVE

Thursday, June 30, 2011

Tuesday, June 21, 2011

Recruitment of teaching assistants positions in JNTUCEH , Hyderabad.

 Applications in the prescribed form are invited for the following posts in the College of engineering Hyderabad JNTU  . 

 Teaching assistants:
English,Mathematics, physics, chemistry, Civil engineering , Computer science engineering,ECE,EEE.



Scale of Pay:
qualification B.Tech :10000 per month .
qualification M.Tech :12000 per month.
The Prescribed application form and information to candidates can be downloaded from JNTUH Website (www.jntuh.ac.in).


Registration fee through a Demand Draft: Rs.250/- (in case of SC/ST candidates the fees is Rs.100/-)

The Bio Data(resume) form together with  certificates and a Demand Draft towards Registration fee  on any Nationalized Bank in favour of the Principal, JNTUCEH payable at Hyderabad.



Last date:
on or before 24.06.2011by 4:00 PM

Friday, June 17, 2011

Differences and Advantages Between 32-bit (x86) VS 64-bit (x64) Windows Vista

Differences and Advantages Between 32-bit (x86) VS 64-bit (x64) Windows Vista

Each editions of Windows Vista operating system is available in both 32-bit and 64-bit versions (x86 anx x64 are terms used by Microsoft), making 64-bit OS option now a widely available choice. And with almost all CPU processor and motherboard nowadays is x64 based which capable of running 64-bit OS, it presents hard decision to consumers to decide and pick whether 32-bit or 64-bit versions of Windows Vista is suitable choice.

Microsoft publishes KB946765 which details the main differences between 32-bit and 64-bit Windows Vista, which mainly relate to memory accessibility, memory management, and enhanced security features, as listed in table below.


Architecture Windows Vista, 32-bit versionsWindows Vista, 64-bit versions
System requirements 1-gigahertz (GHz) 32-bit (x86) processor or 64-bit (x64) processor,
512 MB of RAM
1-GHz 64-bit (x64) processor, 1 GB of RAM (4 GB recommended)
Memory access A 32-bit version of Windows Vista can access up to 4 GB of RAM. A 64-bit version of Windows Vista can access from 1 GB of RAM to more than 128 GB of RAM.
Memory access per edition All 32-bit versions of Windows Vista can access up to 4 GB of RAM. Windows Vista Home Basic – 8 GB of RAM
Windows Vista Home Premium – 16 GB of RAM
Windows Vista Business – 128 GB of RAM or more
Windows Vista Enterprise – 128 GB of RAM or more
Windows Vista Ultimate – 128 GB of RAM or more
DEP 32-bit versions of Windows Vista use a software-based version ofDEP. 64-bit versions of Windows Vista support hardware-backed DEP.
Kernel Patch Protection (PatchGuard) This feature is not available in 32-bit versions of Windows Vista. This feature is available in 64-bit versions of Windows Vista. KernelPatch Protection helps prevent a malicious program from updating the Windows Vista kernel. This feature works by helping to prevent a kernel-mode driver from extending or replacing other kernel services. Also, this feature helps prevent third-party programs from updating (patching) any part of the kernel.
Driver signing Unsigned drivers may be used with 32-bit versions of Windows Vista. 64-bit versions of Windows Vista require that all device drivers be digitally signed by the developer.
32-bit driver support 32-bit versions of Windows Vista support 32-bit drivers that are designed for Windows Vista. 64-bit versions of Windows Vista do not support 32-bit device drivers.
16-bit program support 32-bit versions of Windows Vistasupport 16-bit programs, in part. 64-bit versions of Windows Vista do not support 16-bit programs.

If you value the benefits and advantages of switching and embracing 64-bit Windows Vista, here's a few considerations to ponder before making the move to install x64 Windows Vista:

  • 64-bit device drivers may not be available for one or more devices in the computer.
  • Device drivers must be digitally signed.
  • 32-bit device drivers are not supported.
  • 32-bit programs may not be fully compatible with a 64-bit operating system.
  • It may be difficult to locate programs that are written specifically for a 64-bit operating system.
  • Not all hardware devices may be compatible with a 64-bit version of Windows Vista.

Top 50 Questions of Basic C programming

 Top 50 Questions of Basic C programming

Here I am discussing top 50 questions of basic C programming asked in the technical interview. Prepare these question before appearing in the interview.

   1. Write a program to print numbers from 1 to 100 without using loops
   2. Write a C program to swap two variables without using a temporary variable.
   3. What is the 8 queens problem? Write a C program to solve it?
   4. Write a C program to print a square matrix helically.
   5. Write a C program to reverse a string.
   6. Write a C program to reverse the words in a sentence in place.
   7. Write a C program generate permutations.
   8. Write a C program for calculating the factorial of a number.
   9. Write a C program to calculate pow(x,n)?
  10. Write a C program which does wildcard pattern matching algorithm.
  11. How do you calculate the maximum sub array of a list of numbers?
  12. How to generate fibonacci numbers? How to find out if a given number is a Fibonacci number or not? Write C programs to do both.
  13. Solve the Rat In A Maze problem using backtracking.
  14. What Little-Endian and Big-Endian? How can I determine whether a machine's byte order is big-endian or little endian? How can we convert from one to another?
  15. Write C code to solve the Tower of Hanoi problem.
  16. Write C code to return a string from a function.
  17. Write a C program which produces its own source code as its output.
  18. Write a C program to convert from decimal to any base (binary, hex, oct etc…).
  19. Write C code to check if an integer is a power of 2 or not in a single line?
  20. Write a C program to find the GCD of two numbers.
  21. Write code to remove duplicates in a sorted array.
  22. Find the maximum of three integers using the ternary operator.
  23. How do you initialize a pointer inside a function?
  24. Write C code to dynamically allocate one, two and three dimensional arrays (using malloc()).
  25. How would you find the size of structure without using sizeof()?
  26. Write a C program to multiply two matrices.
  27. Write a C program to check for palindromes.
  28. Write a C program to convert a decimal number into a binary number.
  29. Write C code to implement the Binary Search algorithm.
  30. Write code to evaluate a polynomial.
  31. Write code to add two polynomials.
  32. Write a program to add two long positive numbers (each represented by linked lists).
  33. How do you compare floating point numbers?
  34. What's a good way to implement complex numbers in C?
  35. How can I display a percentage-done indication on the screen?
  36. Write a program to check if a given year is a leap year or not?
  37. Is there something we can do in C but not in C++?
  38. How to swap the two nibbles in a byte ? How to generate the next prime after a given prime?
  39. How to scan a string till we hit a new line using scanf()?
  40. Write pseudocode to compare versions (like 115.10.1 vs 115.11.5).
  41. How do you get the line numbers in C?
  42. Write your own sqrt() function in C.
  43. Write a simple piece of code to split a string at equal intervals.
  44. Is there a way to multiply matrices in lesser than o(n^3) time complexity?
  45. How do you find out if a machine is 32 bit or 64 bit?
  46. Write a program to have the output go two places at once (to the screen and to a file also).
  47. How can we sum the digits of a given number in single statement?
  48. Given two strings A and B, how would you find out if the characters in B were a subset of the characters in A?
  49. Write a program to merge two arrays in sorted order, so that if an integer is in both the arrays, it gets added into the final array only once.
  50. Write your own trim() or squeeze() function to remove the spaces from a string.

Wednesday, June 8, 2011

PGEC 2011 Notification for GATE / GPAT Candidates

PGEC 2011 Notification for GATE / GPAT Candidates - M.Tech. M.Pharm Admissions in AP

APSCHE (Andhra Pradesh State Council of Higher Education Education (APSCHE) has issued notification for GATE / GPAT qualified candidates for admission into various PG Professional courses in Andhra Pradesh. Seats remain vacant after filling through GATE 2011 / GPAT 2011 qualified candidates will be filled through PGECET 2011 qualified candidates. Details of application process, eligibility, counseling process and important dates are given below. Interested candidates can download Offline application from www.apschepgec.net .Admission into Post Graduate Engineering , Pharmacy and other Courses for 2011-12 in University and affiliated engineering and pharmacy colleges in Andhra Pradesh will be through notification. Following are other details of PGEC 2011 notification:

PG Courses available for GATE / GPAT candidates:

1. M.E. / M.Tech.
2. M.Pharm.
3. M.Architecture.
4. M. Planning
5. Graduate level Pharm D. (P.B.) - Full Time course

There will be separate counseling for these candidates. Seats remain unfilled after allocation to GATE / GPAT qualified candidates will be filled with PGECET 2011 qualified candidates based on their ranks.

Important Dates:
1 Commencement of Downloading of Application Form: 03rd June 2011
2. Last Date for Sale and Receipt of Application Form without late fee: 24th June 2011
3. Last date with late fee of Rs. 500/- : 01st July 2011

Seats available for or GATE / GPAT qualified candidates, application procedure, eligibility requirements, Important dates for application including last date for receipt / submission of applications and other info of PG Professional Courses available at www.apschepgec.net / apsche.org .

Address: Convener, PGEC Admissions - 2011, University College of Engineering (A), Osmania University, Hyderabad - 500007. (AP). Phone :040 - 69996715 / 040 - 32444715 ; Email : pgec2011@osmania.ac.in

POWER OF PUNCTUATION

THE POWER OF PUNCTUATION MARKS
 

An english professor wrote the words:

"a woman without her man is nothing" on the chalkboard and asked his students to punctuate it correctly.

all the boys in the class wrote: "a woman, without her man, is nothing" 

all the girls in the class wrote: " a woman: without her, man is nothing"

punctuation is powerful.

Germany Win To Close In On Euro 2012 Finals

Germany swept to the brink of a place in the 2012 European Championship with a seventh straight qualifying win Tuesday, while Zlatan Ibrahimovic's hat-trick in a 5-0 rout of Finland kept Sweden in the hunt for top spot in its group.

Real Madrid playmaker Mesut Oezil scored one goal and set up another as Germany beat Azerbaijan 3-1 in Baku, leaving Joachim Loew's side needing two points from its last three Group A games to guarantee a spot in next year's tournament in Poland and Ukraine.

Ibrahimovic inspired Sweden to a fifth win in six Group E matches, with the AC Milan striker coming off the bench to score three times in 22 minutes to help lift his country three points behind the Netherlands.

World and European champion Spain followed up a 4-0 thrashing of the United States on Saturday with a 3-0 win against Venezuela but fellow European heavyweight Italy was upset 2-0 by Ireland in Liege, Belgium, in another friendly.

In other Euro 2012 qualifiers, Hungary stayed three points behind Sweden, thanks to a 3-0 win in San Marino, Belarus beat Luxembourg 2-0 to close to within a point of Group D leader France and there were also wins for Bosnia-Herzegovina and the Faeroe Islands.

Germany, one of three countries with perfect records in qualifying along with Spain and the Netherlands, moved 10 points clear of second-place Belgium. Only Turkey — a point further back but with a game in hand – can stop Loew's men finishing top.

"It was important to win and to end the season with the seventh win. It was a perfect season," Germany captain Philipp Lahm said.

Oezil crashed an angled shot into the net off the post in the 30th minute to open the scoring before setting up striker Mario Gomez for the second goal 11 minutes later.

Murad Huseynov scored for Azerbaijan, which is managed by former Germany coach Berti Vogts, in the 89th, but Andre Schuerrle sealed victory for the visitors in injury time.

Ibrahimovic was a substitute after only recently recovering from an ankle injury but came on in the 25th as a replacement for the injured Ola Toivonen, with Sweden already 1-0 up through Kim Kallstrom's goal in the 12th.

After taking the captain's armband, Ibrahimovic slotted a low finish into the bottom corner in the 31st following a slide-rule pass from Kallstrom. He then stroked the ball into an empty net four minutes later after Sebastian Larsson's cutback.

The former Barcelona and Inter Milan striker clinched his hat-trick with a free header at the back post from Kallstrom's inswinging 53rd-minute free kick before setting up Emir Bajrami for Sweden's fifth in the 82nd.

Fresh from scoring for Barcelona in a 3-1 victory over Manchester United in the Champions League final 10 days ago, strikers David Villa and Pedro Rodriguez set an understrength Spain on its way to a convincing win in Venezuela with first-half goals.

Real Madrid midfielder Xabi Alonso added the third on the stroke of halftime as Spain coach Vicente del Bosque set a record for wins at the helm of the national team, his 39th surpassing the total achieved by predecessor Luis Aragones.

Keith Andrews and Simon Cox scored either side of halftime for Ireland, whose coach Giovanni Trapattoni got one over Italy counterpart Cesare Prandelli, who he used to manage when in charge of Juventus in the early 1980s.

In other friendlies, Norway defeated Lithuania 1-0 and Austria won 3-1 against Latvia, which ended the match with eight men after three late sending-offs.

The other four Euro 2012 qualifiers on Tuesday featured teams with only outside chances of gaining automatic qualification as group winners, although second-half goals from Sergei Kornilenko and Anton Putilo eased Belarus to a win over Luxembourg that kept the pressure on France, which has a game in hand over its closest rival.

Bosnia-Herzegovina, a 2-0 winner at home to Albania – thanks to goals by Haris Medunjanin and Darko Maletic, is two points further back in Group D and has played six games like France.

Zoltan Liptak, Imre Szabics and Vladimir Koman were the scorers for Hungary against San Marino, which remains without a point or a goal in qualifying.

Faeroe Islands earned a maiden victory in Group C and a first three-point haul since 2009, beating Estonia 2-0 through goals from Frodi Benjaminsen and Arnbjorn Hansen.

Reference:-http://ibnlive.in.com/news/germany-win-to-close-in-on-euro-2012-finals/157524-5-21.html