Showing posts with label its. Show all posts
Showing posts with label its. Show all posts

Wednesday, February 18, 2015

Its time to start changing from Win XP to Windows7


Businesses are finally prying their hands from Microsoft s Windows XP as they warm to Windows 7 .

"Over the years, IT has had a real love affair with XP," said Diane Hagglund, an analyst at Dimensional Research, which surveyed 923 IT professionals about their Windows operating system adoption plans in January. "It was just a great OS. It just worked for them. But that feeling is going away."

In the new study, 40% of the respondents said that theyre worried about the hassles of maintaining the nearly nine-year-old Windows XP as it gets increasingly outdated -- up from 28% in an April 2009 Dimensional survey.

Meanwhile, 60% of the respondents said theyre worried about the cost and overhead of migrating to Windows 7, but that figure is down from 72% last year.

Confidence in Windows 7 has climbed since it shipped. Last April, 67% of those polled said they had concerns about Windows 7, which had not yet been released; this year, only 56% said they did.

"The difference was the release of the operating system, the biggest part of that from hands-on experience," Hagglund said, explaining why some in IT have changed their minds about Windows 7. "Theyre trying it at home, many of them, long before it comes to them professionally, so they know what its like."

This story was originally published in Computerworld.com.

Businesses and individual users should start changing before time catches up with them and support for Windows XP is no longer available.


Read more »

Sunday, February 15, 2015

An Insight into Apple iMovie app and its New Version 10 0 4

Apple rolled out a new version update for iMovie – an innovative iOS app development for Mac. The new 10.0.4 version will help resolve crashing issues that caused iMovie app to quit unexpectedly.

An Insight into Apple iMovie app and its New Version


Before getting in depth into the new updated version of the iMovie application, lets have a detailed insight about this app and its previous version.

Introduction to iMovie and Its Features


If youve been yearning for a gratifying video recording experience for Mac, then iMovie is an app that you cant miss to have. It lets you put the entire focus on videos and enjoy watching them like never before. With this app you browse through video library, organize them all at one place, create high-definition movies and trailers, and even allow sharing your beautiful moments instantly. Its available for $4.99 in the iTunes store.

Introduction to iMovie and Its Features

Also Read: iPhone 6 (Rumors) Vs Nexus 5

The best part about using the app is that all your work carried out on iMovies gets saved automatically at the same time as you work. So, you no longer have to fret about constantly saving your work. Whats more? The app helps to improvise the visual appeal as well sound of your video. Also, it helps in augmenting your video using the colour controls. Lets have a more detailed view on the features of this application.

Introduction to iMovie and Its Features

Hollywood-style trailers: With iMovie you get the flexibility to choose the most suitable template from 29 templates – for creating your movie trailer in Hollywood style. All the templates come enriched with high-end graphics and original scores of renowned film composers. So, whatre you waiting for? Pick the best videos and photos for constructing your video trailers and fulfil your urge to develop your own hollywood-styled trailers.

Beautiful HD movies: In the iMovie app you get 15 unique themes with various customization options, which include transitions, titles, ability to adjust motion effects (like speed up, slow down and fast-forward) and more. Thats not it! You can even build your own soundtrack using the songs from the Apples iTunes library and so on.

iMovie Theatre: Now you can show movies as well as trailers you’ve made with help of your own personal theatre. Your movies will serve as beautiful posters, which you can click to watch the clips in full-screen.

Sharing is Fun: iMovie app allows sharing your video clips with friends and family. It even let you post your clips to YouTube and Vimeo. You can even share the clips via emails.

Experienced video editors wont find any difficulty in working with the iMovie application. However, proficient iPhone App Developer for Hire can be availed, in case you find some technical issues. But even immature and neophyte video editors wont find it hard to create video clips and photos using the app in not more than 10 minutes, after doing a little practice and understanding the settings.

What has iMovie version 10.0.4 in Store for You?


As discussed earlier, iMovie version 10.0.4 is new update that has recently been released. The major purpose behind updating the existing version was to fix bug issues and bring stability improvements with the previous iMovie app version. Prior to this update, iMovie for Mac was updated to 10.0.3 version in April that introduced new sort features in the sidebar, tweaked user interface, and upgraded font options and color in new titles etc. But unfortunately, even the last version failed to fix the issues that led to force close iMovie.

What has iMovie version 10.0.4 in Store for You?

With 10.0.4 version, Apples effort to eliminate bugs from the app has proved a success. Any existing iMovie app users can easily download the upgraded version of the application from the Mac App for free. However, new users will have to purchase it for $14.99.

Also Read: Swift: A New Programming Language Introduced by Apple For iOS and OS X Development

Lets Wrap Up!


If you have been craving to create simple yet stunning video clips that can make the eye-balls roll, then the latest iMovie 10.0.4 version for Mac OS X seems to be the perfect choice for you. Though, nothing much has been added to this update but its a very important one from all the previous upgrades made to the application, as it resolved the bug issues and stability problems that made the app to quit, without any prior warning. So, begin adding your pics and videos and build some really fascinating movies showing off your talent as a movie director – to your friends, family and acquaintances.

Author Bio:
Rick Brown is a veteran technical content writer associated with a reputed iPhone Application Development India firm – Mobiers Ltd. You can avail iPhone App Developer for Hire, in case you are looking forward for the same.

Website: http://www.mobiers.com
Facebook: https://www.facebook.com/Mobiers
Read more »

Thursday, February 12, 2015

C program to input number of weeks day 1 7 and translate to its equivalent name of the day of the week


#include<stdio.h>
#include<conio.h>


void main()
{
int ch;
clrscr(); //to clear the screen
printf("Enter number of weeks day(1-7):");
scanf("%d",&ch);

switch(ch)
{
case 1: printf("
Sunday");

break;
case 2: printf("
Monday");

break;
case 3: printf("
Tuesday");

break;
case 4: printf("
Wednesday");

break;
case 5: printf("
Thursday");

break;
case 6: printf("
Friday");

break;
case 7: printf("
Saturday");

break;
}
getch(); //to stop the screen
}
Read more »

Tuesday, February 10, 2015

C Program to print its own Source Code as Output

We can print the source code of a program as an output using quine. So first lets understand what quine is?

What is a Quine?

A quine is a computer program which takes no input and produces a copy of its own source code as its only output. The standard terms for these programs in the computability theory and computer science literature are "self-replicating programs", "self-reproducing programs", and "self-copying programs".

Also Read: List of Biggest and Popular Programming Contests
Also Read: How to Swap Two Numbers Without Using Temporary Variable or Arithmetic Operators?

Quines are named after the American mathematician and logician Willard Van Orman Quine (1908–2000). The interesting thing about quine is that we are not allowed to use open and then print file of the program.

An example of a quine in C language is given below which produces the source code as an output. It can be written in any other language like java, python, etc.

main(a){printf(a="main(a){printf(a=%c%s%c,34,a,34);}",34,a,34);}

If you will compile and run above code then it will show following output

C Program to print its own Source Code as Output

This program can result in undefined behavior as we have used printf function without including its header file. Also, the return type declaration for main has been left off to reduce the length of the program. Two 34s are used to print double quotes around the string s.

Source: http://www.geeksforgeeks.org/quine-a-self-reproducing-program/and http://en.wikipedia.org/wiki/Quine_(computing)
Read more »