Questions

Q:

VPN's are implemented to provide

A) A secure connection through public networks B) Additional security for selected computers
C) A secure connection within a private network D) Additional encryption by using IPSec
 
Answer & Explanation Answer: A) A secure connection through public networks

Explanation:

VPNs_are_implemented_to_provide1561554026.png image

 

VPN's are implemented to provide a secure connection through public networks. A virtual private network extends a private network across a public network, and enables users to send and receive data across shared or public networks as if their computing devices were directly connected to the private network.

Report Error

View Answer Report Error Discuss

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

3 2335
Q:

What are the roles of glass-box and black-box testing tools?

Answer

Glass Box (or white box) testing is the process of giving i/p to the system and checking how the system processes i/p to generate o/p


Black Box testing is the process of giving i/p to the system and checking if the system is giving correct o/p without bothering how the o/p is generated.


As we can see from the definitions, the role of black box testing is to ensure that the o/p generated is correct. And role of white box testing is to ensure that methods used to generate the o/p are correct.

Report Error

View answer Workspace Report Error Discuss

Subject: Software Testing

0 2334
Q:

Which railway station became the first of South Central Railway zone to hoist a tricolour flag (100ft)?

A) Secunderabad B) Chennai
C) Bengaluru D) Panaji
 
Answer & Explanation Answer: A) Secunderabad

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2333
Q:

Select the antonym of
adulterate

A) attenuated B) purify
C) vitiated D) dilute
 
Answer & Explanation Answer: B) purify

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2333
Q:

Where does protein synthesis take place?

A) Nucleus B) Ribosomes
C) On the cell wall D) All of the above
 
Answer & Explanation Answer: B) Ribosomes

Explanation:

Protein synthesis take place in the cytoplasm where ribosomes are located as they are the machinery which are responsible for the protein synthesis.

Report Error

View Answer Report Error Discuss

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

3 2333
Q:

Which is the first payment bank in India?

A) Fino Payments Bank B) Airtel Payments Bank
C) Aditya Birla Payments Bank D) Paytm Payments Bank
 
Answer & Explanation Answer: B) Airtel Payments Bank

Explanation:

Airtel Payments Bank is the first payment bank in India. A payments bank is a new category of banks conceptualized by the Reserve Bank of India, which operates at a smaller scale than an actual bank and doesn't involve any credit risk. It can carry out most banking operations but can't advance loans or issue credit cards.

 


The RBI as of date has given licences to 11 payments bank of which six are currently operational. These include

  1. Aditya Birla Payments Bank,
  2. Airtel Payments Bank,
  3. India Post Payments Bank,
  4. Fino Payments Bank,
  5. Jio Payments Bank (and)
  6. Paytm Payments Bank.
Report Error

View Answer Report Error Discuss

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

0 2332
Q:

Who is the author of Meghdoot?

A) Shundraka B) Vishakhadatta
C) Kalidasa D) Chanakya
 
Answer & Explanation Answer: C) Kalidasa

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors
Exam Prep: Bank Exams

0 2332
Q:

Point out the error, ifany, in the followingb code?

typedef struct

{

     int data;

     NODEPTR link;

} *NODEPTR;

 

Answer

A typedef defines a new name for a type, and in simpler cases like the one shown below you can define a new structure type and a typedef for it at the same time.


typedef struct


{


    char name[20];


    int age;


} emp;


However, in the structure defined in this question, there is an error because a typedef declaration cannot be used until it is defined. In the given code fragment the typedef declaration is not yet defined at he point where the link field is declared.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2332