Skip to main content

Quiz 5



1.      Which is the first tablet in the market having 1 GB RAM?

a.      IPad
b.      XOOM
c.       Iconia
d.      Galaxy

2.      Xoom tablet uses _____________ images.

a.      Vector
b.      Raster
c.       Bitmap
d.      PNG

3.      Wi – Di stands for _______________.

a.      Wireless Display
b.      Wireless Digital
c.       Wired Digit
d.      Wireless Digit

4.      Which of the companies have introduced USB 3.0 pendrive?

a.      Kingston and Transcend
b.      Dell
c.       Kingshun
d.      Zenith

5.      Which is the fastest data transmission medium?

a.      Twisted Pair Cable
b.      Coaxial Cable
c.       Fiber Optic Cable
d.      Photon – based optical

6.      HTC company is of which country?

a.      India
b.      England
c.       Japan
d.      Taiwan

7.      ________________ is the slimmest phone of Sony Ericsson.

a.      Xperia Arc
b.      E 6033
c.       E 6011
d.      K 300

8.      Who invented the email?

a.      Ray Tomlinson
b.      Ken Thompson
c.       Dennis Ritchie
d.      Gally Almond

9.      What is Microsoft Kin?

a.      Tablet
b.      Social Networking cell phone
c.       Laptop
d.      PDA

10.  AMOLED stands for ______________.

a.      Active-matrix organic light – emitting diode
b.      Active-meter organic light-emitting diode
c.       Active-maker organic light-emitting diode
d.      Active-motion organic light-emitting diode

11.  TFT in LCD stands for _______________.

a.      Thick film transistor
b.      Thin film transistor
c.       Thick film transparent
d.      Thin film transparent

12.  Which of the phones use super AMOLED?

a.      Nokia N8 and Blackberry
b.      Samsung Galaxy and Wave
c.       Google Nexus and Xperia Arc
d.      Motorola

13.  Which of the company places IPS (in – plane switching) in its cell phone?

a.      Apple Iphone4
b.      Motorola
c.       Sony Ericsson
d.      Nokia N8

14.  Which type of touch from the following list exists in the market?

a.      Amplify touch
b.      Capacitive touch
c.       Diode touch
d.      Linium touch

15.  Depending on the technology, noise cancellation is also known as _________.

a.      Noise surpassing
b.      Noise calculating
c.       Noise suppression
d.      Noise sinking

Answers of Quiz 4

1 - b, 2 - a, 3 - b, 4 - c, 5 - b, 6 - a, 7 - c, 8 - b, 9 - b, 10 - a, 11 - a, 12 - b, 13 - d, 14 - a, 15 - c

Made By: Chaudhary Amit V.

Comments

Popular posts from this blog

Characteristics of a Good Programming Language

Till now there are many high level languages which are very popular, and there are others, which could not become so popular in-spite of being very powerful. There might be many reasons for the success of a language, but one obvious reason is the characteristics of the language. Several characteristics believed to be important with respect to making a programming language good are briefly discussed below. Simplicity A good programming language must be simple and easy to learn and use. For example, BASIC is liked by many programmers only because of its simplicity. Thus, a good programming language should provide a programmer with a clear, simple and unified set of concepts which can be easily grasped. It is also easy to develop and implement a compiler or an interpreter for a programming language that is simple. However, the power needed for the language should not be sacrificed for simplicity. The overall simplicity of a programming language strongly affects the readability of the pr...

Angular 4 and Firebase Authentication: Email/Password

In our  previous  article we saw how to create authentication module using Google identity provider. Now we will see how to implement Email and Password authentication using Firebase. We will use Bootstrap form to create intuitive user interface for sign-up and login using Email and Password. Step 1: Create signUp component. ng generate component signUp Step 2: Create custom form in sign-up.component.html file. The result of above code: Step 3: Add two functions for creating the user and login using Email and Password in src/app/providers/AFAuth.ts file. Step 4: Call createUserWithEmailAndPassword function in service from sign-up.component.ts. Step 5: Update routing configuration in app.module.ts  to include signUp component. Step 6: Update Login form to have Bootstrap form. The result of the above code. Step 7: Enable Email/Password component in Firebas...

Angular 4 and Firebase Authentication: Setup

If you have come to this article, it means you are keen to learn new technology and that too Firebase. I love Firebase because it provides all basic but important features of any web application. Take for example, authentication, which is cumbersome and risky if not implemented with utmost care. And when we have the integration of Angular and Firebase, it becomes a lot easier for a developer to build such crucial modules in less time with minimal efforts. In this article we will create a simple Angular application using Firebase. I am going ahead with the understanding that you know the benefits of Firebase and have little knowledge about it. There are plenty of posts out on the web if you are behind. Step 1: Install Angular CLI (if not installed). npm install -g angular-cli Step 2: Create new Angular 4 project. By default now angular CLI will create Angular 4 project so you need not fret. ng new firebase-authentication Step 3: Check whether the ne...