Searching for "theater"

Q:

While watching 3D movies at the theater, we have to wear special glasses because?

A) The glasses allow our left and right eyes to see different images B) 3-D movies use special colors which cannot be sensed by the human eye
C) 3-D movies are brighter than ordinary movies and can hurt our eyes if seen directly D) The glasses allow both the eyes to see similar images
 
Answer & Explanation Answer: A) The glasses allow our left and right eyes to see different images

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

Q:

Which country has no cinema theaters?

A) Saudi Arabia B) Iraq
C) Pennsylvania D) None of the above
 
Answer & Explanation Answer: A) Saudi Arabia

Explanation:

Saudi Arabia is the country in the world to have no cinema theaters.

 Which_country_has_no_cinema_theaters1542869132.png image 

 

With the exception of one IMAX theater in Khobar by Khalid, there were no cinemas in Saudi Arabia from 1983 to 2018, although there was occasionally talk of opening movie theaters, and in 2008 conference rooms were rented to show the comedy Mennahi.

Report Error

View Answer Report Error Discuss

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

Q:

You are creating an ASP.NET page for selling movie tickets. Users select a region, and then they select from a list of cities in that region. The site displays the names and locations of movie theaters in the city selected by the user.


Your company, XYZ Brothers, maintains a list of theaters in a database table that includes the city, name, and street address of each theater. You want to minimize the time required to retrieve and display the list of theater names after a user selects the region and city.

 

 What should you do?

A) Modify the connection string to add the packet size property and set its values to 8192. B) Add the following directive to the page: OutputCache VaryByParam=?
C) Add the following directive to the page: OutputCache VaryByControl=?region;city? D) Modify the connection string to keep your database's connection pool as small as possible.
 
Answer & Explanation Answer: B) Add the following directive to the page: OutputCache VaryByParam=?

Explanation:

You can vary user control output to the cache by specifying the user control name and the parameter. We use the VaryByParam attribute of the  OutputCache  

 

Incorrect Answers: 

 

A: The Packet Size property of the Connection string is the size in bytes of the network packets sed to communicate with an instance of data provider. It is not an optimal property to change to optimize data retrieval.

 

C: The company database does not seem to include a region column.

 

D: If we keep the connection pool small we would allow less simulation connections. However, this would not minimize the required to retrieve and display the data.

Report Error

View Answer Report Error Discuss