Questions

Q:

Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.


Dyslexia is a perceptual disorder often occurring in persons of normal, or even above average intelligence. The reader is unable to perceive correctly what is on a page. Letters and numbers often appear reversed: "b" seems to be "d","quite" is "quiet" and "from" is "form". The reader tends to leave out letters or words or insert words or letters that are not there. Vowel and consonant sounds may be confused. Many dyslexics are left­handed or able to write with either hand. They often confuse left and right. Learning to speak may also be delayed beyond infancy. The condition seems to be inherited. It may persist into adulthood. However, with early recognition and specialized approaches to teaching reading, most dyslexics can learn to read.

Some researchers believe that latent dyslexia may be aggravated by the way reading is taught. The modern whole­word, or look­and­say, method seems to be more of a hindrance to learning for dyslexics than it is for ordinary pupils. The phonetic method of teaching students to learn letters and sound them out appears to achieve better reading results. The problem of words that cannot be sounded out ­ such as rough, laugh or through ­ is not solved by phonetics. These words must simply be memorized. However, for children with dyslexia the problem can be compounded by the failure of parents or teachers to recognize the condition. This can easily lead to emotional problems for dyslexic children, who cannot understand their failure to keep up with their classmates.


In Dyslexia, letters and figures often appear __________

A) Inverted B) Blurred
C) Reversed D) Clustered
 
Answer & Explanation Answer: C) Reversed

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2678
Q:

What is the name of the Indian Coast Guard Ship which has been decommissioned by the Indian navy recently ?

A) Sarathi B) Shaurya
C) Varuna D) Ayush
 
Answer & Explanation Answer: C) Varuna

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

5 2677
Q:

Which team has won the most number of ICC Cricket World Cup titles?

A) Australia B) England
C) India D) Pakistan
 
Answer & Explanation Answer: A) Australia

Explanation:

Cricket World cup Year wise winners list from its starting year.

 

Year  -  Winner score

1975  -  West Indies 

1979  -  West Indies 

1983  -  India 

1987  -  Australia 

1992  -  Pakistan 

1996  -  Sri Lanka 

1999  -  Australia 

2003  -  Australia 

2007  -  Australia 

2011  -  India 

2015  -  Australia 

 

Australia won most number of titles i.e, 5 times Cricket World Cup title.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

6 2676
Q:

Which of the following is not a video file extension?

A) .flv B) .mov
C) .mp3 D) None of the above
 
Answer & Explanation Answer: C) .mp3

Explanation:

.mp3 is audio file extension.

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

6 2676
Q:

The question below consists of a set of labelled sentences. Out of the four options given, select the most logical order of the sentences to form a coherent paragraph.
 
They were quite

A- I was fluent in English
B- fascinated, and were quick to
C- remark that they were surprised

A) BAC B) ACB
C) BCA D) ABC
 
Answer & Explanation Answer: C) BCA

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams
Job Role: Bank PO , Bank Clerk

0 2676
Q:

What would be the output of the following program?

main()

{

   struct emp

   {

        char *n;

        int age;

   };

   struct emp e1 = { "Dravid", 23};

   struct emp e2 = e1;

   strupr (e2.n);

   printf ("\n%s",e1.n);

}

Answer

DRAVID


When a structure is assigned, passed, or returned, the copying is done monolithically. This means that the copies of any pointer fields will point to the same place as the original. In other words, anything pointed to is not copied. Hence, on changing the name through e2.n it automatically changed e1.n

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2676
Q:

Write a c program for binary search.

Answer

#include<stdio.h>
int main(){

    int a[10],i,n,m,c=0,l,u,mid;

    printf("Enter the size of an array: ");
    scanf("%d",&n);

    printf("Enter the elements in ascending order: ");
    for(i=0;i<n;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);

    l=0,u=n-1;
    while(l<=u){
         mid=(l+u)/2;
         if(m==a[mid]){
             c=1;
             break;
         }
         else if(m<a[mid]){
             u=mid-1;
         }
         else
             l=mid+1;
    }
    if(c==0)
         printf("The number is not found.");
    else
         printf("The number is found.");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements in ascending order: 4 7 8 11 21
Enter the number to be search: 11
The number is found.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2676
Q:

What are the operating system components?

Answer

- Process management


- Main memory management


- File management


- I/O system management


- Secondary storage management


- Networking


- Protection system


- Command interpreter system

Report Error

View answer Workspace Report Error Discuss

2 2675