Searching for "selector"

Q:

Consider the given statement/s to be true and decide which of the given conclusions/assumptions can definitely be drawn from the given statement.

 

STATEMENT: Selectors pick our cricket teams based on regional considerations instead of on pure merit, making it difficult for our teams to win test series against other countries.

Conclusion I: Our cricket teams have no hope of winning test series against other countries.
Conclusion II: Our cricket teams need to be selected on pure merit.

A) Only Conclusion I follows B) Only Conclusion II follows
C) Both Conclusion I and II follows D) Neither Conclusion I nor II follows
 
Answer & Explanation Answer: B) Only Conclusion II follows

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Statement and Conclusions
Exam Prep: Bank Exams

Q:

What are Child Selectors ?

Answer

A child selector is used when you want to match an element that is the child of another specific element.
The parent and child selectors are separated by spaces.
The following selector locates an unordered list element within a paragraph element and makes a text within that element bold.


p > ul {font-weight: bold;}

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

Q:

What is Contextual Selector ?

Answer

Contextual selector addresses specific occurrence of an element.
It is a string of individual selectors separated by white space (search pattern), where only the last element in the pattern is addressed providing it matches the specified contex.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

Q:

If I call performSelector:withObject:afterDelay: – is the object retained?

Answer

Yes the object is retained. It creates a timer that calls a selector on the current threads run loop. It may not be 100% precise time-wise as it attempts to dequeue the message from the run loop and perform the selector.

Report Error

View answer Workspace Report Error Discuss

Q:

What is the difference between class selector and ID selector?

Answer

- Class selector can be given to an overall block. This is sometimes termed as block element as well, whereas ID selector identifies a unique name and a style for a specific element. 


- ID selector declares the style for only one particular element which can be differentiated from other element, whereas Class selector is being given for the whole complete block.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

Q:

What is CSS selector?

Answer

- Basically it is a string that identifies the elements to which a particular declaration or set of declarations will apply. 


- It can also be referred to as a link between the HTML document and the style sheet. 


- It is equivalent of HTML elements.


For example : 


A {text-indent: 12pt}


Here, the selector is A, which is called as type selector.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology