Questions

Q:

A republic is a form of government where a state or country is

A) ruled by no one B) ruled by public
C) ruled by peoples representatives D) ruled by kings family
 
Answer & Explanation Answer: C) ruled by peoples representatives

Explanation:

A republic is a form of government where a state or country is ruled by peoples representatives. These representatives were elected by the people and must follow the rule of law under the constitution in his ruling.

Report Error

View Answer Report Error Discuss

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

3 2445
Q:

Which was the only Indus site with an artificial brick dockyard?

A) Lothal B) Dholka
C) Both A & B D) None of the above
 
Answer & Explanation Answer: A) Lothal

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2444
Q:

Project Procurement Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Select Sellers?

Answer

I. Inputs



  • Organizational process assets

  • Procurement management plan

  • Evaluation criteria

  • Procurement document package

  • Proposals

  • Qualified sellers list

  • Project management plan


                 - Risk register


                 - Risk related contractual agreements


II. Tools and Techniques



  • Weighting system

  • Independent estimates

  • Screening system

  • Contract negotiation

  • Seller rating systems

  • Expert judgment

  • Proposal evaluation techniques


III. Outputs



  • Selected sellers

  • Contract

  • Contract management plan

  • Resource availability

  • Procurement management plan (updates)

  • Requested changes

Report Error

View answer Workspace Report Error Discuss

0 2444
Q:

Convert the expression ((A + B) * C – (D – E) ^ (F + G)) to equivalent Prefix Notation

Answer

Prefix Notation:


^ - * +ABC - DE + FG

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2444
Q:

How would you obtain segment and offset addresses from a far address of a memory location?

Answer

#include "dos.h"


main()


{


    Char far *scr = ( char far *) 0xB8000000;


    Char *seg, *off;


    Seg = (char *) FP_SEG ( scr );


    Off = ( char *) FP_OFF ( scr );


}


 

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2444
Q:

Which of the following is a characteristic of the Ascomycota?

A) Sac formation B) Zygospore formation
C) Basidium formation D) All of the above
 
Answer & Explanation Answer: A) Sac formation

Explanation:

Ascomycota is a division or phylum of the kingdom Fungi that, together with the Basidiomycota, form the subkingdom Dikarya. Its members are commonly known as the sac fungi or ascomycetes. 

 

Hence, Sac formation is a characteristic of the Ascomycota fungi.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

2 2443
Q:

 Which isolation level does a database without logging default to?

A) committed read B) dirty read
C) mode ANSI D) repeatable read
 
Answer & Explanation Answer: B) dirty read

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

1 2442
Q:

Write a c program for selection sort.

Answer

include<stdio.h>
int main(){

  int s,i,j,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=0;i<s;i++){
      for(j=i+1;j<s;j++){
           if(a[i]>a[j]){
               temp=a[i];
              a[i]=a[j];
              a[j]=temp;
           }
      }
  }

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

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 4 5 0 21 7
The array after sorting is:  0 4 5 7 21

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2442