Searching for "B;"

Q:

A*B means multiply A by B; A@B means divide A by B, A?B means add B to A and A=B means subtract B from A. Then find the value of 10*10 = 5*10 ? 50@10

A) 100 B) 45
C) 1000 D) 55
 
Answer & Explanation Answer: D) 55

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Coding and Decoding
Exam Prep: Bank Exams

Q:

The line segment AB intersects the straight line CD at B; AB will be smallest when ∠ ABD (in degrees) is

A) 30 B) 60
C) 90 D) 45
 
Answer & Explanation Answer: C) 90

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Volume and Surface Area
Exam Prep: Bank Exams

Q:

If A x B means A is to the south of B; A + B means A is to the north of B; A % B means A is to the east of B; A - B means A is to the west of B; then in P % Q + R - S, S is in which direction with respect to Q ?

A) South-East B) North-West
C) East D) West
 
Answer & Explanation Answer: A) South-East

Explanation:

P % Q + R - S
=> P is to the East of Q, who is to the North of R, who is to the West of S.
=> Q.....P
      R.....S
=> With respect to Q, S is to the South-East of Q.

Report Error

View Answer Report Error Discuss

Filed Under: Direction Sense Test
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk

Q:

What is the output of this program?

#include
        using namespace std;
        struct sec {
            int a;
            char b;
        };
        int main()
        {
            struct sec s ={25,50};
            struct sec *ps =(struct sec *)&s;
            cout << ps->a << ps->b;
            return 0;
        }

A) 252 B) 253
C) 254 D) 262
 
Answer & Explanation Answer: A) 252

Explanation:

In this program, We are dividing the values of a and b, printing it.

Report Error

View Answer Report Error Discuss

Filed Under: C++

Q:

What is the output of this program?

#include
        using namespace std;
        struct sec {
            int a;
            char b;
        };
        int main()
        {
            struct sec s ={25,50};
            struct sec *ps =(struct sec *)&s;
            cout << ps->a << ps->b;
            return 0;
        }

A) 252 B) 253
C) 254 D) 262
 
Answer & Explanation Answer: A) 252

Explanation:

In this program, We are dividing the values of a and b, printing it.

Report Error

View Answer Report Error Discuss

Filed Under: C++

Q:

What will be output of following c code?

void main()
{
struct india
{
char c;
float d;
};
struct world
{
int a[3];
char b;
struct india orissa;
};
struct world st ={{1,2,3},'P','q',1.4};
clrscr();
printf("%dt%ct%ct%f",st.a[1],st.b,st.orissa.c,st.orissa.d);
getch();
}

Answer

Output: 2 p q 1.400000

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

Q:

Which tab should you use to change the page orientation of a report?

A. Select the report tab; in Report Manager, select the Properties tab and select the Page Orientation

B. Click File Page Setup and select Page Orientation

C. In InfoView Preferences, change the default page orientation

D. Select the report page; in Report Manager, select the Properties tab and select the Page Orientation

Answer

Answer : D

Report Error

View answer Workspace Report Error Discuss

Subject: SAP BW

Q:

If A x B means A is to the south of B; A + B means A is to the north of B; A % B means A is to the east of B; A - B means A is to the west of B; then in P % Q + R - S, S is in which direction with respect to Q?

A) South-West B) South-East
C) North-East D) North-West
 
Answer & Explanation Answer: B) South-East

Explanation:

According to P % Q + R - S

 

 

S is in the South-East of Q.

Report Error

View Answer Report Error Discuss

Filed Under: Direction Sense Test