Searching for "POST."

Q:

The sentences given with blanks are to be filled with an appropriate word(s). Four alternatives are suggested for each question. For each question, choose the correct alternative and click the button corresponding to it.

I cannot conceive of _____________ accepting the post.

A) he B) his
C) him D) he'll
 
Answer & Explanation Answer: B) his

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

Q:

In each of the questions given below, a passage has been given which are either situational based or describes a scenario. Below each passage, a question has been given which is framed to make you to infer something out of it. Mark out the correct inference as your answer.
India's leading and most popular food delivery start-up, Swiggy landed in a soup on Wednesday, after four people claiming to be current and former employees allegedly revealed fraudulent
and unethical means practiced at the company, in a blog post.
Which of the following can be said about the allegations?

A) Defragmented B) Ambiguous
C) Definitive D) Anecdotal
 
Answer & Explanation Answer:

Explanation:

Defragmented means to run a process that collects fragments of files and sorts them into contiguous sections on one or more hard disks or hard disk partitions, thus speeding up file
management.
Ambiguous means to be of uncertain nature or significance.
Definitive means clearly defined or formulated.
Anecdotal means to have the character of an anecdote.
Speculative means not based on fact or investigation.
Hence, the correct answer is 5.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT

Q:

Ajay and his wife Reshmi appear in an interview for two vaccancies in the same post. The Probability of Ajay's selection is 1/7 and that of his wife Reshmi's selection is 1/5. What is the probability that only one of them will be selected?

A) 5/7 B) 1/5
C) 2/7 D) 2/35
 
Answer & Explanation Answer: C) 2/7

Explanation:

P( only one of them will be selected) = p[(E and not F) or (F and not E)] 

 = PEFFE 

 

PEPF+PFPE

 

 =17×45+15×67=27

Report Error

View Answer Report Error Discuss

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

Q:

Explain when to use GET or POST. Provide example for both the ways.

Answer

Both GET and POST are used to collect data from a form. However, when security is desired $_POST should be used. When the $_ POST variable is used, all variables used are NOT displayed in the URL. Also, they have no restrictions to the length of the variables. GET should be used when the interaction with the form is more like a question. For e.g. firing a query etc. POST should be used more often when the interaction is more like an order or the interaction changes the state of the resource.


POST example:


<form action="sample.php" method="post">


Name: <input type="text" name="name" />


Age: <input type="text" name="age" />


<input type="submit" />


</form>


On clicking submit the URL resembles to: https://www.mysamplesite.com/sample.php


The sample.php file can be used for catching the form data using $_POST 


Hello <?php echo $_POST["name"]; ?>.<br />


You are <?php echo $_POST["age"]; ?> years old!


 


GET EXAMPLE


<form action="sample.php" method="get">


Name: <input type="text" name="name" />


Age: <input type="text" name="age" />


<input type="submit" />


</form>


On clicking submit the URL resembles to : https://www.mysamplesite.com/sample.php?name=jim&age=37


The sample.php file can be used for catching the form data using $_GET 


Hello <?php echo $_GET["name"]; ?>.<br />


You are <?php echo $_GET["age"]; ?> years old!

Report Error

View answer Workspace Report Error Discuss

Subject: PHP

Q:

A man and his wife appear in an interview for two vacancies in the same post. The probability of husband's selection is (1/7) and the probability of wife's selection is (1/5). What is the probability that only one of them is selected ?

A) 2/7 B) 1/7
C) 3/4 D) 4/5
 
Answer & Explanation Answer: A) 2/7

Explanation:

Probability_35.jpg

Report Error

View Answer Report Error Discuss

Filed Under: Probability

Q:

Two trains having equal lengths, take 10 seconds and 15 seconds respectively to cross a post. If the length of each train is 120 meters, in what time (in seconds) will they cross each other when traveling in opposite direction?

A) 10 B) 25
C) 12 D) 20
 
Answer & Explanation Answer: C) 12

Explanation:

Speed of train 1 = 12010m/sec = 12 m/sec 

Speed of train 2 =12015m/sec  = 8 m/sec 

if they travel in opposite direction, relative speed = 12 + 8 = 20 m/sec

distance covered = 120 + 120 = 240 m

time = distance/speed = 240/20 = 12 sec

Report Error

View Answer Report Error Discuss

Filed Under: Problems on Trains