Questions

Q:

Logical puzzle

Take from a pack of cards all the Aces, Kings, Queens and Jacks.
Arrange them in a 4 × 4 square so that every row, column and diagonal contains one card of each value (A,J,Q,K) and one card of each suit (Heart, Spade, Diamond, Club).

Answer

Our Solution:


Here is one solution of many:


 


Take_from_a_pack_of_cards_all_the_Aces,_Kings,_Queens_and_Jacks._1585550868.jpg image


 






Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles Exam Prep: CAT , Bank Exams

35 7070
Q:

The International Kite Festival (Uttarayan) will be started from which of the following states?

A) Telangana B) Karnataka
C) Odisha D) Gujarat
 
Answer & Explanation Answer: D) Gujarat

Explanation:

The 30th International Kite Festival (Uttarayan) will be held in Gujarat from January 8 to 13, 2017. Apart from this, three other international kite festivals will be held in different parts of India viz. Telangana International Kite Festival will be held in Hyderabad on January 14 and 15, the Delhi International Kite Festival from January 16 to 17 and the Belgaum International Kite Festival from January 18 to 22.

Report Error

View Answer Report Error Discuss

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

19 7064
Q:

Write a c program for linear search.

Answer

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

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

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

    printf("Enter the elements of the array: ");
    for(i=0;i<=n-1;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);
    for(i=0;i<=n-1;i++){
         if(a[i]==m){
             c=1;
             break;
         }
    }
    if(c==0)
         printf("The number is not in the list");
    else
         printf("The number is found");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements of the array: 4 6 8 0 3
Enter the number to be search: 0
The number is found

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

2 7063
Q:

The prime meridian passes through

A) Paris B) Greenwich
C) New York D) Delhi
 
Answer & Explanation Answer: B) Greenwich

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

13 7061
Q:

The magnetic moment (spin only) of  [NiCl4]2-is

A) 1.41 BM B) 1.82 BM
C) 5.46 BM D) 2.82 BM
 
Answer & Explanation Answer: D) 2.82 BM

Explanation:

Hybridisation of Ni is e-  

Unpaired 3d8in  is 2 

So Ω = n(n+2)BM=2x4 = 8 = 2.82BM

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE

10 7059
Q:

How do you go about familiarizing yourself with the products you sell?

Answer

Retail products often change seasonally.  Can you quickly update yourself on all the new information so you can be prepared to sell the new inventory to customers as soon as it lands on the shelf


 

Report Error

View answer Workspace Report Error Discuss

Subject: Retail

7 7054
Q:

Jalal-ud-din Muhammad Akbar was proclaimed Emperor in

A) 1556 AD B) 1557 AD
C) 1558 AD D) 1560 AD
 
Answer & Explanation Answer: A) 1556 AD

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

9 7043
Q:

The first battle of Panipat (1526) was fought between

A) Barbar and Daulat Khan B) Barbar and Ibrahim Lodi
C) Barbar and Alam Khan D) Barbar and Rana Sanga
 
Answer & Explanation Answer: B) Barbar and Ibrahim Lodi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

8 7023