Searching for "reusable"

Q:

Which one of the following statements about reusable space vehicle of ISRO is not correct?

A) In June 2016, ISRO successfully launched India’s first reusable space vehicle. B) The space vehicle was launched from Satish Dhawan Space Centre at Sriharikota in Andhra Pradesh.
C) The reusable launch vehicle climbed to a height of 65 km before automatically steering back for landing. D) The vehicle was initially boosted by a rocket that contained liquid fuel.
 
Answer & Explanation Answer: A) In June 2016, ISRO successfully launched India’s first reusable space vehicle.

Explanation:

May 23, 2016 ISRO successfully flight-tested India’s first winged body aerospace vehicle operating in hypersonic flight regime. In this experimental mission, the HS9 solid rocket booster carrying RLV-TD lifted off from the First Launch Pad at Satish Dhawan Space Centre, Sriharikotaat 07:00 hr IST. After a successful flight of 91.1second, HS9 burn out occurred, following which both HS9 and RLV-TD mounted on its top coasted to a height of about 56 km. At that height, RLV-TD separated from HS9 booster and further ascended to a heightof about 65 km.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

Q:

You are a member of a team of developers creating several ASP.NET applications for XYZ. You want to create a reusable toolbar that will be used in each of the applications. The toolbar will be displayed at the top of each page viewed by the user.


The contents of the toolbar will vary depending on options each user selects when creating a profile.


You want to be able to add the toolbar to the ASP.NET toolbox for each of the developers on your team.What should you do?

A) Create a new Web Control Library project. Create the toolbar within a Web custom control. B) Add a new Web user control to your ASP.NET project. Create the toolbar within the Web user control.
C) Add a new Web Form to your ASP.NET project. Design the toolbar within the Web Form and save the Web Form with an .ascx extension. D) Add a new component class to your ASP.NET project. Design the toolbar within the designer of the component class.
 
Answer & Explanation Answer: A) Create a new Web Control Library project. Create the toolbar within a Web custom control.

Explanation:

Web custom controls are compiled code, which makes them easier to use but more difficult to create. You can add a Web custom control to the Toolbox and display it in a visual designer with full Properties window support and all the other design-time features of ASP.NET server controls. 

 

Incorrect Answers:

B: Web user controls are easy to make, but they can be less convenient to use in advanced scenarios such as this. Because Web user controls are compiled dynamically at run time they cannot be added to the Toolbox


C: A Web form would be inadequate.

 

D: The Component class Provides the base implementation for the IComponent interface and enables object-sharing between applications. It does not fit in this scenario.

Report Error

View Answer Report Error Discuss