Skip to main content

1. Who is known as the father of IBM PC?
A: Don Estridge

2. Identify these personals from the history of computing. 
 



3.







4.Slate 500 is a multi-touch capable slate PC from which company
A: HP
5.Who is claimed to be the first human to be affected with a computer Virus?

A: Mark Gasson
6. “Honeycomb” is the code name of ? 
A: Android 3.0
 

7.He founded the company , Wheels of Zeus in 2001. Who am i point to? 
A: Steve Wozniak
8. How do you know American standard code for information interchange? 
A: ASCII

9."Gorilla Grip of Death” is associated with which popular product?
A: iPhone 4
10. “Check Out” is online payment service by?
A: Google



Comments

Popular posts from this blog

operator s in Python

function solution

1. // to find areas using functions.using switch import java.io.*; class m1 { double area(double r) {   return(3.14*r*r); } int area(int s) {   return(s*s); } double area(double l, double b) {   return(l*b); } public static void main(String args[]) throws IOException {   m1 ob= new m1(); double p; int q; double w; BufferedReader input= new BufferedReader(new InputStreamReader(System.in)); System.out.println("*** MAIN MENU ***"); System.out.println("1. Area of Circle"); System.out.println("2. Area of Square"); System.out.println("3. Area of Rectangle"); System.out.println("4. Exit"); System.out.println("Enter Choice(1-4)"); int ch=Integer.parseInt(input.readLine()); switch(ch) { case 1: System.out.println("Enter the radius"); double r=Double.parseDouble(input.readLine()); p=ob.area(r); System.out.println("Area of Circle"+p); brea...