Learn and practice your skills with our MCQ question answers to improve your knowledge. MCQs list
Start Practice with MCQsQuizack 10 minutes test will assess your knowledge and give you comprehensive results along feedback.
Start QuizDownload Free Delphi MCQ questions answers PDF to practice and learn while are offline.
Download PDF
Used by 100s of Jobseekers and students
Focused questions for skill assessment
Premium questions with correct answers
Which of the following will connect a DataSource to a Table where the Datasource component is call DataSource1 and the Table component is called Table1?
DataSource1.Table:=Table1;
DataSource1.DataSet:=Table1;
DataSource1.Source:=Table1;
DataSource1.SetTable(Table1);
Answer:
DataSource1.DataSet:=Table1;
When will the code "Application.Terminate;" be executed in the code shown?
When the user presses the Cancel button
Every time the procedure is executed
When the user presses the Ok button
Never
Answer:
When the user presses the Ok button