单项选择题

听力原文: Few buildings on earth can compete with the legendary beauty of the Taj Mahal. Towering over the ancient Indian city of Agra, the Taj Mahal is the grandest monument to love ever created.
The lovers in this story are Ire 17th century Indian emperor Shah Jehan and his wife Mumtaz Mahal. She took a leading role in advising him, which is something unique for a woman to do for a husband who's an emperor. Over the course of their nineteen-year marriage she gave birth to 14 children. But in 1631 while trying to deliver their fifteenth -- she tragically died. He was heartbroken when she died. And after her death, he decided to build the world's greatest monument ever built, for love.
He ordered the royal architects to design the most beautiful building the world had known and decided to name it after his beloved, Mumtaz Mahal. He summoned twenty thousand laborers and sent wagons to all corners of his empire in search of precious metals and jewellery. And after seventeen years of construction, the monument was completed and his beloved empress was moved to her final resting place.
(33)
A.Because there are priceless treasures.
B.Because it is the most beautiful building.
C.Because it is the tomb for an empress.
D.Because it is the grandest monument to love ever created.

A.
B.
C.
(33)
A.Because
D.
B.Because
E.
C.Because
F.
D.Because
G.
热门 试题

未分类题
请完成下列Java程序:用一个边框布局来安排一个工具栏和一个卡片布局。工具栏可浮动,包括两个按钮,一个向前一个向后控制卡片的显示;卡片布局包括3张卡片,分别标识为card1、card2、card3。 注意;请勿改动main()主方法和其他已有语句内容,仅在下划线处填入适当的语句。 源程序代码文件清单如下: import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.border.LineBorder; public class ex20_2 { private static CardLayout cl=new CardLayout(); private static JPanel cp=new JPanel(); public static void main(String args[]) { JFrame. jf=new JFrame(); jf.setTitle('ex20_2'); Container c=jf.getContentPane(); JToolBar jtb=new JToolBar(); JButton btnNext=new JButton(new Imagelcon('next.gif')); JButton btnPre=new JButton(new ImageIcon('back.gif')); jtb.add(btnPre); jtb.add(btnNext); cp.setLayout(c1); Dimension dim=new Dimension(150,80); cp.setPreferredSize(dim); cp.setBorder(new LineBorder(Color.BLACK)); cp.add(new JLabel('card1',JLabel.CENTER),'card1'); cp.add(new JLabel('card2',JLabel.CENTER),'card2'); cp.add(new JLabel('card3',JLabel.CENTER),'card3'); c.add(jtb,BorderLayout.NORTH); c.add(cp,BorderLayout.CENTER); ActionListener al=new ActionResponse(); ______; ______; if.addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent we) { System.exit(0); } }); jf.pack(); jf.setVisible(true); } static class ActionResponse implements ActionListener { public void actionPerformed(ActionEvent ae) { if(ae.getActionCommand().equals('next')) c1.next(cp); else c1.previous(cp); } } }