Searching for "stack"

Q:

In the given question, a statement divided into different segments is given. The first segment is fixed, rearrange the other segments to form a coherent statement.

As the files were being arranged/ been lost for several decades now (P)/ which were believed to have (Q)/ into a stack, the butler cam (R)/ across information about several of the family heirlooms (S)

A) RSQP B) PQRS
C) SRQP D) QSRP
 
Answer & Explanation Answer: A) RSQP

Explanation:

The most logical segment that can follow the first segment is R, 'being arranged into a stack'. This leaves us with only one option i.e. option 1. Hence, the correct answer is RSQP.

Report Error

View Answer Report Error Discuss

Filed Under: English

Q:

The given sentences, when properly sequenced, form a coherent paragraph. Each sentence is labelled with a letter. Choose the most logical order of the sentences from among the five given choices to construct a coherent paragraph keeping 1 as the first statement.

1) In Hindu mythology, when Shiva opens his third eye, it is considered a terrible warning for the cosmos.

A) In somewhat similar fashion, in 2017, women across the world seemed to declare war — on harassment, abuse, rape, inequality and every form of injustice.

B) Anger, however, is only one facet of the fight for empowerment. Concomitantly, the year saw women stack up achievements on an unprecedented scale.

C) It means he is angry enough to incinerate anything that comes in his way.

D) Across the world, there was a furious outpouring of rage against men in power, men on the street, men at home, and in families.

A) ABCD B) CBDA
C) DBAC D) DACB
 
Answer & Explanation Answer:

Explanation:

The correct sequence is CADB.

Report Error

View Answer Report Error Discuss

Filed Under: English

Q:

Closely stacked flattened sacs (plants only)

A) Vacuoles B) Lysosomes
C) Golgi apparatus D) None of the above
 
Answer & Explanation Answer: C) Golgi apparatus

Explanation:
Report Error

View Answer Report Error Discuss

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

Q:

To test the IP stack on your local host, which IP address would you ping?

A) 127.0.0.0 B) 1.0.0.127
C) 127.0.0.1 D) 127.0.0.255
 
Answer & Explanation Answer: C) 127.0.0.1

Explanation:

To test the localstack on your host, ping the loop back interface of 127.0.0.1

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

Q:

What layer in the TCP/IP stack is equivalent to the Transport layer of the OSI model?

A) Application B) Host-to-Host
C) Internet D) Network Access
 
Answer & Explanation Answer: B) Host-to-Host

Explanation:

The four layers of the TCP/IP stack (also called the DoD model) are Application/process, Host-to-Host, Internet, and Network Access. The Host-to-Host layer is equivalent to the Transport layer of the OSI model.

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

Q:

The DoD model (also called the TCP/IP stack) has four layers. Which layer of the DoD model is equivalent to the Network layer of the OSI model?

A) Application B) Host-to-Host
C) Internet D) Network Access
 
Answer & Explanation Answer: C) Internet

Explanation:

The four layers of the DoD model are Application/process, Host-to-Host, Internet, and Network Access. The Internet layer is equivalent to the Network layer of the OSI model.

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

Q:

Difference between Stack and Queue

Answer

Stack is a collection of objects that works in LIFO (Last in First out) mechanism while Queue is FIFO (First in First out). This means that the object that is inserted first is removed last in a stack while an object that is inserted first is removed first in a queue.

Report Error

View answer Workspace Report Error Discuss

Subject: C++

Q:

What do you mean by stack unwinding?

Answer

Stack unwinding is a process of calling all destructors for all automatic objects constructed at run time when an exception is thrown. Destructors are called between the places where the exception was thrown and where it is caught.

Report Error

View answer Workspace Report Error Discuss

Subject: C++