ประโยคที่ขีดเส้นใต้เป็น Fact หรือ Opinion
My third story is about death. I read a quote once that said, live each day as if it were your last and someday you’ll be right. Knowing that I will be dead soon was the most important tool to help me make big choices in life.
A. 
Fact
B. 
Opinion
2.
ประโยคนี้เป็น Fact หรือ Opinion
I was diagnosed with terminal pancreatic cancer.
A. 
Fact
B. 
Opinion
3.
ประโยคนี้เป็น Fact หรือ Opinion
But I was fortunate in that it turned out to be curable.
A. 
Fact
B. 
Opinion
4.
ประโยคนี้เป็น Fact หรือ Opinion
Although nobody wants to die, death is perhaps the most essential thing about life.
A. 
Fact
B. 
Opinion
5.
ประโยคนี้เป็น Fact หรือ Opinion
You should have the courage to follow your heart and intuition, they somehow already know what you want to become.
A. 
Fact
B. 
Opinion
6.
เลือกคำเชื่อมให้ถูกต้อง
Alcohol affects your conscious; ___________, you should never drink and drive.
A. 
However
B. 
Fortunately
C. 
Therefore
D. 
But
7.
เลือกคำเชื่อมให้ถูกต้อง
This restaurant has some of the best chefs in the town. ________, their service is excellent.
A. 
Moreover
B. 
Hence
C. 
Despite
D. 
So
8.
เลือกคำเชื่อมให้ถูกต้อง
We went out ________ the cold weather.
.Dear Learner,
This Assessment consists of questions to test your understanding on - C Programming
You may attempt the same and clarify doubts in WP Group ./ With your Faculty Member
Regards,
Team...
Questions: 20 | Attempts: 63 | Last updated: Mar 21, 2022
Sample Question
Point out the error, if any in the for loop
#include
int main()
{
int i=1;
for(;;) {
printf("%d\n", i++);
if(i>10)
break; }
return 0;
}
Questions: 10 | Attempts: 163 | Last updated: Mar 20, 2022
Sample Question
What is the output of the following code
class base{
public : virtual void func1()=0;
void func2() {
cout<<"\n In base, function2"; } }; //end of class
class derived : public base{
public : void fun3() {
cout<<"\n In derived , function3"; } };//end of class
int main(){
derived d;
d.fun3();
return 0; }