Questions

Q:

Who was the Emperor of Russia during Russia revolution ?

A) Nicholas I B) Nicholas II
C) Alexander I D) Alexander II
 
Answer & Explanation Answer: B) Nicholas II

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World History

1 2093
Q:

The world's most liveable city 2018?

A) Melbourne B) Damascus
C) Dhaka D) Vienna
 
Answer & Explanation Answer: D) Vienna

Explanation:

Vienna has become the world's most pleasant city to live in by topping the Global Liveability Index of the Economist Intelligence Unit by dislodging Melbourne, the Austrian capital.

 

While Damascus retained the last place and Dhaka, Bangladesh's capital was in second last place in the annual survey examined 140 metropolitan cities.

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

2 2092
Q:

Which works are protected by copyright?

A) Ideas B) Architectural works
C) Procedures D) Names
 
Answer & Explanation Answer: B) Architectural works

Explanation:

 

 Copyright law safeguards the expression of thoughts and facts, not simply the thoughts and actualities. Thoughts are fair diversion for everybody to express in their own words.

 

Works that are protected by copyright are ::

 

Literary works,

 

Musical works, including any accompanying words

 

Dramatic works, including any accompanying music

 

Pantomimes and choreographic works

 

Pictorial, graphic, and sculptural works

 

Motion pictures and other audiovisual works

 

Sound recordings

 

Architectural works.

Report Error

View Answer Report Error Discuss

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

3 2092
Q:

Which Lok Sabha Elections 2019 start from April 11 is this in India?

A) 14th B) 15th
C) 16th D) 17th
 
Answer & Explanation Answer: D) 17th

Explanation:

The Lok Sabha Elections 2019 that are starting from April 11 of 2019 in India is 17th Lok Sabha Elections.

Report Error

View Answer Report Error Discuss

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

0 2092
Q:

Visceral muscle is another name for

A) Cardiac muscle B) Smooth muscle
C) Skeletal muscle D) None of the above
 
Answer & Explanation Answer: B) Smooth muscle

Explanation:

Visceral muscle is another name for Smooth muscle.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

2 2091
Q:

How do you differentiate the roles of Quality Assurance Manager and Project Manager?

Answer

Quality Assurance Manager (QA Manager) defines the process to be followed at each phase of SDLC. He defines the standards to be followed, the documents to be maintained and sets the standard for the product.


Where as it is the Project Manager’s responsibility to ensure that the things defined by QA manager are being implemented. He develops the product from start to finish with his team and ensures that the product which is to be rolled out is Defect free and it reaches the standards and views defined by QA Manager.


QA managers can audit the process for certain time periods which are being handled by the Project Manager.

Report Error

View answer Workspace Report Error Discuss

Subject: Software Testing

0 2091
Q:

What would be the output of the following program, if the array beigns at address 65486?

main()

{

    int arr[] = {12,14,15,23,45};

    printf ("%u %u", arr, &arr);

}

Answer

65486  65486

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2091
Q:

C program to find whether a number is palindrome or not.

Answer

 #include<stdio.h>
int main(){
    int num,r,sum=0,temp;

    printf("Enter a number: ");
    scanf("%d",&num);

    temp=num;
    while(num){
         r=num%10;
         num=num/10;
         sum=sum*10+r;
    }
    if(temp==sum)
         printf("%d is a palindrome",temp);
    else
         printf("%d is not a palindrome",temp);

    return 0;
}

Sample output:
Enter a number: 131
131 is a palindrome

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2091