Tag: web technology
Questions Related to web technology
What are the core classes of the Struts 1.3 Framework?
Default Config file in Struts FrameWork?
What are components under view Part?
CODE 1 : proc sql ; title ’Oil Production/Reserves of Countries’; select p.country, barrelsperday ’Production’, barrels ’Reserves’ from sql.oilprod p, sql.oilrsrvs r where p.country = r.country order by barrelsperday desc; CODE 2: proc sql ; select p.country, barrelsperday ’Production’, barrels ’Reserves’ from sql.oilprod p inner join sql.oilrsrvs r on p.country = r.country order by barrelsperday desc; CODE 1 and CODE 2 are equivalent.True or False?
What is symfony?
What is the full form of YAML?
Which of the following is part of Model Layer in Symfony's MVC architecture?
Which of the following is not Symfony's Core Class?