June 18, 2015

How to delete video from youtube ?




What to do, if there exist a video, which wasn’t uploaded by you,May be harmfull to you. Or just find yourself in a place, where you are not supposed to be. Or it is not even you, but you don’t agree with the fact that he is watched by so many people and want to remove the video clip.

First of all, you can write directly to the video owner. 
But sometimes, it doesn’t work, in that case you can ask for help YouTube team. Under the video there are some buttons like Add to, Share and More. If you click on More, the Report unit will be accessible. And there you are free to choose, why you insist on deleting the video from Youtube content.

Follow the process

Under the video there are some buttons like Add to, Share and More. If you click on More, the Report unit will be accessible. And there you have to choose, why you insist on deleting the video from YouTube content.





You will need to explain, why you want the video to be deleted. There are eight reasons for YouTube support to look at it more attentively:




Dont forget to comment if you find fruitfull.
Thanks & Regards
Nikhil Singh
Technology Evangalist

June 2, 2015

Windows 10 is comming on July 29 2015.




If you are currently using Windows 7 Starter, Windows 7 Home Basic, Windows 7 Home Premium, Windows 8, or Windows 8.1, you have a chance to upgrade your windows to Windows 10 Home without any cost. Users running Windows 7 Professional, Windows 7 Ultimate, Windows 8 Pro, or Windows 8.1 Pro can upgrade to Windows 10 Pro for free.

You can reserve your free copy of Windows 10 Home or Windows 10 Pro today.
Click this link to reserve your Windows 10 Home

However, if you are running an old version of Windows - like Windows XP - or building a new PC from scratch, you will need to purchase a copy of Windows 10. 





May 8, 2015

Google Integrates Food Ordering Into Search Results For Restaurants

Google now lets users in the U.S. order food from six companies—Seamless, Grubhub, Eat24, Delivery.com, BeyondMenu, and MyPizza.com—directly from search results.
If someone searches for a restaurant that offers delivery through one of those providers, an option for “place an order” will show up in its Google information. Users are then shown links to delivery services and complete the order directly on their sites.


Google redirects users to its main search site, and is therefore able to see not only what kind of food and restaurants they are interested in, but also which delivery services they prefer—information that may come in handy as the tech giant builds its other verticals, including e-commerce.

May 4, 2015

Four Simple Tips to Increase the Life of Your Phone's Battery

Properly charging your smartphone is essential for maintaining the health of your battery, and ensuring better battery life and increased safety in the long run.








1. Don't let your phone overheat
Heat is perhaps the worst enemy of lithium-ion batteries, the kind most smartphones use. "You should take basic precautions like not keeping your phone on the dash board of the car where it will get a lot of direct sunlight,". You should also avoid charging your phone while playing graphically intensive games, because that will also raise the temperature of the phone and harm the battery.
The ideal charging temperature is between 20-30 degrees Celsius.
2. Don't use your phone while charging
Avoid using the phone while it is charging. This is called parasitic charging and this kind of usage can apparently be quite damaging. "Small amounts of usage load stop the battery from entering a full charging cycle, damaging the battery,".
3. Don't use a fake charger
Use only the company's own chargers - this is particularly important if your phone supports quick charging. High capacity chargers can quickly charge the phone up to 70 percent capacity, but can also damage it in the process, if not properly optimised.
4. Don't leave the phone on the charger all night
While charging your phone overnight will probably not damage it, there is a chance that it is hurting your battery life.
 

September 26, 2014

C++ and OOPS





basic oops concept in c++

OOPs – Object Oriented Programming System
Object-oriented programming (OOP) is a programming paradigm that uses “Objects “and their interactions to design applications and computer programs.

There are different types of OOPs are used, they are
  1. Object
  2. Class
  3. Data Abstraction & Encapsulation
  4. Inheritance
  5. Polymorphism
  6. Dynamic Binding
  7. Message Passing

1) Object : Object is the basic unit of object-oriented programming. Objects are identified by its unique name. An object represents a particular instance of a class. There can be more than one instance of an object. Each instance of an object can hold its own relevant data.
An Object is a collection of data members and associated member functions also known as methods.
For example whenever a class name is created according to the class an object should be created without creating object can’t able to use class.
The class of Dog defines all possible dogs by listing the characteristics and behaviors they can have; the object Lassie is one particular dog, with particular versions of the characteristics. A Dog has fur; Lassie has brown-and-white fur.
2) Class :
Classes are data types based on which objects are created. Objects with similar properties and methods are grouped together to form a Class. Thus a Class represents a set of individual objects. Characteristics of an object are represented in a class as Properties. The actions that can be performed by objects become functions of the class and is referred to as Methods.

For example consider we have a Class of Cars under which Santro Xing, Alto and WaganR represents individual Objects. In this context each Car Object will have its own, Model, Year of Manufacture, Colour, Top Speed, Engine Power etc., which form Properties of the Car class and the associated actions i.e., object functions like Start, Move, Stop form the Methods of Car Class.No memory is allocated when a class is created. Memory is allocated only when an object is created, i.e., when an instance of a class is created.
3) Data abstraction & Encapsulation : The wrapping up of data and its functions into a single unit is called Encapsulation. 
When using Data Encapsulation, data is not accessed directly, it is only accessible through the functions present inside the class.
Data Abstraction increases the power of programming language by creating user defined data types. Data Abstraction also represents the needed information in the program without presenting the details.
Abstraction refers to the act of representing essential features without including the background details or explanation between them.
For example, a class Car would be made up of an Engine, Gearbox, Steering objects, and many more components. To build the Car class, one does not need to know how the different components work internally, but only how to interface with them, i.e., send messages to them, receive messages from them, and perhaps make the different objects composing the class interact with each other.
4) Inheritance :
Inheritance is the process of forming a new class from an existing class or base class. 

The base class is also known as parent class or super class, the new class that is formed is called derived class. 
Derived class is also known as a child class or sub class. Inheritance helps in reducing the overall code size of the program, which is an important concept in object-oriented programming.
It is classifieds into different types, they are
  • Single level inheritance
  • Multi-level inheritance
  • Hybrid inheritance
  • Hierarchial inheritance
5) Polymorphism :
Polymorphism allows routines to use variables of different types at different times. An operator or function can be given different meanings or functions. Polymorphism refers to a single function or multi-functioning operator performing in different ways.

Poly a Greek term ability to take more than one form. Overloading is one type of Polymorphism. It allows an object to have different meanings, depending on its context. When an exiting operator or function begins to operate on new data type, or class, it is understood to be overloaded.
6) Dynamic binding :
It contains a concept of Inheritance and Polymorphism.

7) Message Passing : It refers to that establishing communication between one place to another.