Questions

Q:

Vinegar is __________ .

A) diluted acetic acid B) glacial acetic acid
C) glacial formic acid D) diluted formic acid
 
Answer & Explanation Answer: A) diluted acetic acid

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

1 2066
Q:

When should you stop at green and go at red?

Answer

When you are eating a Watermelon, we eat what is red and stop at green layer.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: TOEFL , GRE , GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

2 2066
Q:

Write a c program to copy a data of file to other file.

Answer

#include<stdio.h>
int main(){
  FILE *p,*q;
  char file1[20],file2[20];
  char ch;
  printf("\nEnter the source file name to be copied:");
  gets(file1);
  p=fopen(file1,"r");
  if(p==NULL){
      printf("cannot open %s",file1);
      exit(0);
  }
  printf("\nEnter the destination file name:");
  gets(file2);
  q=fopen(file2,"w");
  if(q==NULL){
      printf("cannot open %s",file2);
      exit(0);
  }
  while((ch=getc(p))!=EOF)
      putc(ch,q);
  printf("\nCOMPLETED");
  fclose(p);
  fclose(q);
 return 0;
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2066
Q:

What is a job queue?

Answer

When a process enters the system it is placed in the job queue.

Report Error

View answer Workspace Report Error Discuss

0 2066
Q:

What is a device queue?

Answer

A list of processes waiting for a particular I/O device is called device queue.

Report Error

View answer Workspace Report Error Discuss

0 2066
Q:

Select the word with the correct spelling.

A) rootless B) xpanded
C) fulstop D) griling
 
Answer & Explanation Answer: A) rootless

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2066
Q:

Read the passage carefully and select the best answer to each question out of the given four alternatives.

 

By practicing mindfulness and other principles, we become more aware of and present to our fears and others’ fears, bearing witness as a way of healing and empowering. We see the spiritual path as intertwined with the path of social action, with contemplation and action parts of the same whole, each nourishing and guiding the other. Acknowledging that our well-being depends on others makes caring for others’ well-being a moral responsibility.


Through a “mindful citizen” exercise, we create a story articulating who we are as individuals who are also part of communities. This exercise helps us move beyond cynicism, complacency, and despair, instead infusing us with a sense of purpose. We embrace our gifts, resolving to do our part to promote a sense of common humanity as a means toward social justice.


With this exercise, I believe we can help students bridge their divides and replace anger and distrust with compassionate connections – just as I witnessed between Shirley and Tiffany.


Shirley returned to class after a brief hiatus, keeping a cool distance from Tiffany. But over the weeks spent together they gradually came to know each other. They practiced seeing and listening, sharing stories so different that they felt bewildered as to how they could overcome the gap. But they found that acknowledging their
differences led them to discover a place of deep connection in commonalities, such as being raised by grandmothers, and even wounds, including childhood trauma, that they never imagined existed.


In assessments of these classes, students say that these small groups become “healing communities,” where we overcome victimization and claim agency. Healing occurs as we transcend an “us vs. them” mentality, crossing borders and forging connections. These communities show a way of reducing intergroup prejudice and fostering inclusion based in psychology research and pedagogical practice.

 

What makes the others’ well-being a moral responsibility for us?

A) By way of our concerned nature. B) As our own well-being depends on others well-being.
C) It depends on one’s upbringing. D) It is mentioned as a fundamental duty in our Indian Constitution.
 
Answer & Explanation Answer: B) As our own well-being depends on others well-being.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2065
Q:

In the following passage some of the words have been left out. Read the passage carefully and select the correct answer for the given blank out of the four alternatives.

Truth is indeed a controversial aspect of ______. But almost always it can be justified as a moral principle on the basis of ______. When we talk about speaking the truth in order not to hide what, if hidden, will only prove damaging to others, we are emphasizing the ability to ‘feel’ for others. Again, often we purposely keep ourselves from communicating the truth as, once ______, it may hurt someone‘s feelings and sentiments. But keeping a person in the dark or denying him or her knowledge which he or she ought to have amounts to ______ another soul of its right to know that with which it has a ______.

Truth is indeed a controversial aspect of ______.

A) morality B) ability
C) civility D) debility
 
Answer & Explanation Answer: A) morality

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 2065