jituTechnology

jituTechnology

How to Hack Facebook, Gmail, and Yahoo Accounts: Ethical Hacking

In this post I am going to write about the hacking of Facebook, Gmail, and Yahoo! Or any other accounts within a minute. First let me ask you a question, do you know what a Key logger is?? I guess many of you know about this application software’s used for hacking. Ok if you don’t […]

read more

>Brain-like processors created, with simultaneous data processing and storage

> Folks over at the University of Exeter have demonstrated what they call the memflector-an optical equivalent of the memristor. Built using advanced semiconductor materials capable of phase change, the team has constructed a processor that can compute and store data simultaneously. This is quite unlike today’s computers, which have separate components for memory and […]

read more

>Notebook graphics go crazy

> While AMD has been relatively quiet in the recent past about the growing powers and adoption of its laptop graphics technologies, it has now decided to snatch some of the much publicize recent glory of Nvidia’s GeForce GTX 580M GPU, by releasing the AMD Radeon HD 6990M as contender for the crown of the […]

read more

Write a program to find the maximum of two member variables suing friend function

  /*Write a program to find the maximum of two member variables suing friend function   Programmed by: KiranShrestha Roll No.: 10121 Programmed on: 31st july,2011*/ #include <iostream.h> #include <conio.h> class D { intx,y; public: D(int a, int b) { x= a; y=b; } void display() { max(x,y); } friend void max (int ,int); }; […]

read more

>4.1 Write a program to swap the private data of two classes using friend function.

> /*Write a program to swap the private data of two classes using friend function. Programmed by: KiranShrestha Roll No.: 10121 Programmed on: 31st July, 2011*/ #include <iostream.h> #include <conio.h> class b; class a { int x; public: void assign(int t) { x =t; } void display() { cout<<“value of x is: “<<x<<endl; } friend […]

read more