Searching for "5%"

Q:

Four of the following five are alike in a certain way and so form a group. which one does not belong to that group?

1. Robust : Weak      2. Chaos : Peace    3. Cruel : kind    4. Sink : Float    5. Abduct : Kidnap

Answer

Answer : (5)


The first four pairs indicate opposite of one another, whereas (5) is a pair of words having the same meaning.

Report Error

View answer Workspace Report Error Discuss

Subject: Classification

Q:

Find the wrong number in the series.

3, 8, 15, 24, 34, 48, 63

A) 15 B) 24
C) 34 D) 48
 
Answer & Explanation Answer: C) 34

Explanation:

The difference between consecutive numbers of the given series are respectively 5, 7, 9, 11, 13, and 15.

Therefore, 24+11=35 But in your problem it is given as 34.so 34 is wrong number

Report Error

View Answer Report Error Discuss

Filed Under: Number Series

Q:

Find the wrong number in the series

7, 28, 63, 124, 215, 342, 511

A) 28 B) 124
C) 215 D) 342
 
Answer & Explanation Answer: A) 28

Explanation:

Here the number follows the given rule 

 23-1, 33-1, 43-1, 53-1, ...

 

But 28 has been given in problem series.

 

so 28 is wrong number.

Report Error

View Answer Report Error Discuss

Filed Under: Number Series
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank PO

Q:

8, 15, 28, 53, ?, 199

A) 101 B) 102
C) 103 D) 104
 
Answer & Explanation Answer: B) 102

Explanation:

Here the series of the form is x2 - 1, x2 - 2, x2 - 3,...

 53 x 2 - 4 = 106 - 4 = 102

Report Error

View Answer Report Error Discuss

Filed Under: Number Series
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Bank Clerk , Bank PO

Q:

What is difference between HTML and HTML5?

Answer

The differences between HTML and HTML5 are:


- Document of HTML is very large as compare to the HTML5.


- Audio and Video tags are not present in HTML whereas HTML5 contains audio and video tags.


- Vector technology is not integral part of HTML whereas HTML5 Vector technology is the integral part of it.


- HTML supported by all old browsers whereas HTML5 is supported by new browser.


- In HTML web sockets are not available whereas in HTML5 Full duplex communication channel is present.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

Q:

HTML 5 provides drag and drop facility. How do you make an image draggable?

Answer

To make an image draggable, the draggable attribute is set to true:


<img draggable="true">

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

Q:

Can HTML 5 get the geographical position of a user?

Answer

- Yes, HTML 5 can get the location of a user with the use of Geolocation API.


- Use getCurrentPosition() method to get the user’s current position.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

Q:

What are the new attributes provided in HTML5 for "form" tag ?

Answer

The new attributes provided in HTML5 for <form> are: 


a.) autocomplete


– It specifies if a form or input field should have autocomplete as on or off. 


– If autocomplete is on, the browser is able to fill the values based on the values filled by the user earlier. 


– autocomplete works for following input types: text, search, url, tel, email, password, datepickers, range, and color. 


b.) novalidate


- This is a boolean attribute. 


- When present, it signifies that the form-data should not be validated when submitted.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology