Skip to main content


1. This penguin character is the mascot of Linix Kernel. Name this penguin?
A: TUX

2.) We have independence day, republic day, science day etc. Like that, this day was first observed on 28 August 2004. Since 2006, it has been observing in the third saturday of September every year. What is significance of this day?
A: Software Freedom Day(SFD)

3.) Shelfari is a social cataloging website for books. Shelfari users build virtual bookshelves of the titles they own or have read, and can rate, review, tag, and discuss their books. Which company is offering this service?
A: AMAZON

4.) Which is the world's largest mobile operator with more than 600 million subscribers as of March 2011?
A: China Mobile

5.) What do you mean by Data archaeology?
A: It refers to the art and science of recovering computer data encrypted in now obsolete media or formats. http://en.wikipedia.org/wiki/Data_archaeology

6.) "Patni Computer Systems " was it's former name. How do you know the company now?
A: iGATE Patni

7.) It was started in 1999 by 10 industry professionals who came from Cambridge Technology Partners, Lucent Technologies and Wipro. This company crossed USD 100 million in revenues in April 2006 & has been involved in the creation of Bluetooth technology and is an Associate Member of the Bluetooth Special Interest Group.
A: Mind Tree Ltd.

8.) It is a technology introduced by Intel Corporation that uses NAND flash memory modules to reduce the time it takes for a computer to power up, access programs, and write data to the hard drive. During development, the technology was codenamed Robson. How do you know this technology?
A: Intel Turbo Memory

9.) This gaming console was known by the code name of "Revolution" until April 27, 2006, immediately prior to E3(Electronic Entertainment Expo). How this console is popular now?
A: Nintendo Wii

10.) It is the brand name of an LCD color display technology produced by Sharp Electronics. The technology utilizes a fourth color subpixel, yellow, in addition to the standard RGB color subpixels, which Sharp claims increases the range of displayable colors, and which may mimic more closely the way the brain processes color information. Name the technology?
A: Quattron

Comments

Popular posts from this blog

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...

CLASS and OBJECTS

CLASS and OBJECTS 1.Give the output of the following program ( Assuming that all required header files are  included in the program )     :                class TEMP { static int a; float b; public: TEMP( ) { b=10; } void INTEMP( ) { a++; b=a+10; } void OUTTEMP( ) { cout<<a*i<<"$"<<b-3<<endl; } }; int TEMP::a=2; void main() { TEMP ob[5]; for(int x=1;x<5;x++) ob[x].INTEMP( ); for(x=1;x<5;x++) ob[x].OUTTEMP( );}  2.  Define a class Travel in C++ with the description given below: Private Members: T_Code of type string No_of_Adults of type integer No_of_Children of type integer Distance of type integer TotalFare of type float Public Members: A constructor to assign initial values as follows : T_Code with the word “NULL” No_of_Adults as 0 No_of_Children as 0 Distance as 0 TotalFare as 0 A func...
CYBER OLYMPIAD SYLLABUS Cyber Olmpiad CLASS-2 Total Questions : 35   Time : 1 hr. Syllabus Section – 1 : Patterns, Measuring Units, Odd One Out, Series Completion,  Geometrical Shapes, Analogy, Ranking Test, Grouping of Figures, Coding-Decoding, Embedded Figures. Section – 2 : Introduction to Computers, General Information about Computers, Parts of Computer, Uses of Computer, Learning to use Keyboard and Mouse, Introduction to MS-Paint, Latest Developments in the field of IT. Section – 3 : Higher Order Thinking Questions - Syllabus as per Section – 2.          Questions are based on Windows 7 and MS-Office 2010. CLASS-3 Total Questions : 35   Time : 1 hr. Syllabus Section – 1 : Patterns, Analogy and Classification, Coding-Decoding, Mirror Images, Embedded Figures, Alphabet Test, Ranking Test, Grouping of Figures, Figure Matrix, Geometrical Shapes, Days and Dates & Possible Combinations. Section – 2...