Questions

Q:

Sociological analysis of religion is concerned with

A) the purpose of life B) which religions are true and which are false
C) learning the will of God D) patterns of religious activity and their effect on social life
 
Answer & Explanation Answer: D) patterns of religious activity and their effect on social life

Explanation:

Sociology of religion is the study of the beliefs, practices and organizational forms of religion using the tools and methods of the discipline of sociology.

 

Hence, Sociological analysis of religion is concerned with patterns of religious activity and their effect on social life.

Report Error

View Answer Report Error Discuss

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

0 2883
Q:

Where is the Forest Reserve Institute of India located

A) Bhopal B) Dehradum
C) Lucknow D) Delhi
 
Answer & Explanation Answer: B) Dehradum

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

7 2883
Q:

Most highly intelligent mammals are

A) Elephants B) Kangaroos
C) Whales D) Dolphins
 
Answer & Explanation Answer: D) Dolphins

Explanation:

Dolphins are the most highly intelligent mammals.

Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

9 2882
Q:

In the below puzzle, a word starts and ends with the same letter. Can you figure out what the word is?

_otato_

Answer

rotator

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles

18 2882
Q:

Which among the following crop is a major Rabi Crop of India?

A) Bitter gourd B) Cotton
C) Turmeric D) Barley
 
Answer & Explanation Answer: D) Barley

Explanation:

A major Rabi Crop of India is wheat and barley in second place.

Report Error

View Answer Report Error Discuss

8 2882
Q:

Cells with similar markers stick together and function as

A) Organs B) Tissues
C) Systems D) Organisms
 
Answer & Explanation Answer: B) Tissues

Explanation:

A tissue is an ensemble of similar cells and their extracellular matrix from the same origin that together carry out a specific function.

 

Hence, Cells with similar markers stick together and function as tissues.

Report Error

View Answer Report Error Discuss

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

2 2881
Q:

Write a c program for insertion sort.

Answer

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

  int i,j,s,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

  printf("After sorting: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2881
Q:

Which animal adaptation happened before the others?

A) Reproduction on land B) Development of a colelom
C) Tissue development D) Deuterostome development
 
Answer & Explanation Answer: C) Tissue development

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk

10 2880