{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of the following code?int x=10; int y=20; cout 5);", "options": ["0", "1", "10", "20"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is the correct way to declare a pure virtual function?", "options": ["virtual void func() = 0;", "void virtual func() = 0;", "virtual void func() {}", "void func() = virtual;"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int x=5; int y=++x*3; cout << y;", "options": ["18", "15", "20", "17"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output?char str[]=\"ABC\"; cout << str[1];", "options": ["A", "B", "C", "Compilation error"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct syntax for array initialization?", "options": ["int arr[3]={1,2,3};", "int arr[]={1,2,3};", "int arr[3]={1,2};", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is NOT a valid C++ data type?", "options": ["short", "float", "real", "long"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int a=5, b=2; cout << a%b;", "options": ["1", "2", "0", "3"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output?int x=1; if(x==1) cout << \"True\"; else cout << \"False\";", "options": ["True", "False", "1", "0"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct about operator precedence?", "options": ["* has higher precedence than +", "+ has higher precedence than *", "== has higher precedence than *", "= has higher precedence than =="], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true for friend function?", "options": ["Cannot take arguments", "Must be member function", "Can access private and protected members", "Cannot return values"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int a=2; cout << a<<++a;", "options": ["23", "33", "24", "Undefined behavior"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true about references?", "options": ["Cannot be NULL", "Can be reassigned", "Declared with *", "Only works with classes"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int a=5; cout << sizeof(a);", "options": ["2", "4", "8", "Depends on compiler"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is a correct STL container?", "options": ["vector", "stack", "queue", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true about templates?", "options": ["Only works with int", "Enables generic programming", "Cannot return value", "Cannot have multiple parameters"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int x=1; x=x<<3; cout << x;", "options": ["1", "8", "3", "0"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct way to call a base class constructor from derived class?", "options": ["Derived() : Base() {}", "Derived() { Base(); }", "Base() : Derived() {}", "Base() {}"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int x=10; int* p=&x; cout << p;", "options": ["10", "Address of x", "0", "Compilation error"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct way to swap two integers using pointers?", "options": ["void swap(int* a, int* b){ int t=*a; *a=*b; *b=t; }", "void swap(int a, int b){ int t=a; a=b; b=t; }", "void swap(int &a, int &b){ int t=a; a=b; b=t; }", "void swap(int a, int* b){ int t=a; a=*b; *b=t; }"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int a=10; cout << ++a << a++;", "options": ["11 11", "11 12", "12 11", "10 11"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct about virtual destructor?", "options": ["Ensures derived destructor is called", "Must be pure", "Cannot have parameters", "Cannot have body"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int a=5; cout >1;", "options": ["2", "2.5", "Compilation error", "5"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct to declare a 2D array?", "options": ["int arr[2][3];", "int arr[3][2];", "int arr[][]=new int[2][3];", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int a=5; int b=3; cout << a|b;", "options": ["6", "7", "1", "0"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true about inline function?", "options": ["Reduces function call overhead", "Always increases code size", "Cannot take parameters", "Must return void"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int a=10; int b=20; cout << (a!=b);", "options": ["0", "1", "10", "20"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is a correct way to allocate dynamic memory for int array?", "options": ["int* p=new int[10];", "int* p=(int*)malloc(10);", "int* p=new int;", "int p[10];"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct for multiple inheritance?", "options": ["class C : public A, public B {}", "class C : A : B {}", "class C : A, B {}", "class C : B : A {}"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int a=2; int b=3; cout << (a&&b);", "options": ["0", "1", "2", "3"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true about scope resolution operator (::)?", "options": ["Accesses global variables", "Accesses class static members", "Both A and B", "None"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int x=5; int y=++x + ++x; cout << y;", "options": ["12", "13", "11", "Undefined behavior"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct about const function in class?", "options": ["Cannot modify any class member", "Cannot call non-const member functions", "Both A and B", "None"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int x=10; cout >2);", "options": ["2", "2.5", "3", "40"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct about try-catch block?", "options": ["catch must immediately follow try", "Multiple catch allowed", "Both A and B", "None"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int a=5; int b=10; cout b ? a : b);", "options": ["5", "10", "0", "Compilation error"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true for char arrays?", "options": ["Always null-terminated", "Can store numbers", "Can be used as strings", "Both A and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int arr[]={1,2,3,4}; cout << sizeof(arr)/sizeof(arr[0]);", "options": ["3", "4", "1", "Compilation error"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true about default arguments?", "options": ["Must be at end of parameter list", "Can be anywhere", "Cannot have multiple defaults", "None"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int x=1; int y=2; cout << (x<y? x:y);", "options": ["1", "2", "0", "Compilation error"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is NOT a valid C++ comment?", "options": ["// Comment", "/* Comment */", "# Comment", "Both A and B are valid"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int a=10; int* p=&a; *p=20; cout << a;", "options": ["10", "20", "Address", "Compilation error"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct for overloading << operator?", "options": ["ostream& operator<<(ostream &out, const Class &obj){}", "void operator<<(Class &obj){}", "Class operator<<(ostream &out){}", "ostream operator<<(Class &obj){}"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int x=5; cout 0 ? \"Positive\" : \"Negative\");", "options": ["Compilation error", "Negative", "5", "Positive"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true about typecasting?", "options": ["static_cast checks type at compile time", "dynamic_cast checks type at runtime", "reinterpret_cast allows low-level cast", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int x=3; int y=x++ + ++x; cout << y;", "options": ["7", "8", "9", "Undefined behavior"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true about STL map?", "options": ["Stores unique keys", "Key-value pairs", "Sorted by key", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int x=5; int* p=NULL; cout << *p;", "options": ["0", "Garbage", "Runtime error", "Compilation error"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct about static member function?", "options": ["Cannot access non-static members", "Belongs to class, not object", "Can be called using class name", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int a=10; cout << a– << –a;", "options": ["10 8", "10 9", "9 8", "11 9"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Processor that translates the source code into object code as a whole is called…", "options": ["Assembler", "Linker", "Compiler", "Debugger"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "……….. is a procedural language…", "options": ["FORTRAN", "C", "ADA", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Bjarne Stroustrup developed…", "options": ["C language", "C++", "BASIC", "FORTRAN"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Between the angle brackets the name of ………. is given…", "options": ["Header file", "Functions", "Body", "None of them"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true about a header file…", "options": ["Definitions of various constants", "Definitions of various data types", "Prototypes of standard library functions", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "If a semicolon is not used at the end of a statement, what message will be displayed by C++?", "options": ["Semicolon missing", "Terminator missing", "Error in statements", "Statement missing"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The linker creates a file with the extension…", "options": [".cpp", ".ccp", ".obj", ".exe"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The term used for running the program on the computer is…", "options": ["Compiling", "Loading", "Linking", "Executing"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Syntax errors occur due to…", "options": ["Missing semicolon", "Incorrect spelling", "Missing any brace", "Program without declaring"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Shortcut key used to compile and run the program in C++ is…", "options": ["Alt+F9", "Alt+F5", "Ctrl+F9", "F9"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "A compiler can detect which type of error?", "options": ["Logical error", "Runtime error", "Syntax error", "All of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following operators can be categorized…", "options": ["Binary operators", "Unary operators", "Both A and B", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-c-plus-plus-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following statements is true about multidimensional arrays in C++?", "options": ["They can only be 2D arrays", "The size of each dimension must be known at compile time", "They can store elements of different types", "They are always dynamically allocated"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs-questions-answers-c/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How do you declare a 2D array of 3 rows and 4 columns in C++?", "options": ["int arr[3][4];", "int arr(3,4);", "int arr[4][3];", "int arr{3,4};"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs-questions-answers-c/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of the following code? int arr[3] = {5}; cout << arr[1];", "options": ["0", "5", "Garbage value", "Compilation error"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs-questions-answers-c/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following correctly accesses the last element of an array int arr[10]; ?", "options": ["arr[0]", "arr[10]", "arr[last]", "arr[9]"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs-questions-answers-c/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which operator is used to get the address of the first element of an array?", "options": ["*", "&", ">", "%"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs-questions-answers-c/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What happens if you partially initialize an array int arr[5] = {1, 2}; ?", "options": ["Compiler error occurs", "Remaining elements are set to zero", "Remaining elements are garbage values", "Array size reduces to 2"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs-questions-answers-c/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is a valid way to pass an array to a function in C++?", "options": ["void func(int arr[])", "void func(int arr[5])", "void func(int *arr)", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs-questions-answers-c/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of the code? int arr[] = {1,2,3}; cout << sizeof(arr);", "options": ["Size of array in bytes", "3", "0", "Compilation error"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs-questions-answers-c/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Can an array in C++ be initialized with a for loop during declaration?", "options": ["Yes", "Only for global arrays", "No", "Only for character arrays"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs-questions-answers-c/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true about array names in C++?", "options": ["Array name is a pointer to the first element", "Array name can be assigned to another pointer", "Array name can be incremented", "Array name stores the array size"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs-questions-answers-c/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How do you declare a constant array whose elements cannot be modified?", "options": ["const int arr[5];", "int const arr[5];", "Both (A) and (B)", "int arr[5] const;"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs-questions-answers-c/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Identify the error in the following code snippet:int arr[5];arr[5] = 10;int a b", "options": ["Array index out of bounds", "Syntax error in declaration", "Cannot assign value to array element", "No error, code works fine"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs-questions-answers-c/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the index of the first element in a C++ array?", "options": ["0", "1", "1", "Depends on array type"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/c-array-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following correctly declares an array of 10 integers in C++?", "options": ["int arr(10);", "int[10] arr;", "int arr = new int[10];", "int arr[10];"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/c-array-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What happens if you try to access an array element out of its bounds in C++?", "options": ["Compiler error occurs.", "Program automatically resizes the array.", "Undefined behavior occurs.", "The element is set to zero."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/c-array-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How many elements are there in the array int nums[5] = {10, 20, 30};?", "options": ["3", "5", "2", "4"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/c-array-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following statements about C++ arrays is true?", "options": ["The size of an array can be changed at runtime.", "Arrays automatically check for out-of-bounds access.", "Arrays are stored in contiguous memory locations.", "Arrays can store elements of different data types."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/c-array-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What will be the output of the following code?int arr[] = {1, 2, 3, 4};cout << arr[2];", "options": ["1", "2", "4", "3"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/c-array-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following correctly finds the number of elements in a statically declared array arr?", "options": ["sizeof(arr) / sizeof(int)", "sizeof(int) / sizeof(arr)", "length(arr)", "arr.size()"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/c-array-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the correct way to initialize all elements of an array to zero?", "options": ["int arr[5] = {0};", "int arr[5] = (0);", "int arr[5] = [0];", "int arr[5] = { };"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/c-array-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of the following code snippet?int arr[3] = {10, 20, 30};cout << *(arr + 1);", "options": ["10", "20", "30", "Compilation error"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/c-array-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The std::map in C++ stores elements as:", "options": ["Key-value…\" /> {\"@context\":\"https://schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https://t4tutorials.com/#/schema/WebSite\",\"url\":\"https://t4tutorials.com/\",\"name\":\"T4Tutorials.com\",\"description\":\"Learn C programming, Data Structures tutorials, exercises, examples, programs, Database, Software, Data Mining, MCQs\",\"inLanguage\":\"en-US\",\"potentialAction\":{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https://t4tutorials.com/search/{search_term_string}/\"},\"query-input\":\"required name=search_term_string\"},\"publisher\":{\"@type\":\"Organization\",\"@id\":\"https://t4tutorials.com/#/schema/Organization\",\"name\":\"T4Tutorials.com\",\"url\":\"https://t4tutorials.com/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://t4tutorials.com/wp-content/uploads/logo-t4tutorials-2020.webp\",\"contentUrl\":\"https://t4tutorials.com/wp-content/uploads/logo-t4tutorials-2020.webp\",\"width\":229,\"height\":48,\"inLanguage\":\"en-US\",\"caption\":\"logo t4tutorials 2024\",\"contentSize\":\"2778\"}}},{\"@type\":\"WebPage\",\"@id\":\"https://t4tutorials.com/c-standard-library-mcqs-questions-answers/\",\"url\":\"https://t4tutorials.com/c-standard-library-mcqs-questions-answers/\",\"name\":\"C++ STANDARD LIBRARY MCQs Questions Answers | T4Tutorials.com\",\"description\":\"1: Which header file is required to use the vector container in C++?", "\\u003Clist\\u003E", "\\u003Cvector\\u003E", "\\u003Carray\\u003E", "\\u003Cdeque\\u003E"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which function is used to add an element at the end of a vector?", "options": ["push_front()", "append()", "push_back()", "insert()"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The Standard Template Library (STL) in C++ includes:", "options": ["Containers", "Algorithms", "Iterators", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which STL container allows fast insertion and deletion at both ends?", "options": ["vector", "list", "deque", "array"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The std::set container stores:", "options": ["Duplicate elements", "Unique elements in sorted order", "Elements in insertion order", "Key-value pairs"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "To sort a vector in ascending order using STL, which function is used?", "options": ["sort()", "arrange()", "order()", "organize()"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which STL container provides random access to elements and dynamic resizing?", "options": ["vector", "list", "set", "map"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The std::queue container follows which type of order?", "options": ["LIFO (Last In First Out)", "FIFO (First In First Out)", "Random", "Sorted"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The std::stack container in STL is implemented using:", "options": ["Queue", "Vector or deque", "List only", "Array only"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "std::algorithm header provides:", "options": ["Mathematical functions", "Standard algorithms like sort, find, and copy", "I/O operations", "Memory allocation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What type of elements does std::multiset allow?", "options": ["Only unique elements", "Duplicates allowed", "Only integers", "Only strings"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which iterator is used to traverse a map container?", "options": ["vector iterator", "map iterator", "set iterator", "list iterator"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which function removes the last element from a vector?", "options": ["pop_front()", "remove_back()", "pop_back()", "erase_back()"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "std::unordered_map differs from std::map in that:", "options": ["It stores elements in sorted order", "It stores elements in hash table with no order guarantee", "It does not allow duplicate keys", "It is slower than map"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which STL container is most efficient for frequent insertion/deletion in the middle?", "options": ["vector", "list", "deque", "array"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "std::pair is used to store:", "options": ["Two values of same type", "Two values of possibly different types", "Key-value pair only", "Multiple elements"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is NOT part of STL?", "options": ["Container", "Iterator", "Algorithm", "Exception handling"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The find() function in STL algorithms returns:", "options": ["Index of element", "Iterator pointing to the element if found, else end iterator", "Boolean value", "Element itself"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which STL container is suitable for implementing a priority queue?", "options": ["vector", "queue", "deque", "priority_queue"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "std::reverse() is used to:", "options": ["Reverse the elements of a container", "Sort elements", "Find an element", "Insert element"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which container automatically sorts its elements as they are inserted?", "options": ["vector", "set", "list", "deque"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/c-standard-library-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": We can access which kind of data members in the derived class?", "options": ["Private data members", "Protected data members", "Public data members", "B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": We can’t access which kind of data members in the derived class?", "options": ["Private data members", "Protected data members", "Public data members", "B and C"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": We can access which kind of data members outside the class?", "options": ["Private data members", "Protected data members", "Public data members", "B and C"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": We can’t access which kind of data members outside the class?", "options": ["Private data members", "Protected data members", "Public data members", "A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Which of the following is the correct syntax to declare a class?", "options": ["Private data members", "Protected data members", "Public data members", "A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Which of the following is the correct syntax to define a function for a class?", "options": ["class T4Tutorials{public: void display(){cout<<“welcome”;}};", "class T4Tutorials{public: void display();}; void T4Tutorials::display(){cout<<“welcome”;}", "Both are correct", "Both are wrong"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What is the correct syntax to declare object for a class?", "options": ["int main(){T OBJ1; OBJT1.display();}", "int main(){T OBJ1,OBJ2; OBJT1.display();}", "int main(){OBJ1 T; OBJT1.display();}", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": How many ways to use existing classes to define a new class?", "options": ["4", "1", "2", "3"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Composition is called a ___________.", "options": ["Aggregation", "Containment", "Provision", "Both A and D"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": When a data member of the new class is an object of another class is called ___________.", "options": ["A new class is an aggregate of another", "A new class is a composite of other objects", "A new class is inherited", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": We can define a new class from an existing class, which of the following is used?", "options": ["Composition", "Inheritance", "Constructors", "Both A and D"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Use of one or more classes within the definition of another class is also called ___________.", "options": ["Provision", "Inheritance", "Composition", "None of them"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Using keywords as an identifier causes is called ________.", "options": ["Syntax error", "Logical error", "Run time error", "None of them"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Rectangle symbol in flowchart is called _________.", "options": ["Connector symbol", "Action symbol", "Terminating symbol", "Begin symbol"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": All keywords bool, catch, private, public, this and throw are introduced in ____________.", "options": ["C++ Language", "C language", "Both C and C++", "None of them"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": First object-oriented language ‘Smalltalk’ appeared in _________ year.", "options": ["1982", "1992", "1972", "2000"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": A member function will access data and return value to the user when it is __________.", "options": ["deleted", "called", "declared", "initialized"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Data in an object-oriented language is safe from accidental alteration as it is __________.", "options": ["error-free", "bugged", "compressed", "hidden"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": If we want to read a data item in an object, the member function in an object is __________.", "options": ["delete", "call", "declare", "initialize"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Data encapsulation and data hiding are key features of __________.", "options": ["object-oriented language", "procedural language", "machine language", "structural language"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/classes-and-inheritance-mcqs-in-c-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "We can define a binary operator as:", "options": ["The operator that performs its action on two operands", "The operator that performs its action on three operands", "The operator that performs its action on any number of operands", "The operator that performs its action on a single operand"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/friend-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Correct example of a binary operator is _______.", "options": ["—", "+", "++", "Dereferencing operator (*)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/friend-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "____ is a correct example of a unary operator.", "options": ["/", "—", "&", "=="], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/friend-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "When we use an operator on user-defined class objects, operator overloading:", "options": ["Always be used must", "Never be used must", "With three exceptions must never be used", "With three exceptions must always be used"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/friend-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Ternary operator is shown as _____.", "options": ["===", "&&", "?:", "|||"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/friend-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Overloading the addition (+) operator is correct function name OF:", "options": ["operator(+)", "operator_+", "operator+", "operator:+"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/friend-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "________ operators cannot be overloaded?", "options": ["The [ ] operator", "The . operator", "The & operator"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/friend-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Choose the correct statement which is false about the operator:", "options": ["Overloading cannot change how an operator works on built-in types", "New operators can never be created", "The precedence of an operator cannot be changed by overloading", "Operators can change the number of arguments certain overloaded they take"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/friend-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "To implicitly overload the += operator:", "options": ["Only the = operator needs to be overloaded", "Only the + operator needs to be overloaded", "The += operator cannot be overloaded implicitly", "Both the + and = operators need to be overloaded"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/friend-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the primary purpose of an inline function in C++?", "options": ["Reduce function call overhead", "Reduce memory usage", "Improve readability", "Prevent recursion"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which keyword is used to declare an inline function?", "options": ["static", "const", "inline", "virtual"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is a valid inline function?", "options": ["inline int sum(int a, int b) { return a + b; }", "int inline sum(int a, int b) { return a + b; }", "sum inline int(int a, int b) { return a + b; }", "static inline sum(int a, int b) { return a + b; }"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Can a recursive function be declared inline?", "options": ["Yes, always", "No, never", "Only for single recursion", "It depends on compiler"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which statement is true about inline functions?", "options": ["Inline functions are always faster than normal functions", "Inline is only a request; compiler may ignore it", "Inline functions cannot have parameters", "Inline functions cannot return a value"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output of this code?inline int add(int a, int b) { return a+b; }int main() { cout << add(2,3); }", "options": ["2", "3", "5", "Compilation error"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is NOT a suitable candidate for an inline function?", "options": ["Very small functions", "Functions with loops", "Functions with a single return statement", "Accessor functions in classes"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Can inline functions be defined inside a class?", "options": ["Yes", "No", "Only if static", "Only if friend"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct for inline function definition outside class?", "options": ["inline int MyClass::func() { return 1; }", "int inline MyClass::func() { return 1; }", "MyClass::func inline int() { return 1; }", "static inline MyClass::func() { return 1; }"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the maximum number of statements recommended in an inline function?", "options": ["1", "2–5", "10", "No strict limit"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Can inline functions be overloaded?", "options": ["Yes", "No", "Only in templates", "Only if return type differs"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Can inline functions have static variables inside?", "options": ["Only if global", "No", "Only if const", "Yes"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following statements is true?", "options": ["Inline functions are expanded at compile time", "Inline functions are expanded at runtime", "Inline functions cannot call other functions", "Inline functions must not return a value"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output of this code?inline int sq(int x) { return x*x; }int main() { cout << sq(4); }", "options": ["2", "4", "8", "16"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Can an inline function be recursive and still inline?", "options": ["Yes, all recursive calls are inlined", "No, recursion prevents inlining", "Only if compiler supports", "Inline is ignored for recursion"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is a drawback of inline functions?", "options": ["Slower execution", "Code bloat if function is large", "Cannot be used with templates", "Cannot return a value"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Is it necessary to define the inline function before it is called?", "options": ["Yes", "No", "Only for templates", "Only if global"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following cannot be inline?", "options": ["Member function defined inside class", "Function with loop", "Const function", "Function returning value"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?inline int f(int a) { return a+1; }int main() { int x = f(5); cout << x; }", "options": ["5", "6", "Compilation error", "Garbage"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which statement is true regarding inline function and compiler?", "options": ["Compiler always enforces inline", "Compiler may ignore inline request", "Inline functions cannot be optimized", "Inline functions are always recursive"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/inline-function-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Select one of the true statements for the compiler:", "options": ["The input of the compiler is source program", "It translates the source code into object code as a whole", "The output of the compiler is object code", "All of above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-introduction-to-programming/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": The pseudocode is…", "options": ["Algorithm", "Flowchart", "Object code", "Coding"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-introduction-to-programming/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": The language processor translates the program into object code as a whole…", "options": ["Linker", "Debugger", "Compiler", "Interpreter"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-introduction-to-programming/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Finding and solving errors in the source code is…", "options": ["Desk checking", "Debugging", "Decoding", "Testing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-introduction-to-programming/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Translates the source code into machine language…", "options": ["Operating system", "Programming language", "Language processor", "All of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-introduction-to-programming/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": The step by step procedure for solving a problem…", "options": ["Programming", "Algorithm", "Planning", "Flowchart"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-introduction-to-programming/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": ……language is not an object oriented programming language…", "options": ["Visual Basic", "C", "C++", "Java"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-introduction-to-programming/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Communication between user and the computer is…", "options": ["Programming language", "Software", "Syntax", "English language"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-introduction-to-programming/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Parameter passing mechanisms (call by value, reference)(MCQs) | T4Tutorials.com Skip to content T4Tutorials.com Home Homepage About Us Privacy Policy Jobs Openings Our Services Tutorials C++ DBMS OOP OS SE Theory Of Automata Software Testing Data Mining Data Structures Distributed Database HTML CSS Javascript PHP Projects Research Research Topics Research Questions List of Journals of Computer Science Jobs Test Pakistani Jobs PPSC FPSC Jobs Syllabus MCQs PAF ARMY NAVY Indian Jobs Papers MCQs Contact Email & Call us Youtube – Subscribe with us Facebook – Like our page Whatsapp – Follow Channel Open Search Search for: Main Menu Parameter passing mechanisms (call by value, reference)(MCQs) By Prof. Dr. Fazal Rehman Shamil, Last Updated:September 6, 2024 What is call by value?", "options": ["Passing the address of an argument to a function", "Passing a copy of the value of the argument to a function", "Passing a reference to the argument to a function", "Modifying the original variable directly"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Passing a copy of the value of the argument to a function What is call by reference?", "options": ["Passing the address of an argument to a function", "Passing a copy of the value to a function", "Creating a duplicate variable for the function", "Using global variables instead of parameters"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Passing the address of an argument to a function In call by value, what happens when the function modifies the parameter?", "options": ["The original argument is modified", "A copy of the original argument is modified", "The function returns an error", "Both the copy and original argument are modified"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "A copy of the original argument is modified In call by reference, what happens when the function modifies the parameter?", "options": ["The original argument is modified", "A copy of the original argument is modified", "The function returns an error", "Only local variables are affected"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The original argument is modified Which parameter passing mechanism is more memory-efficient for large data structures?", "options": ["Call by value", "Call by reference", "Call by value-return", "Call by copy"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Call by reference What is the primary disadvantage of call by value?", "options": ["The function cannot modify the original argument", "The function can modify the original argument", "It uses too much memory when passing small data types", "It passes the address of the variable"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The function cannot modify the original argument Which of the following is true for call by reference?", "options": ["It is safer than call by value", "It allows the function to modify the original argument", "It copies the value of the argument", "It prevents modification of the original argument"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "It allows the function to modify the original argument When using call by reference, the argument is passed as: a) A constant value b) A reference to the memory location c) A copy of the value d) An immutable object Answer: b) A reference to the memory location Which of the following statements is true regarding call by value?", "options": ["The changes made to the parameter inside the function affect the original argument", "The original argument remains unaffected by changes in the function", "Call by value passes the memory address of the argument", "Call by value consumes less memory than call by reference"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The original argument remains unaffected by changes in the function In C++, which operator is used for passing arguments by reference?", "options": ["*", "&", "%", "$"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "& What is the default parameter passing mechanism in C++?", "options": ["Call by reference", "Call by value", "Call by copy", "Call by name"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Call by value Which of the following is an advantage of call by reference?", "options": ["Prevents accidental modification of variables", "Saves memory by avoiding copies of large data structures", "Avoids the use of pointers", "Does not affect the original data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Saves memory by avoiding copies of large data structures What happens if you modify the parameter in a function using call by value?", "options": ["The original value is changed", "The modified value is retained after the function call", "The changes are only visible within the function", "A reference to the original value is returned"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The changes are only visible within the function In call by reference, which of the following does the function access?", "options": ["The actual value of the argument", "A copy of the argument", "The memory location of the argument", "A pointer to a temporary copy of the argument"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The memory location of the argument Which parameter passing mechanism provides the highest level of security for protecting the original data?", "options": ["Call by reference", "Call by value", "Call by copy", "Call by address"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Call by value What is a potential risk of using call by reference?", "options": ["Memory is duplicated", "The function cannot modify the original argument", "The function can inadvertently modify the original argument", "It uses too much memory"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The function can inadvertently modify the original argument In call by reference, what happens if a function alters the value of a parameter?", "options": ["The original argument remains unchanged", "A temporary copy is altered", "The original argument is modified", "The program throws an exception"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The original argument is modified Which parameter passing method is most suitable for passing primitive data types (e.g., int, char)?", "options": ["Call by reference", "Call by value", "Call by reference and call by value", "Call by pointer"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Call by value In C++, what is the result of passing an argument by reference using the & operator?", "options": ["A new copy of the argument is created", "The argument is passed as a reference to its memory location", "The argument is converted into a pointer", "The argument is cast to a different data type"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The argument is passed as a reference to its memory location Which of the following types of functions benefit the most from call by reference?", "options": ["Functions that require large data structures", "Functions that do not modify the input", "Functions that only perform mathematical calculations", "Functions that process constant values"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Functions that require large data structures Which of the following can lead to unintentional side effects when using call by reference?", "options": ["Modifying the value of a parameter inside the function", "Passing constants as arguments", "Using local variables", "Using global variables"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Modifying the value of a parameter inside the function When a pointer is passed to a function in C++, it is an example of: a) Call by reference b) Call by value c) Call by copy d) Call by constant Answer: a) Call by reference Which of the following statements is true for call by value?", "options": ["It passes the reference of the argument", "It makes the function parameter an alias for the original argument", "The function operates on a copy of the argument", "It directly modifies the original variable"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The function operates on a copy of the argument Which of the following ensures that the original argument is unchanged after a function call?", "options": ["Call by reference", "Call by value", "Call by address", "Call by constant reference"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Call by value In C++, which keyword can be used to prevent a function from modifying a reference parameter?", "options": ["const", "final", "static", "inline"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "const Which parameter passing method is best suited for large objects or arrays?", "options": ["Call by value", "Call by reference", "Call by copy", "Call by return"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Call by reference What is the behavior of an argument passed by value if it is an object?", "options": ["A reference to the object is passed", "The object itself is passed", "A copy of the object is passed", "The object cannot be passed by value"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "A copy of the object is passed In C++, call by reference can be implemented using which of the following?", "options": ["Pointers", "References", "Both pointers and references", "Copy constructors"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Both pointers and references Which of the following prevents a function from modifying the original object passed by reference?", "options": ["Using the const keyword with the reference", "Passing the object by value", "Using global variables", "Using static variables"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Using the const keyword with the reference Which of the following is NOT a parameter passing method?", "options": ["Call by value", "Call by reference", "Call by content", "Call by name"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Call by content What is the impact of passing large objects by value?", "options": ["It saves memory", "It is computationally efficient", "It incurs a performance overhead due to copying", "It prevents side effects"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "It incurs a performance overhead due to copying What happens if you pass an array by value in C++?", "options": ["A reference to the array is passed", "A copy of the entire array is passed", "The array cannot be passed by value", "Only the first element is passed"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The array cannot be passed by value When should you use call by reference in C++?", "options": ["When you want to avoid modifying the original data", "When you need to modify the original argument", "When working with constants", "When passing small primitive types"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "When you need to modify the original argument What is a key advantage of call by reference in function calls?", "options": ["It avoids modifying the original variable", "It reduces memory usage for large data types", "It creates a copy of the variable", "It prevents the function from modifying the argument"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "It reduces memory usage for large data types How are reference parameters different from pointer parameters in C++?", "options": ["References are dereferenced using *", "Pointers directly access the memory location", "References are syntactically simpler to use than pointers", "Pointers cannot be used for call by reference"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "References are syntactically simpler to use than pointers Which of the following ensures efficient memory usage when passing large structures to a function?", "options": ["Call by value", "Call by reference", "Call by constant", "Call by return"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Call by reference What does a const reference prevent?", "options": ["The function from changing the reference value", "The reference from pointing to a different object", "The function from changing the actual argument value", "Passing by reference"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The function from changing the actual argument value Which parameter passing method is typically used to modify objects or large data types in C++?", "options": ["Call by copy", "Call by value", "Call by reference", "Call by constant"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Call by reference Which method of parameter passing should be used when the function must modify the passed data?", "options": ["Call by value", "Call by reference", "Call by constant", "Call by content"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Call by reference Which of the following is used to ensure that a function can access and modify the original argument passed?", "options": ["Call by value", "Call by pointer or call by reference", "Call by constant", "Call by immutable"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Call by pointer or call by reference Which of the following can lead to accidental modifications of variables in other functions?", "options": ["Call by value", "Call by reference", "Call by constant", "Call by address"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Call by reference What happens when a global variable is passed by reference to a function?", "options": ["The function creates a local copy of the global variable", "The function modifies the global variable directly", "The global variable remains unchanged", "A new copy is allocated in the heap"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The function modifies the global variable directly What is the most significant difference between call by reference and call by pointer?", "options": ["Call by reference is more secure", "Call by pointer requires explicit dereferencing", "Call by reference requires memory allocation", "Call by pointer modifies the actual data while call by reference does not"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Call by pointer requires explicit dereferencing Which of the following functions cannot be executed with call by reference?", "options": ["Function to modify an integer", "Function to swap two numbers", "Function to concatenate strings", "Function that modifies a constant variable"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Function that modifies a constant variable In C++, a reference is similar to a: a) Constant pointer b) Array c) Function pointer d) Global variable Answer: a) Constant pointer Which of the following statements is true about call by reference using a pointer in C++?", "options": ["It requires explicit dereferencing to access the value", "The function operates on a copy of the pointer", "The original value cannot be modified", "It prevents accidental modifications to the pointer"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "It requires explicit dereferencing to access the value What is one potential issue when using call by pointer instead of call by reference?", "options": ["Call by pointer is less efficient", "The pointer can accidentally be reassigned to another memory location", "The pointer cannot be modified", "It always leads to segmentation faults"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The pointer can accidentally be reassigned to another memory location Which keyword is used in C++ to define a function parameter that cannot be modified?", "options": ["static", "const", "volatile", "register"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "const What happens if you pass a reference to a function and the reference is not initialized?", "options": ["The program crashes", "The reference is assigned a default value", "It results in undefined behavior", "A compiler error occurs"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "A compiler error occurs When is call by reference more advantageous than call by value?", "options": ["When passing small data types like integers", "When passing large data structures like arrays or objects", "When you do not want to modify the argument", "When performance is not a concern"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parameter-passing-mechanisms-call-by-value-referencemcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of the following code?int a = 10;int *p = &a;cout << *p;", "options": ["0", "Address of a", "10", "Compilation error"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is the correct syntax to declare a pointer to an integer?", "options": ["int ptr;", "int *ptr;", "ptr int*;", "int& ptr;"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What will happen if you try to dereference a null pointer?", "options": ["Runtime error", "Compilation error", "Prints 0", "Prints garbage value"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of this code?int a = 5, b = 10;int *p = &a;*p = b;cout << a;", "options": ["5", "10", "Compilation error", "Garbage value"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What does the & operator do in pointer context?", "options": ["Returns the value stored at pointer", "Dereferences the pointer", "Declares a reference", "Returns the address of a variable"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following will correctly access the value pointed to by pointer p?int *p;", "options": ["&p", "*p", "p", ">p"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What will the following code print?int x = 20;int *p = &x;*p = *p + 5;cout << x;", "options": ["20", "25", "Compilation error", "Garbage value"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following statements is correct about pointers?", "options": ["Pointer must point to a variable of same type", "Pointer can point to any variable of any type", "Pointer stores the value of the variable", "Pointer cannot point to another pointer"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of this code?int a = 3, b = 4;int *p = &a, *q = &b;*p = *p + *q;cout << a << \" \" << b;", "options": ["7 4", "3 4", "3 7", "Compilation error"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What happens if you increment a pointer?", "options": ["Pointer value increases by 1", "Compilation error", "Pointer points to next memory of same type", "Pointer value decreases"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is wrong with this code?int *p;*p = 5;", "options": ["Nothing", "Dereferencing uninitialized pointer", "Syntax error", "p should be int"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How can you declare a pointer to a pointer?", "options": ["int **ptr;", "int ptr2;", "int &ptr;", "int *ptr2;"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of this code?int arr[] = {1,2,3};int *p = arr;cout << *(p+1);", "options": ["1", "Garbage", "3", "2"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which statement is correct?", "options": ["Pointer arithmetic depends on size of type", "Pointer arithmetic is always +1", "Pointers cannot be compared", "Pointer arithmetic is undefined"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output?int a = 10;int *p = &a;cout << p;", "options": ["10", "Address of a", "Compilation error", "Null"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What will this code output?int x = 5;int *p = &x;int **q = &p;**q = 15;cout << x;", "options": ["5", "Garbage", "Compilation error", "15"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which is the correct way to allocate memory dynamically for an integer?", "options": ["int *p = new int;", "int p = new int;", "int p = int*;", "int *p = malloc(sizeof(int));"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is wrong in this code?int *p = NULL;cout << *p;", "options": ["Nothing", "Dereferencing null pointer", "Syntax error", "Pointer should be int"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output of this code?int a = 3;int *p = &a;int *q = p;*q = 7;cout << a;", "options": ["7", "3", "Compilation error", "Garbage"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which statement is true about pointers and arrays?", "options": ["Array name is a constant pointer", "Arrays cannot be accessed using pointers", "Pointer cannot point to array element", "Array name stores the value of first element"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-solved-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which one is the best description of polymorphism?", "options": ["It is the ability for undefined message/data to be processed in at least one way", "It is the ability for a message/data to be processed in more than one form", "It is the ability for many messages/data to be processed in many ways", "none of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The languages that support classes but not polymorphism is called?", "options": ["child Class-based language", "Class-based language", "Object-based language", "Procedure Oriented language"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which one is the language that does not support polymorphism but supports classes?", "options": ["C#", "Ada", "C++", "Java"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The feature that if the same message is passed to objects of several different classes and all of those can respond in a different way then it is called?", "options": ["Inheritance", "Classes", "Polymorphism", "none of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which type of function shows polymorphism among the following?", "options": ["Inline function", "Virtual function", "Undefined functions", "Class member functions"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "In case of using abstract class or function overloading, the function is supposed to be called first?", "options": ["Local function", "Function with the highest priority in the compiler", "Global function", "none of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which one of the following can’t be used for polymorphism?", "options": ["Member functions overloading", "Static member functions", "global member function", "Constructor overloading"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which one of the following can show polymorphism?", "options": ["Overloading ||", "Overloading &&", "Overloading <<", "Overloading +="], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Polymorphism is also possible in C language. Is it correct?", "options": ["Yes", "No", "both A & B", "none of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The problem may arise if we use abstract class functions for polymorphism in OOP?", "options": ["All classes are converted as an abstract class", "All the derived classes must implement the undefined functions", "abstract class must have derived a class", "Derived classes can’t redefine the function"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is not true for polymorphism?", "options": ["It is a feature of OOP", "Ease in the readability of a program", "Helps in redefining the same functionality", "Increases overhead of function definition always"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "If two classes derive one base class and redefine a function of the base class, also overload some operators inside the body of the class. Among these two things of function and operator overloading, the polymorphism is used where?", "options": ["Function overloading only", "Operator overloading only", "Either function overloading or operator overloading because polymorphism can be applied only once in a program", "Both of these are using polymorphism"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which class or set of classes can illustrate polymorphism in the following code:", "options": ["Only class student can show polymorphism", "All class student, topper and average together can show polymorphism", "Only class student and topper together can show polymorphism", "none of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of the following code?", "options": ["its base class its derived class", "its base class its derived class", "its derived class it’s base class", "none of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of the following program:", "options": ["Its school education system", "its school education system", "its education system", "none of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The provision of a single interface to entities of different types is called?", "options": ["polymorphism", "dimorphism", "trimorphism", "none of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Using operation or function in different ways depending on what they are operating on is called?", "options": ["classes", "inheritance", "polymorphism", "dimorphism"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Run time polymorphism is achieved only when a ……………….. is accessed through a pointer to the base class.", "options": ["static function", "Real function", "Member function", "Virtual function"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "A class serves as base class for many derived classes it is called:", "options": ["polymorphism", "multipath inheritance", "hierarchical inheritance", "none of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "The two or more classes serve as base class for a derived class, then this situation is called:", "options": ["Polymorphism", "multiple inheritance", "encapsulation", "none of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/polymorphism-mcqs-in-object-oriented-programmingoop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is a valid C++ identifier?", "options": ["_myVar", "2variable", "#count", "my-var"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of the following code?int x = 5; cout << ++x;", "options": ["5", "6", "4", "Compilation error"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the size of an int on most 64-bit systems?", "options": ["2 bytes", "4 bytes", "8 bytes", "Depends on compiler"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is NOT a valid loop in C++?", "options": ["for", "while", "do-while", "foreach"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output?int a = 10, b = 20; cout << (a & b);", "options": ["30", "0", "20", "10"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What will be the output?int x = 3; int y = x++; cout << y;", "options": ["3", "4", "2", "Compilation error"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is a correct way to declare a pointer to int?", "options": ["int* p;", "int p*;", "int &p;", "int p;"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What will happen if you divide an int by 0?", "options": ["Returns 0", "Runtime error", "Undefined behavior", "Compile-time error"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of this code?char c = 'A'; cout << ++c;", "options": ["A", "B", "66", "Compilation error"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is used for dynamic memory allocation?", "options": ["malloc()", "calloc()", "new", "alloc()"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int x = 5; if(x = 0) cout << \"Yes\"; else cout << \"No\";", "options": ["Yes", "No", "Compilation error", "Garbage"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which keyword is used to define a constant in C++?", "options": ["constant", "const", "final", "immutable"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output?int arr[3] = {1,2,3}; cout << arr[1];", "options": ["0", "1", "2", "3"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true about references in C++?", "options": ["Must be initialized when declared", "Can be NULL", "Can be reassigned", "Use & operator to declare"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output?int x = 7; cout >1);", "options": ["3", "4", "7", "14"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct to define a class?", "options": ["class MyClass {};", "MyClass class {};", "class = MyClass {};", "define class MyClass {};"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is the correct syntax for a constructor?", "options": ["void MyClass() {}", "MyClass() {}", "constructor MyClass() {}", "def MyClass() {}"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int a=2, b=3; cout << (a^b);", "options": ["5", "1", "6", "0"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct to declare a function pointer?", "options": ["pointer int fp(int);", "int* fp(int);", "int fp*(int);", "int (*fp)(int);"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output?int a = 10; int* p = &a; cout << *p;", "options": ["0", "Address of a", "10", "Compilation error"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is used to handle exceptions?", "options": ["try-catch", "throw-catch", "if-else", "switch-case"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which operator is used to allocate memory dynamically in C++?", "options": ["malloc", "new", "alloc", "calloc"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What will be the output?int x=10; cout << (x==10 ? \"Yes\" : \"No\");", "options": ["Yes", "No", "Compilation error", "Undefined"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct for multi-level inheritance?", "options": ["class C : B : A {}", "class C : public B : public A {}", "class C : public B, public A {}", "class C : A, B {}"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int x=5; int y=++x + x++; cout << y;", "options": ["11", "12", "10", "9"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true about virtual functions?", "options": ["Must be static", "Enables runtime polymorphism", "Must return void", "Cannot be overridden"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which keyword is used to prevent inheritance?", "options": ["final", "static", "const", "immutable"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int a=5; int b=2; cout << a/b;", "options": ["2", "2.5", "3", "Compilation error"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true about inline functions?", "options": ["Compiler always inlines", "Cannot return value", "Cannot have parameters", "Reduces function call overhead"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output?int a = 5; cout << a<< endl << ++a;", "options": ["5 6", "6 5", "5 5", "Compilation error"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is a proper template syntax?", "options": ["template void func(T a){}", "template func void(T){}", "template func(T){}", "template void func(T){}"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int x=1; x = x << 2; cout << x;", "options": ["1", "2", "4", "4"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true about destructors?", "options": ["Called automatically when object goes out of scope", "Must take parameters", "Can be overloaded", "Must return int"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is NOT a valid access specifier?", "options": ["public", "private", "protected", "friendly"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int x=5; int y=–x + x–; cout << y;", "options": ["7", "8", "9", "6"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true about const pointer?", "options": ["Pointer cannot change address it points to", "Value pointed by pointer cannot change", "Both A and B", "None"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following allows function overloading?", "options": ["Same name, same parameters", "Same name, different parameters", "Different name, same parameters", "Different name, different parameters"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is a syntax error?", "options": ["int a = 5;", "cout << \"Hello\";", "int 5b = 10;", "return 0;"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int x = 10; x += 5; cout << x;", "options": ["5", "10", "15", "Compilation error"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is a correct function declaration?", "options": ["int sum(int a, int b);", "int sum(a, b);", "sum int(int a, int b);", "int sum(int, b);"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int a=5; cout << (a!=5 ? \"Yes\" : \"No\");", "options": ["Yes", "No", "Compilation error", "Undefined"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true for pointers?", "options": ["Pointers store value", "Pointers store address", "Pointers store type", "Pointers store size"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct way to pass by reference?", "options": ["void func(int a) {}", "void func(&a) {}", "void func(*a) {}", "void func(int &a) {}"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int x=1; int y=++x*2; cout << y;", "options": ["4", "2", "3", "1"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true about static variables in function?", "options": ["Retains value across function calls", "Deleted after function exits", "Must be initialized every call", "Cannot be accessed outside function"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output?int arr[3]={1,2,3}; cout << arr[3];", "options": ["1", "2", "Garbage", "Compilation error"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true for operator overloading?", "options": ["Can overload all operators", "Cannot overload assignment operator", "Cannot overload sizeof operator", "Can overload conditional operator"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output?int x=10; cout << x%3;", "options": ["1", "2", "3", "0"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/programming-c-mcqs-for-programming-competition/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What is the correct way to declare a one-dimensional array of integers in C?", "options": ["int array[10];", "int array;", "array int[10];", "int[10] array;"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Which of the following correctly initializes an array of size 5 with all zeros in C++?", "options": ["int array[5] = {0};", "int array = {0, 0, 0, 0, 0};", "int array[5] = {0, 0, 0, 0, 0};", "int array[5] = {0, 0, 0, 0};"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What is the index of the last element in an array of size n?", "options": ["n", "n-1", "n+1", "0"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What is the time complexity of accessing an element in a one-dimensional array by its index?", "options": ["O(n)", "O(log n)", "O(1)", "O(n^2)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What is the value of the first element in an array initialized as int array[3] = {1, 2, 3};?", "options": ["0", "1", "2", "3"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": How do you pass a one-dimensional array to a function in C?", "options": ["void function(int array[10]);", "void function(int array[]);", "void function(int *array);", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What is the output of the following code? int array[5] = {1, 2, 3, 4, 5}; printf(“%d”, array[2]);", "options": ["1", "2", "3", "4"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Which of the following statements about one-dimensional arrays is false?", "options": ["Arrays can store multiple values of the same type.", "Array elements are stored in contiguous memory locations.", "The size of an array must be a constant expression in C.", "The size of an array can be changed after declaration."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": How can you find the number of elements in an array int array[10]; in C?", "options": ["sizeof(array) / sizeof(array[0])", "sizeof(array) / sizeof(int)", "sizeof(array[0]) / sizeof(array)", "sizeof(int) / sizeof(array)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What is the initial value of an uninitialized array in C?", "options": ["0", "Random garbage values", "-1", "Null"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Which of the following correctly accesses the third element of an array named data?", "options": ["data[3]", "data[2]", "data[1]", "data[0]"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Which operation is not typically performed directly on one-dimensional arrays?", "options": ["Insertion", "Deletion", "Traversal", "Random Access"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": In which of the following scenarios is a one-dimensional array preferred over other data structures?", "options": ["When you need dynamic resizing", "When you need fast random access to elements", "When you need to store key-value pairs", "When you need a Last-In-First-Out (LIFO) data structure"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What is the result of the following code? int array[4] = {1, 2}; printf(“%d”, array[3]);", "options": ["0", "1", "2", "Undefined behavior"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": How do you correctly assign the value 10 to the first element of an array arr in Java?", "options": ["arr = 10;", "arr[0] = 10;", "arr[1] = 10;", "arr[] = 10;"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Which of the following statements about arrays in Java is true?", "options": ["Arrays can have elements of different types.", "The length of an array can be changed after it is created.", "The size of an array must be specified when it is created.", "Arrays are passed by value to methods."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What is the output of the following code in Python? arr = [1, 2, 3, 4, 5]; print(arr[-1])", "options": ["1", "2", "4", "5"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Which function would you use to find the length of an array arr in Python?", "options": ["size(arr)", "len(arr)", "length(arr)", "count(arr)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": How do you declare an array of 10 integers in JavaScript?", "options": ["var array = new Array(10);", "var array = [10];", "int array[10];", "array = (10);"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What is the output of the following code? int array[5] = {1, 2, 3, 4, 5}; printf(“%d”, array[5]);", "options": ["1", "5", "0", "Undefined behavior"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What is a multi-dimensional array?", "options": ["An array with one dimension", "An array with more than one dimension", "A single value", "A collection of strings"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": How do you declare a two-dimensional array in C?", "options": ["int array[];", "int array[10][10];", "int array[10];", "int array[10, 10];"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": How is a two-dimensional array stored in memory?", "options": ["As a single contiguous block of memory", "As linked lists", "As separate arrays", "Randomly in memory"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What is the index of the first element in a two-dimensional array in C?", "options": ["[0][0]", "[1][1]", "[1][0]", "[0][1]"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": How do you access the element in the 3rd row and 2nd column of a two-dimensional array in Java?", "options": ["array[2][1]", "array[3][2]", "array[1][2]", "array[2][3]"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What is the time complexity of accessing an element in a multi-dimensional array?", "options": ["O(n)", "O(log n)", "O(1)", "O(n^2)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": How do you initialize a three-dimensional array in C++ with zeros?", "options": ["int array[3][3][3] = {0};", "int array[3][3][3] = 0;", "int array[3][3][3];", "int array[3][3][3] = { {0} };"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Which of the following correctly initializes a two-dimensional array in Python?", "options": ["array = [[0 for x in range(5)] for y in range(5)]", "array = [0][0]", "array = [0 for x in range(5)][0 for y in range(5)]", "array = [[0]*5]*5"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What is the output of the following code in Python? array = [[1, 2], [3, 4]]; print(array[1][0])", "options": ["1", "2", "3", "4"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Which of the following is a correct way to declare a multi-dimensional array in JavaScript?", "options": ["var array = [[1, 2], [3, 4]];", "var array = {1, 2, 3, 4};", "var array = [[1, 2, 3, 4]];", "var array = [1, [2, 3], 4];"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What is the default value of elements in a multi-dimensional array of integers in Java?", "options": ["0", "null", "undefined", "random garbage value"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": How do you find the total number of elements in a two-dimensional array int array[3][4]; in C++?", "options": ["3 + 4", "3 * 4", "sizeof(array)", "sizeof(array) / sizeof(array[0][0])"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Which function would you use to find the number of rows in a two-dimensional array arr in Python?", "options": ["len(arr)", "len(arr[0])", "size(arr)", "count(arr)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": How do you iterate through all elements of a two-dimensional array in Java?", "options": ["Using nested for loops", "Using a single for loop", "Using a while loop", "Using the array’s length property"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What is the result of the following code? int array[2][2] = {{1, 2}, {3, 4}}; printf(“%d”, array[1][1]);", "options": ["1", "2", "3", "4"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": How do you declare a two-dimensional array with 3 rows and 4 columns in Java?", "options": ["int[][] array = new int[3][4];", "int[] array = new int[3][4];", "int[][] array = new int[4][3];", "int array[][] = new int[3][4];"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Which of the following is a valid way to assign a value to an element in a three-dimensional array in C++?", "options": ["array[1][2] = 10;", "array[1][2][3] = 10;", "array[1, 2, 3] = 10;", "array[1][2][3][4] = 10;"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": How do you access the element in the 2nd row and 3rd column of a two-dimensional array in C++?", "options": ["array[3][2]", "array[2][3]", "array[2][2]", "array[1][2]"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What is the output of the following code in C++? int array[2][2] = {{1, 2}, {3, 4}}; cout << array[0][1];", "options": ["1", "2", "3", "4"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": How do you pass a multi-dimensional array to a function in C?", "options": ["void function(int array[10][10]);", "void function(int array[][]);", "void function(int array);", "void function(int *array);"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/multi-dimensional-arrays-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "The Spelling and Grammar tool is used for?", "options": ["Corrects Spelling Errors As You Type", "Indicates Grammatical Errors", "Identifies Words With Capitalization Problems", "All Of Above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Which is not included in a Font Style?", "options": ["Bold", "Regular", "Italic", "Superscript"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select the shortcut key to display Hyperlink Fields in a Word Document.", "options": ["Ctrl+Alt Key", "Shift + F9", "Ctrl+F", "None"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Define Landscape.", "options": ["Page Orientation", "A Font Style", "Paper Size", "Page Layout"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Which is the Default Page Orientation of Word?", "options": ["Portrait", "Long Sides", "Landscape", "Double Long Side"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select from the following is Not Available on the Ruler of MS Word Screen?", "options": ["Tab Stop Box", "Center Indent", "Left Indent", "Right Indent"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Removing unnecessary parts of an image is known as", "options": ["Hiding", "Cropping", "Ordering", "Cutting"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "For center alignment of a paragraph, we can press?", "options": ["Ctrl + S", "Ctrl + C", "Ctrl + E", "Ctrl + C + A"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select the bar mostly located below the Title Bar.", "options": ["Status Bar", "Tool bar", "Menu bar", "Scroll bar"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Ctrl + B in MS-Word is used for what purpose?", "options": ["It converts selected text into the next larger size of the same font", "It applies Italic formatting to the selected text", "It makes the selected text bold", "It adds a line break to the document"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "CTRL+W in MS Word is used for what?", "options": ["Update the current Web page", "Close the current window", "Open the Print dialog box", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "The space left among the margin and the start of a paragraph is known as", "options": ["Indentation", "Gutter", "Spacing", "Alignment"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select the Text-styling feature of MS Word.", "options": ["WordColor", "WordArt", "WordFont", "WordFill"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select the items that are placed at the end of a document.", "options": ["End Note", "Foot Note", "Footer", "Header"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "What is the shortcut key to change line height to 1.5?", "options": ["Ctrl+1", "Ctrl + 5", "Ctrl + 3", "Ctrl + 2"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select the number of letters that show little above the normal text is known as:", "options": ["Supertext", "Subscript", "Superscript", "Toptext"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "The shortcut key used to close the word file in MS Word:", "options": ["Ctrl+F4", "Shift+F4", "Alt+F4", "None of These"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select shortcut for double underline the text in MS Word:", "options": ["Ctrl+D", "Alt+Shift+D", "Ctrl+D", "Ctrl+Shift+D"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Shortcut key for finding the text in MS Word:", "options": ["Ctrl+P", "Ctrl+F", "Ctrl+H", "Ctrl+O"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select Help key in MS Word", "options": ["F11", "F2", "F1", "F5"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "For cutting the text in MS Word, which key is used?", "options": ["Ctrl+W", "Ctrl+V", "Ctrl+X", "Ctrl+K"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Which keys are for undo in MS Word?", "options": ["Ctrl+Z", "Ctrl+V", "Ctrl+N", "Ctrl+K"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select the feature that starts a new line when a word or sentence reaches a border.", "options": ["Text Line", "New Line", "Text Align", "Text Wrapping"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "The position of a rectangular page for viewing and printing is known as", "options": ["Preview", "Direction", "Print Layout", "Orientation"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "How can we remove or hide the border of a shape?", "options": ["No Line", "White Line", "No Outline", "No Border"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "How can we change the thickness of a line?", "options": ["Line width", "Line Style", "Line Thick", "Line Height"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select the item that contains full information about something in the text is called.", "options": ["Footer", "Header", "Foot Note", "Head Note"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select the item printed at the bottom of each page in a Word document.", "options": ["Header", "Footer", "Title", "Foot Note"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "The term Color and pattern used to fill a closed shape is known as", "options": ["Fill Style", "WordArt", "Shape", "Fill Back"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select the place where footnotes appear in a document.", "options": ["End of document", "End of Heading", "Bottom of a Page", "None"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "What is the Drag And Drop feature used for?", "options": ["Move and copy text using the mouse", "Switch from Insert to Over Type Mode", "Move and copy text using the clipboard", "Open a new document and drop it into the active document"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "For spell checking, which function key will you press?", "options": ["F5", "F7", "F6", "F8"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select the maximum number of columns that can be inserted in a Word document.", "options": ["65", "50", "55", "45"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select the smallest and largest font on the formatting toolbar.", "options": ["Smallest 8 and Largest 70", "Smallest 6 and Largest 72", "Smallest 8 and Largest 72", "Smallest 5 and Largest 70"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Where is the horizontal split bar on the MS Word screen?", "options": ["On the top of the vertical scroll bar", "On the left of the horizontal scroll bar", "On the right of the horizontal scroll bar", "On the bottom of the vertical scroll bar"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "The shortcut key Ctrl + H is used for what?", "options": ["Find and replace dialog box with activating the Replace tab", "Open find and replace dialog box with activating the Find tab", "Open find and replace dialog box with activating the Go To tab", "Open insert dialog box activating Insert Hyperlink tab"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "For center alignment, which shortcut will you use?", "options": ["Ctrl + A", "Ctrl + B", "Ctrl + E", "Ctrl + D"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "The process to use the format painter multiple times?", "options": ["By double-clicking on the Format Painter icon", "Format painter cannot be used multiple times", "By clicking on the Lock Format Painter icon", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "The Word documents can be sent to?", "options": ["Microsoft PowerPoint", "Microsoft Access", "Microsoft Excel", "All of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Which key is not used for changing the case of the text in MS Word?", "options": ["Toggle Case", "Indent Case", "Sentence Case", "Lower Case"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select the default alignment in Word.", "options": ["Left", "Right", "Centre", "Justify"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "The shortcut key to save a document in MS Word is?", "options": ["Ctrl + S", "Ctrl + V", "Ctrl + C", "Ctrl + A"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Microsoft Word is?", "options": ["Word processing program", "Presentation program", "Spreadsheet program", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "The term “selecting text” means selecting what?", "options": ["An entire sentence", "Whole document", "A word", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "In MS Word, the ruler is used for?", "options": ["To set tabs", "To set indents", "To change page margins", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "For changing character size and typeface, which menu in MS Word can be used?", "options": ["Format", "Tools", "View", "Data"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "For selected text in MS Word, which shortcut is used?", "options": ["Ctrl + Shift + A", "Shift + A", "Alt + Shift + A", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "The shortcut key to apply a bullet list in MS Word is?", "options": ["Ctrl + Shift + L", "Alt + Shift + A", "Ctrl + Shift + A", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select the shortcut key to apply auto format in MS Word: (A) Ctrl+shift+A", "options": ["Alt+shift+A", "Alt+Ctrl+K", "None of these", "Alt+Ctrl+K"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Shortcut key for Bold in Word: (A) Shift+B", "options": ["Alt+B", "Ctrl+B", "None of these", "Ctrl+B"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "To cancel text in MS Word: (A) ESC", "options": ["End", "Delete", "None of these", "ESC"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select the following that can be used as a watermark in a Word document: (A) Text", "options": ["Image", "Art", "Both A and B", "Both A and B"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select the item that shows dimly behind the main text: (A) Watermark", "options": ["Background", "Water Color", "Back Color", "Watermark"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "How to align a paragraph in the center in MS Word: (A) Ctrl+O", "options": ["Ctrl+P", "Ctrl+F", "Ctrl+E", "Ctrl+E"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Which shortcut keys are used for undo in MS Word? (A) Ctrl+n", "options": ["Ctrl+Y", "Ctrl+z", "Ctrl+v", "Ctrl+Y"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Which keys are used in MS Word for opening a new document? (A) Ctrl+z", "options": ["Ctrl+v", "Ctrl+N", "Ctrl+Y", "Ctrl+N"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "In MS Word, how to justify a paragraph: (A) Shift+ J", "options": ["Alt+ J", "Ctrl+ J", "None of these", "Ctrl+J"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select the Outline view in MS Word: (A) Shift+O", "options": ["Ctrl+O", "Alt+Ctrl+O", "None of these", "Alt+Ctrl+O"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select the Page view in MS Word: (A) Alt+p", "options": ["Alt+Ctrl+P", "Ctrl+p", "None of these", "Alt+Ctrl+P"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Which keys are used to paste text in MS Word: (A) Ctrl+Z", "options": ["Ctrl+V", "Ctrl+D", "Ctrl+C", "Ctrl+V"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Select from the following used to print a page in MS Word: (A) Ctrl+D", "options": ["Ctrl+L", "Ctrl+P", "Ctrl+V", "Ctrl+P"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "How can we open the print page preview in MS Word: (A) Ctrl+F2", "options": ["Ctrl+F1", "Ctrl+F3", "None of these", "Ctrl+F2"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Which keys are used to replace text in MS Word: (A) Ctrl+J", "options": ["Ctrl+E", "Ctrl+F", "Ctrl+H", "Ctrl+H"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Which shortcut key is used to apply Italic style in MS Word: (A) Ctrl+I", "options": ["Ctrl+G", "Ctrl+H", "Ctrl+E", "Ctrl+I"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "How do we insert a hyperlink in MS Word: (A) Ctrl+K", "options": ["Ctrl+H", "Ctrl+G", "Ctrl+I", "Ctrl+K"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "Shortcut keys to open the task pane in MS Word: (A) Ctrl+F3", "options": ["Ctrl+F2", "Ctrl+F1", "Ctrl+F4", "Ctrl+F1"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "How can we open the style dialog box in MS Word: (A) CTRL+SHIFT+F", "options": ["CTRL+SHIFT+H", "CTRL+SHIFT+S", "CTRL+SHIFT+J", "CTRL+SHIFT+S"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Basic Ms Office Mcqs", "question": "How to apply a small size of text in MS Word: (A) CTRL+SHIFT+S", "options": ["CTRL+SHIFT+F", "CTRL+SHIFT+D", "CTRL+SHIFT+K", "CTRL+SHIFT+K"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-ms-office-mcqs/"}
{"subject": "advanced-statistical-functions-excel-mcqs", "topic": "advanced-statistical-functions-excel-mcqs", "question": ": Which function in Excel is used to calculate the standard deviation of a dataset?", "options": ["AVERAGE", "STDEV.P", "VAR", "MEDIAN"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-statistical-functions-excel-mcqs/"}
{"subject": "advanced-statistical-functions-excel-mcqs", "topic": "advanced-statistical-functions-excel-mcqs", "question": ": What does the Excel function NORM.S.DIST return?", "options": ["The normal distribution for a specified mean and standard deviation", "The standard normal distribution", "The inverse of the normal distribution", "The cumulative distribution function"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-statistical-functions-excel-mcqs/"}
{"subject": "advanced-statistical-functions-excel-mcqs", "topic": "advanced-statistical-functions-excel-mcqs", "question": ": Which function would you use to calculate the correlation coefficient between two datasets in Excel?", "options": ["CORREL", "COVAR", "PEARSON", "T.TEST"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-statistical-functions-excel-mcqs/"}
{"subject": "advanced-statistical-functions-excel-mcqs", "topic": "advanced-statistical-functions-excel-mcqs", "question": ": Which function calculates the kurtosis of a dataset in Excel?", "options": ["SKEW", "KURT", "VAR.P", "STDEV.S"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-statistical-functions-excel-mcqs/"}
{"subject": "advanced-statistical-functions-excel-mcqs", "topic": "advanced-statistical-functions-excel-mcqs", "question": ": Which function would you use to perform a linear regression analysis in Excel?", "options": ["SLOPE", "INTERCEPT", "LINEST", "FORECAST"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-statistical-functions-excel-mcqs/"}
{"subject": "advanced-statistical-functions-excel-mcqs", "topic": "advanced-statistical-functions-excel-mcqs", "question": ": What does the Excel function CHISQ.TEST return?", "options": ["The cumulative distribution function of the chi-square distribution", "The probability of observing a chi-square statistic", "The inverse of the chi-square distribution", "The mean of the chi-square distribution"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-statistical-functions-excel-mcqs/"}
{"subject": "advanced-statistical-functions-excel-mcqs", "topic": "advanced-statistical-functions-excel-mcqs", "question": ": Which function in Excel would you use to calculate the exponential distribution?", "options": ["EXPON.DIST", "EXP.DIST", "LOG.DIST", "POISSON.DIST"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-statistical-functions-excel-mcqs/"}
{"subject": "advanced-statistical-functions-excel-mcqs", "topic": "advanced-statistical-functions-excel-mcqs", "question": ": What does the function T.INV.2T return in Excel?", "options": ["The two-tailed inverse of the t-distribution", "The t-value for a given probability", "The cumulative probability of the t-distribution", "The mean of the t-distribution"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-statistical-functions-excel-mcqs/"}
{"subject": "advanced-statistical-functions-excel-mcqs", "topic": "advanced-statistical-functions-excel-mcqs", "question": ": Which Excel function calculates the skewness of a distribution?", "options": ["SKEW", "SKEW.P", "SKEWNESS", "SKEW.DIST"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-statistical-functions-excel-mcqs/"}
{"subject": "advanced-statistical-functions-excel-mcqs", "topic": "advanced-statistical-functions-excel-mcqs", "question": ": Which function is used to find the probability that a value from a normal distribution is less than or equal to a given value?", "options": ["NORM.DIST", "NORM.INV", "NORM.S.INV", "NORM.S.DIST"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-statistical-functions-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "Who are social networks organized primarily around?", "options": ["Brands", "People", "Discussions", "Interests"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "Social networks have an information-sharing capacity. As such, they are a great distribution channel for:", "options": ["Customer feedback", "Viral content", "Exclusive coupons", "Marketing messages"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "Which social network is considered the most popular for business-to-business marketing?", "options": ["Facebook", "Orkut", "Ryze", "LinkedIn"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "What is an advantage a nonprofit has when opening a private social network?", "options": ["The start-up cost of a private social network", "Spend more time using social networks", "It has an immediate user base of people interested in the cause", "Supporters have a higher tolerance for messages"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "Larger social networking sites are expected:", "options": ["To force niche social networks", "To reflect social media trends", "To see declining growth rates", "To be better fit for nonprofit organizations"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "Facebook and LinkedIn are popular social networks globally.", "options": ["True", "False", "Maybe", "Maybe not"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "One of the first steps when marketing with social networks is to identify the goals.", "options": ["True", "False", "Maybe", "Maybe not"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "Facebook Places is targeted to large brands.", "options": ["True", "False", "Maybe", "Maybe not"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "It is a best practice to interact under a personal account on LinkedIn.", "options": ["True", "False", "Maybe", "Maybe not"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "A white-label social network’s primary difference is that it is privately run by a nonprofit organization.", "options": ["True", "False", "Maybe", "Maybe not"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "What is the term for updates by Twitter users?", "options": ["Tweets", "Tweats", "Twinks", "Posts"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "Why is it important to post to a blog?", "options": ["It reduces the cost per blog post", "To keep readers engaged", "The social media marketing specialist", "It allows more chances"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "What else can a company do on Facebook apart from their page?", "options": ["Post more updates", "Post controversial content", "Use several pictures", "Originate and post to other groups"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "What is meant by A/B testing in marketing?", "options": ["Testing two different products", "Testing two versions of an advertisement for best response", "Testing medical products before approval", "Testing via two mediums (TV, Radio)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "What is “social media optimization”?", "options": ["Easily creates publicity via social networks", "Writing clear content", "Creating short content which is easily indexed", "Creating content for social networks by hiring people"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "What place does Pricing have in marketing?", "options": ["Higher prices guarantee higher revenue", "The company should actively market", "Tested to see what elicits the best consumer response", "Marketing based on the pricing level"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "How often should a marketing plan be revisited?", "options": ["Never, once written it is complete", "To revisit the plan of action", "At company board meetings", "During monthly financial reviews"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "What would be leveraging both social network and traditional marketing?", "options": ["Print advertisements with a coupon", "Drive users to a website with a free trial offer", "Posting an ad on a message board", "Hosting a video ad on YouTube"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "What is valuable in increasing a page rank?", "options": ["Paying for placement", "Static content", "Links from highly ranked pages", "No contact information"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "On which social network should you share content most frequently?", "options": ["Facebook", "Pinterest", "Twitter", "LinkedIn"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "Which is not a social media network?", "options": ["Facebook", "Wikipedia", "Twitter", "LinkedIn"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Social Networks Mcqs Solved Questions Answers", "question": "Which is the largest social media network in the world?", "options": ["Twitter", "Wikipedia", "Facebook", "LinkedIn"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/social-networks-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "Which of the following delays the transmission of signal along the wire by one step (clock pulse)?", "options": ["NAND box (NOT AND)", "AND box", "OR box", "DELAY box"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "For the given input, which of the followings provides the Boolean OR output?", "options": ["NAND box (NOT AND)", "DELAY box", "AND box", "OR box"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "For a given input, which of the followings provides the complement of Boolean AND output?", "options": ["DELAY box", "OR box", "NAND box (NOT AND)", "AND box"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "If L1 and L2 are regular languages, then which of the followings is/are also regular language(s)?", "options": ["L1 + L2", "L1L2", "L1", "All of above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "If L1 and L2 are regular languages, then these can be expressed by the corresponding FAs.", "options": ["True", "False", "True"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "Regular Expression for the language of words containing even number of a’s is:", "options": ["(a+b)aba(a+b)", "a+bbaabaa", "(a+b)ab(a+b)", "(b+aba)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "The language that can be expressed by any regular expression is called a regular language.", "options": ["True", "False", "True"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "Which of the following languages are the examples of non-regular languages?", "options": ["PALINDROME and EVEN-EVEN", "EVEN-EVEN and PRIME", "PALINDROME and PRIME", "FACTORIAL and SQUARE"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "Is it true that languages are proved to be regular or non-regular using pumping lemma?", "options": ["True", "False", "True"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "Which of the followings is the obviously infinite language?", "options": ["EQUAL-EQUAL", "EVEN-EVEN", "FACTORIAL", "PALINDROME"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "Select the most nearest to the Myhill-Nerode theorem.", "options": ["L partitions Σ into distinct classes", "If L is regular then, L generates finite number of classes", "If L generates finite number of classes then L is regular", "All of above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "If we want to describe the complement of a language, then it is very important to describe the ——————- of that language over which the language is defined.", "options": ["Regular Expression", "String", "Word", "Alphabet"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "“CFG” stands for _________.", "options": ["Context Free Graph", "Context Free Grammar", "Context Finite Graph", "Context Finite Grammar"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "Which of the followings states are called the halt states?", "options": ["ACCEPT AND START", "ACCEPT and READ", "ACCEPT and REJECT", "ACCEPT AND WRITE"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "The part of a PDA, where the input string is placed before it is run, is called?", "options": ["State", "Transition", "Input Tape", "Output Tape"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "In non-deterministic PDA, there are more than one outgoing edges from which of the following states?", "options": ["READ or POP", "START or READ", "POP or REJECT", "PUSH or POP"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "If an effectively solvable problem has an answer in yes or no, then this solution is called ———", "options": ["Which of the followings are decidable problems?", "The two FAs are equivalent", "The two regular expressions define the same language", "Both a and b"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Automata Theory Mcqs", "question": "Which one of the followings was the major problem in the earliest computers?", "options": ["To store the contents in the registers", "To load the contents from the registers", "To calculate the mathematical formula", "To show the mathematical formulae"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Solved Mcqs Questions Answers", "question": ": GUI stands for", "options": ["Graphical user interaction", "Graphical uniform interchange", "Graphics user interface", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Solved Mcqs Questions Answers", "question": ": The basic input device in GUI is", "options": ["Keyboard", "Monitor", "Mouse", "All of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Solved Mcqs Questions Answers", "question": ": Geometric transformation includes", "options": ["Transition", "Drawing", "Scaling", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Solved Mcqs Questions Answers", "question": ": DVST stands for …", "options": ["Direct Visual Storage Tube", "Digital View Storing Table", "Direct View Storage Tube", "Digital View Storage Tube"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Solved Mcqs Questions Answers", "question": ": The term ‘raster’ is used for …", "options": ["Array", "Queue", "Model", "Matrix"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Solved Mcqs Questions Answers", "question": ": Graphics is defined as …", "options": ["Photographs", "Simulations", "Drawing", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Solved Mcqs Questions Answers", "question": ": What is the purpose of display card?", "options": ["Sending graphics data to output unit", "Receiving graphics data to input unit", "Sending graphics data from output unit", "All of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Solved Mcqs Questions Answers", "question": ": Sutherland Hodgeman algorithm is applied on …", "options": ["Line segment", "Concave polygon", "Smooth curves", "Convex polygon"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Solved Mcqs Questions Answers", "question": ": Pixels are arranged in", "options": ["Three dimensional grid", "Two dimensional grid", "One dimensional grid", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Solved Mcqs Questions Answers", "question": ": Which controller is used to read each successive byte of data from frame buffer?", "options": ["Data controller", "Display controller", "Digital controller", "Design controller"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Solved Mcqs Questions Answers", "question": ": Each pixel’s brightness is …", "options": ["Transitive", "Compatible", "Incompatible", "None of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Solved Mcqs Questions Answers", "question": ": RGB models are used for", "options": ["Printing", "Texting", "Computer display", "Window display"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Technical Report Writing Solved Mcqs", "question": ": Which of the following is not a parameter of a report?", "options": ["Ability to acquire additional information", "Quality of additional information acquired", "Ability to arrive at a subjective evaluation", "Ability to provide worthwhile recommendations"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Technical Report Writing Solved Mcqs", "question": ": A factor, not achieved by collaboration among teams, known as:", "options": ["Performance measures", "Decreased cycle time", "Limits costs", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Technical Report Writing Solved Mcqs", "question": ": If the goal of writing is to direct action or activity, it is the resulting communication is known as:", "options": ["Communicating to instruct", "Communicating to inform", "Communicating to persuade", "Communicating to develop interaction"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Technical Report Writing Solved Mcqs", "question": ": To which of these people is the report not very crucial?", "options": ["Engineers", "Scientists", "Teachers", "Business executives"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Technical Report Writing Solved Mcqs", "question": ": Which of these reports is raised annually?", "options": ["Inventory reports", "Confidential reports", "Laboratory reports", "Inspection reports"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Technical Report Writing Solved Mcqs", "question": ": Which of these is not a part of a report?", "options": ["Front matter", "Gender", "Front cover", "Title page"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Technical Report Writing Solved Mcqs", "question": ": Which of these reports are used in business?", "options": ["Formal technical reports", "Informal reports", "Personal reports", "Musical reports"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Technical Report Writing Solved Mcqs", "question": ": ______ report includes breakdown of machinery.", "options": ["Feasibility", "Periodic", "Trouble", "Progress"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Technical Report Writing Solved Mcqs", "question": ": Which of these forms is not used to write a non-formal report?", "options": ["Filling in a blank form", "App", "Form of a letter", "Memorandum"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Technical Report Writing Solved Mcqs", "question": ": In which of these forms is a non-formal letter not written?", "options": ["Filling in a blank form", "Form of a letter", "Form of a memorandum", "Formal of a notice"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Technical Report Writing Solved Mcqs", "question": ": Non-formal report written in the form of a letter is similar to a _____:", "options": ["Complaint letter", "Notice", "Friendly letter", "Business letter"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Technical Report Writing Solved Mcqs", "question": ": A memorandum is almost like a _____:", "options": ["Simple letter", "Formal letter", "Informal letter", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-solved-mcqs/"}
{"subject": "Computer Security", "topic": "T4Tutorials Mcqs On Viruses And Computer Security", "question": ": Which antivirus is harmful to the computer?", "options": ["Shareware", "Anti virus", "Virus", "Freeware"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-viruses-and-computer-security/"}
{"subject": "Computer Security", "topic": "T4Tutorials Mcqs On Viruses And Computer Security", "question": ": What is a computer virus?", "options": ["A hardware component", "A type of antivirus software", "A malicious software that infects other files", "A computer programming language"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-viruses-and-computer-security/"}
{"subject": "Computer Security", "topic": "T4Tutorials Mcqs On Viruses And Computer Security", "question": ": A polymorphic virus can ______.", "options": ["Spread through social media platforms", "Change its appearance", "Delete files randomly", "Only infect specific file types"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-viruses-and-computer-security/"}
{"subject": "Computer Security", "topic": "T4Tutorials Mcqs On Viruses And Computer Security", "question": ": How do viruses typically spread?", "options": ["Through physical contact with infected computers", "Via infected email attachments, websites, or removable media", "Only through software downloads from official sources", "By manipulating computer hardware"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-viruses-and-computer-security/"}
{"subject": "Computer Security", "topic": "T4Tutorials Mcqs On Viruses And Computer Security", "question": ": Which type of virus hides within another legitimate program?", "options": ["Worm", "Trojan horse", "Macro virus", "Spyware"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-viruses-and-computer-security/"}
{"subject": "Computer Security", "topic": "T4Tutorials Mcqs On Viruses And Computer Security", "question": ": What does a rootkit virus typically do?", "options": ["Encrypts files and demands ransom", "Monitors and hides its presence on a system", "Spreads through infected email attachments", "Disables the antivirus software"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-viruses-and-computer-security/"}
{"subject": "Computer Security", "topic": "T4Tutorials Mcqs On Viruses And Computer Security", "question": ": What is the purpose of a logic bomb?", "options": ["Stealing passwords", "Triggering a malicious action based on a specific event or time", "Recording keystrokes", "Displaying unwanted advertisements"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-viruses-and-computer-security/"}
{"subject": "Computer Security", "topic": "T4Tutorials Mcqs On Viruses And Computer Security", "question": ": A virus that is specifically designed to spread through email?", "options": ["Worm", "Macro virus", "Email virus", "Adware"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-viruses-and-computer-security/"}
{"subject": "Computer Security", "topic": "T4Tutorials Mcqs On Viruses And Computer Security", "question": ": A virus famous for making multiple copies of itself, spreads, and infects other computers over a network is called _____.", "options": ["Worm", "Trojan horse", "Macro virus", "Adware"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-viruses-and-computer-security/"}
{"subject": "Computer Security", "topic": "T4Tutorials Mcqs On Viruses And Computer Security", "question": ": Which is NOT a common and enough method to protect against computer viruses?", "options": ["Using updated antivirus software", "Avoiding suspicious email attachments and links", "Disabling the firewall", "Both A and B"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-viruses-and-computer-security/"}
{"subject": "Computer Security", "topic": "T4Tutorials Mcqs On Viruses And Computer Security", "question": ": A ransomware virus is developed for ___.", "options": ["Stealing sensitive information", "Slowing down computer performance", "Encrypting files and demanding payment for decryption", "Deleting system files"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-viruses-and-computer-security/"}
{"subject": "Computer Security", "topic": "T4Tutorials Mcqs On Viruses And Computer Security", "question": ": Which type of virus is designed to replicate and spread without any user intervention?", "options": ["Trojan horse", "Worm", "Spyware", "Adware"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-viruses-and-computer-security/"}
{"subject": "Computer Security", "topic": "T4Tutorials Mcqs On Viruses And Computer Security", "question": ": What is a heuristic-based antivirus approach?", "options": ["Using pre-defined virus signatures", "Learning from previous virus patterns to detect new threats", "Blocking all incoming emails", "Only scanning executable files"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-viruses-and-computer-security/"}
{"subject": "Computer Security", "topic": "T4Tutorials Mcqs On Viruses And Computer Security", "question": ": Viruses enter the computer when the computer starts is ______________.", "options": ["Salami shaving", "Macro", "File infector", "Boot sector"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-viruses-and-computer-security/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": Deficiency of Vitamin-A results in which of the following problems?", "options": ["Night blindness", "Rickets", "Scurvy", "Hair fall"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": The lifespan of Red Blood Cells is how many days?", "options": ["150", "120", "170", "240"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": What is the density of water?", "options": ["1 g/cm³", "1.4 g/cm³", "2.3 g/cm³", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": Radioactivity was discovered by which of the following scientists?", "options": ["Kelvin", "Thomson", "Rutherford", "Becquerel"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": Severe deficiency of Vitamin D results in which of the following problems?", "options": ["Scurvy", "Rickets", "Night blindness", "Osteomalacia"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": What is the SI unit of charge?", "options": ["Ampere", "Coulomb", "Ohm", "Volt"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": Which of the following devices converts chemical energy into electrical energy?", "options": ["Motor", "Generator", "Moving-coil meter", "Battery"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": The Sun is a __?", "options": ["Star", "Planet", "Asteroid", "Meteor"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": Which gas is used in a refrigerator to cool water?", "options": ["Nitrogen", "Carbon dioxide", "Methane", "Ammonia"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": The average adult has a blood volume of approximately how many liters?", "options": ["9", "5", "8", "7"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": Which is the most abundant element in the universe?", "options": ["Oxygen", "Hydrogen", "Carbon Dioxide", "Silicon"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": Which is the most abundant element in the Earth’s crust?", "options": ["Oxygen", "Hydrogen", "Carbon Dioxide", "Silicon"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": Every day the human body breathes in how many liters of air?", "options": ["2,000 to 8,000", "10,000 to 15,000", "15,000 to 20,000", "23,000 to 28,000"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": Deficiency of Vitamin-D results in which of the following problems?", "options": ["Night blindness", "Rickets", "Scurvy", "Hair fall"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": What is the nature of sound waves?", "options": ["Transverse", "Electromagnetic", "Longitudinal", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": What is the lifespan of White Blood Cells?", "options": ["1 – 5 days", "3 – 7 days", "4 – 8 days", "5 – 21 days"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": What is the SI unit of pressure?", "options": ["Pascal", "Joule", "Tesla", "Henry"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": Which is the densest substance on Earth?", "options": ["Platinum", "Copper", "Steel", "Osmium"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": A camera uses which kind of lens to form an image?", "options": ["Convex lens", "Concave lens", "Condenser lens", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": Which is NOT a conductor?", "options": ["Aluminum", "Gold", "Graphite", "All are conductors"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": CNG stands for?", "options": ["Converted Natural Gas", "Conduced Natural Gas", "Conducted Natural Gas", "Compressed Natural Gas"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": Which is considered as true for “Sound”?", "options": ["Sound cannot move through a vacuum", "Sound cannot move through gases", "Sound cannot move through liquids", "Sound cannot move through solids"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": When white light is spread and passed through a prism, it splits into how many colors?", "options": ["9", "6", "7", "8"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": Which instrument is used for measuring very high temperatures?", "options": ["Pyroscope", "Pyrometer", "Seismograph", "Xylometer"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": Which of the following lenses can be used to correct the long-sight defect?", "options": ["Concave", "Convex", "Diverging", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": Suppose a fixed mass of gas at a constant temperature, if we reduce volume, the pressure will:", "options": ["Also decrease", "Increase", "Remain constant", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": Which of the following is the outermost planet in the solar system?", "options": ["Mercury", "Pluto", "Neptune", "Uranus"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": Which of the following is the fluid part of blood?", "options": ["Plasma", "Platelets", "Blood cells", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": ": During winter in cold countries like Russia, which of the following is mixed to melt the ice on the roads?", "options": ["Salt", "Chlorine", "Carbon dioxide", "Water"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "Anti-aging agent vitamin is called?", "options": ["Vitamin A is the Anti-aging agent", "Vitamin B is the Anti-aging agent", "Vitamin C is the Anti-aging agent", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "What is involved in Oxidation chemical reaction?", "options": ["Gain of Electrons", "Loss of Electrons", "Gain of Protons", "Loss of Protons"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "Basic laws of Geometry were formulated by________", "options": ["Pythagoras", "Archimedes", "Aristotle", "None"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "For which of the following biological molecules, Phosphorus is an essential component?", "options": ["Amino acids", "Nucleic acids", "Carbohydrates", "None"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "Planets move around the sun was proved by_______", "options": ["Archimedes", "Galileo Galilei", "John Kepler", "None"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "How many different kinds of subatomic particles make an atom?", "options": ["Three", "Two", "Four", "None"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "In which of the following category UV light falls?", "options": ["Ionizing Radiations", "Non-Ionizing Radiation", "Visible light", "None"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "Which part of the earth is divided into 15 plates of various sizes?", "options": ["Mesosphere", "Stratosphere", "Lithosphere", "None"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "Which of the following are the compact clusters of alpha particles?", "options": ["Electron and Proton", "Two Protons and two Neutrons", "Three protons and three Neutrons", "None"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "At night, what do the Plants intake and release?", "options": ["Oxygen – Carbon dioxide", "Carbon dioxide – Oxygen", "Oxygen – Carbon monoxide", "Carbon monoxide – Oxygen"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "What produces the Urine?", "options": ["Kidneys", "Lungs", "Large intestine", "Liver"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "Which element is essential for the formation of hemoglobin?", "options": ["Calcium", "Iron", "Potassium", "Zinc"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "Which vitamin helps in blood clotting?", "options": ["Vitamin A", "Vitamin C", "Vitamin K", "Vitamin D"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "The largest gland in the human body is the:", "options": ["Pancreas", "Thyroid", "Liver", "Kidney"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "Which gas is absorbed by plants in photosynthesis?", "options": ["Nitrogen", "Carbon dioxide", "Oxygen", "Hydrogen"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "Which organ controls the entire human body?", "options": ["Heart", "Liver", "Brain", "Lungs"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "What is the chemical formula of common salt?", "options": ["NaCl", "KCl", "Na2CO3", "CaCl2"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "Which layer of the atmosphere contains the ozone layer?", "options": ["Troposphere", "Stratosphere", "Mesosphere", "Thermosphere"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "Which blood cells help in clotting of blood?", "options": ["Red blood cells", "White blood cells", "Platelets", "Plasma"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "everyday-science-mcqs-homepage", "topic": "everyday-science-mcqs-homepage", "question": "Which vitamin is mainly obtained from sunlight?", "options": ["Vitamin A", "Vitamin B", "Vitamin C", "Vitamin D"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/everyday-science-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "In an experiment, the group which receives no treatment is called:", "options": ["Experimental group", "No group", "None of these", "Control group"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "Between the degree of coffee drinking and the likelihood of heart attacks, if one finds a positive correlation, one can conclude that:", "options": ["None of these", "To drink a lot of coffee causes individuals prone to heart attacks", "Heart attacks caused by an active lifestyle of certain people", "Heart attack caused by coffee drinking"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "______ are largely a result of motor skills:", "options": ["Learning", "Observing", "Maturational process", "Other practice"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "Which portion of the body controls breathing and digestion?", "options": ["Linear circuit", "Autonomic", "Axon", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "Which of the following clinical procedures is based in part on classical conditioning?", "options": ["Two chair technique", "Token economy", "Transference", "Systematic desensitization"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "Illness resulting from an interaction of physical and psychological factors is called:", "options": ["Conversion disorder", "Hysterical", "Psychosomatic", "Somatic"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "Which method of gathering information about the brain indicates the overall activity of the brain?", "options": ["Positron Emission Tomography", "Electrical stimulation", "Studying damage to the brain", "Electroencephalogram"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "The physiological and psychological response to stress is referred to as:", "options": ["Transition", "Hypertension", "Stressors", "Strain"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "Rational-emotive therapy was developed by:", "options": ["Albert Ellis", "Carl Rogers", "Allen Bergin", "Joseph Wolpe"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "Violation of a society’s explicit and implicit norms is considered abnormal in the sense that the violation is:", "options": ["Distressful", "Deviant", "Dysfunctional", "A danger to one’s self or to others"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "A society establishes rules to govern conduct through:", "options": ["Morality", "Norms", "Conventions", "Culture"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "People lose touch with reality when they are:", "options": ["Psychotic", "Psychopathic", "Manic", "Neurotic"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "Intelligence can be defined as:", "options": ["The ability to think abstractly and learn from experience", "Include all the factors that make one person different from another", "Knowledge of a great many facts", "The ability to get good grades in school"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "The part of the brain that sends an “alert” signal to higher centers in response to incoming messages is the:", "options": ["Hippocampus", "Reticular formation", "Amygdala", "Limbic system"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "Reflexes are controlled by the:", "options": ["Frontal lobe", "Hypothalamus", "Medulla", "Spinal cord"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "As the occipital lobe is to vision, the _____ lobe is to hearing:", "options": ["Cerebellar", "Temporal", "Frontal", "Parietal"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "The definition of abnormality that includes unhappiness relates to the _____ aspect:", "options": ["Deviance", "Dysfunction", "Distress", "Danger to self or others"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "The ability of the eye to distinguish fine details is called:", "options": ["Visual acuity", "Visual sensitivity", "Adaptation", "Visual dilation"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "_____ is controlled by the thyroid gland:", "options": ["Emotions", "Sexuality", "Metabolism", "Glucose absorption"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "psychology-mcqs-homepage", "topic": "psychology-mcqs-homepage", "question": "The “Gestalt theory” emphasized:", "options": ["Environmental stimuli", "A flow of consciousness", "Our tendency to see pattern", "The atoms of thought"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/psychology-mcqs-homepage/"}
{"subject": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "topic": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "question": "Using advanced features like job costing or project management MCQs on Peach Tree | T4Tutorials.com Skip to content T4Tutorials.com Home Homepage About Us Privacy Policy Jobs Openings Our Services Tutorials C++ DBMS OOP OS SE Theory Of Automata Software Testing Data Mining Data Structures Distributed Database HTML CSS Javascript PHP Projects Research Research Topics Research Questions List of Journals of Computer Science Jobs Test Pakistani Jobs PPSC FPSC Jobs Syllabus MCQs PAF ARMY NAVY Indian Jobs Papers MCQs Contact Email & Call us Youtube – Subscribe with us Facebook – Like our page Whatsapp – Follow Channel Open Search Search for: Main Menu Using advanced features like job costing or project management MCQs on Peach Tree By Prof. Dr. Fazal Rehman Shamil, Last Updated:August 1, 2024 What feature in Peachtree allows tracking of expenses and revenues associated with specific projects or jobs?", "options": ["Job Costing", "General Ledger", "Fixed Asset Management", "Inventory Management"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree/"}
{"subject": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "topic": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "question": "Job Costing Which report in Peachtree helps in analyzing the profitability of individual jobs or projects?", "options": ["Job Costing Report", "Balance Sheet", "Income Statement", "Cash Flow Statement"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree/"}
{"subject": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "topic": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "question": "Job Costing Report How can Peachtree users allocate costs to different jobs or projects?", "options": ["By using job costing entries in the system", "By manually adjusting the budget", "By reassigning expenses to different accounts", "By creating separate company files for each job"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree/"}
{"subject": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "topic": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "question": "By using job costing entries in the system Which feature allows you to create and track project budgets in Peachtree?", "options": ["Project Management", "Budget Tracking", "Expense Management", "Financial Planning"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree/"}
{"subject": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "topic": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "question": "Project Management How does Peachtree facilitate tracking labor costs associated with a project?", "options": ["By using the Job Costing module to record labor hours and rates", "By manually entering labor costs into the General Ledger", "By creating separate invoices for labor costs", "By tracking labor costs in a spreadsheet"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree/"}
{"subject": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "topic": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "question": "By using the Job Costing module to record labor hours and rates What is the primary benefit of using Peachtree’s job costing feature?", "options": ["Improved accuracy in tracking project expenses and revenues", "Simplified tax filing", "Enhanced marketing capabilities", "Faster software performance"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree/"}
{"subject": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "topic": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "question": "Improved accuracy in tracking project expenses and revenues How can Peachtree users generate reports for project performance and budgeting?", "options": ["By using the Project Management and Job Costing reports", "By exporting data to a different software", "By printing individual transaction records", "By manually creating reports in a word processor"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree/"}
{"subject": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "topic": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "question": "By using the Project Management and Job Costing reports What should you do if you need to analyze the cost breakdown of a specific job or project in Peachtree?", "options": ["Run a detailed Job Costing Report", "Review the General Ledger", "Export the data to Excel", "Use the default financial reports"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree/"}
{"subject": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "topic": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "question": "Run a detailed Job Costing Report How can Peachtree assist in managing and allocating project resources?", "options": ["By using the Project Management module to assign and track resources", "By creating separate project files", "By manually assigning resources in a spreadsheet", "By adjusting the budget allocation"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree/"}
{"subject": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "topic": "using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree", "question": "By using the Project Management module to assign and track resources Which feature in Peachtree helps track the progress and milestones of projects?", "options": ["Project Tracking", "Milestone Management", "Task Scheduler", "Performance Reports"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/using-advanced-features-like-job-costing-or-project-management-mcqs-on-peach-tree/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "When are Android applications signed?", "options": ["Before installed", "After installed", "Both A and B", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "Which file is used to request internet permission in Android?", "options": ["Create file", "Manifest file", "System file", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "Which file specifies the layout of an Android screen?", "options": ["R", "Manifest", "Layout", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "Where is the R.java file located?", "options": ["src", "gen", "Both A and B", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "What does the src folder contain?", "options": ["Java source code", "XML", "Manifest", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "What is used for user interface in Android?", "options": ["XML", "Java", "C++", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "Which class stores additional information?", "options": ["Bundle", "Data store", "Extra", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "What does the Android system use for status data?", "options": ["Content provider", "Intents", "Network", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "Which method is used to close an Activity?", "options": ["Finish", "Stop", "Close", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "Which method should you override to use the Android menu system?", "options": ["onCreateMenu()", "onCreateOptionsMenu()", "Both A & B", "onMenuCreated()"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "What is the first callback method in Activity lifecycle?", "options": ["onStart()", "onStop()", "Both A & B", "onCreate()"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "What does this code do: Intent intent = new Intent(FirstActivity.this,SecondActivity.class)?", "options": ["Starts an activity", "Creates a hidden Intent", "Creates an implicit Intent", "Create an explicit Intent"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "What is NOT a valid usage for Intents?", "options": ["Activate an Activity", "Activate a Service", "Activate an SQLite DB Connection", "Activate a Broadcast receiver"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "Which is NOT a valid Android resource file name?", "options": ["my_layout.xml", "mylayout.xml", "myLayout.xml", "Both B & C"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "Which folder contains the R.java file?", "options": ["res", "src", "gen", "bin"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "What is true about an XML layout file?", "options": ["Used to draw Activity content", "A layout PNG image file", "Both A & B", "Contains application permissions"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "What is the parent class of all Activity widgets?", "options": ["View", "ViewGroup", "Layout", "Both A & C"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "Which class stores additional information for Intents?", "options": ["Parcelable", "Extra", "Both A & B", "Bundle"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "Which is NOT part of Android application framework?", "options": ["Notification Manager", "Window Manager", "Both A & B", "Dialer Manager"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "Which Eclipse plugin is needed for Android development?", "options": ["Android SDK", "J2EE", "Both A & B", "Android Development Tools"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "Which file contains text values for applications?", "options": ["AndroidManifest.xml", "res/Text.xml", "res/layout/Main.xml", "res/values/strings.xml"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "What does the res/ folder contain?", "options": ["Resource files", "Java Activity classes", "Both A & B", "Java source code"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Mobile Application Development", "topic": "T4Tutorials Mobile Android Applications Mcqs", "question": "Which is NOT an Activity lifecycle callback?", "options": ["onStart", "onCreate", "onBackPressed", "onPause"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mobile-android-applications-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select the system software that always resides in main memory", "options": ["Text editor", "Loader", "Linker", "Assembler"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "The Daisy chain is a device used for ________?", "options": ["Interconnecting a number of devices to a number of controllers", "Connecting a number of controllers to devices", "Connecting a number of devices to a controller", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "If you need to create, edit, and print documents, select the software type that should be used.", "options": ["Desktop publishing", "Spreadsheet", "Word processing", "UNIX"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "The Producer-consumer problem can be solved by ____________?", "options": ["Semaphores", "Monitors", "Event counters", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Define bootstrapping.", "options": ["A language compiles itself", "A language compiling other language programs", "A language interpreting other language programs", "All of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "The Shell is the main feature of _______?", "options": ["System software", "DOS", "UNIX", "Application software"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "The execution of a program is called", "options": ["Instruction", "Process", "Procedure", "Function"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select from the following that can be used as a criterion for the division of data structures used in language processing.", "options": ["Purpose of a data structure", "Nature of a data structure", "Lifetime of a data structure", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select the correct description of UNIX device driver", "options": ["Unstructured", "Structured into two halves called top half and bottom half", "None of the above", "Structured into two halves called top half and bottom half"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "What is memory?", "options": ["A device that performs a sequence of processes specified by instructions in memory", "A computational unit to perform specific functions", "A sequence of instructions", "A device where information is stored"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select the addressing mode in which the operand is given explicitly in the instruction itself.", "options": ["Immediate mode", "Absolute mode", "Indirect mode", "Index mode"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select the addressing mode where the effective address of the operand is generated by adding a constant value to the contents of a register.", "options": ["Indirect mode", "Immediate mode", "Absolute mode", "Index mode"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Define garbage", "options": ["Allocated storage with all access paths to it destroyed", "Un-allocated storage", "Allocated storage", "Uninitialized storage"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select from the following the program that does not belong to utility", "options": ["Spooler", "Editor", "Debugger", "All of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select the development strategy where executive control modules of a system are coded and tested first, which is called?", "options": ["Bottom-up development", "Left-right development", "Top-down development", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select the systems software that does the job of merging the records from two files into one.", "options": ["Utility program", "Documentation system", "Networking software", "Security software"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "The computer cannot boot if it does not have ____________?", "options": ["Loader", "Compiler", "Operating system", "Assembler"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "The Process Manager has to keep track of __________?", "options": ["The priority of each program", "The status of each program", "The information management support to a programmer using the system", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "The sequence of instructions, in a computer language, to obtain the desired result is called", "options": ["Algorithm", "Program", "Decision Table", "All of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "The action implementing an instruction’s meaning is carried out through", "options": ["Instruction execution", "Instruction decode", "Instruction fetch", "Instruction program"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "The running time of a program is based on __________?", "options": ["The order in which computations are performed", "The way the registers and addressing modes are used", "The usage of machine idioms", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "The bottom-up parser creates ____________?", "options": ["Rightmost derivation in reverse", "Rightmost derivation", "Leftmost derivation", "Leftmost derivation in reverse"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "The Object program is a __________?", "options": ["Translation of high-level language into machine language", "Program to be translated into machine language", "Program written in machine language", "None of the mentioned"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select the system software based in main memory", "options": ["Linker", "Assembler", "Text editor", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select the software that gives permission to your computer to communicate with the user, applications, and hardware, and is known as", "options": ["System software", "Word processor", "Application software", "Database software"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select the programs that link computer resources and provide an interface between users and the computer, and are also used to run the application programs.", "options": ["Operating systems", "Utilities", "Device drivers", "Language translators"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select the specialized programs that allow specific input or output devices to interact with the rest of the computer system are called", "options": ["Device drivers", "Utilities", "Operating systems", "Language translators"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "The type of program that performs certain tasks associated with managing computer resources, also called", "options": ["Operating system", "Utility", "Language translator", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "For the computer to understand the program, it must be converted into machine language by ___________?", "options": ["Language translator", "Utility", "Device driver", "Operating system"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select the function that does not belong to the operating system", "options": ["Manage resources", "Provide a user interface", "Internet access", "Load and run applications"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select the items that are used by the computer in its functioning and are collectively known as", "options": ["Capital", "Stuff", "Resources", "Properties"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select the programs that have all of the computer’s resources like memory, processing, storage, and devices such as printers, which are collectively known as", "options": ["Language translators", "Interfaces", "Applications", "Resources"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "The compiler is used to transfer ___________ that the computer can understand.", "options": ["Source code into data", "Algorithm into data", "Computer language into data", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "The object code is then passed by a program known as", "options": ["Linker", "Source code", "Integer", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "When we start the computer, a special type of absolute loader is executed, it is known as", "options": ["Compile and Go loader", "Bootstrap loader", "Boot loader", "Relating loader"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Define the program?", "options": ["A device where information is stored", "A sequence of instructions", "A device that performs a sequence of operations specified by instructions in memory", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select the following parts of the system that include the programs or instructions.", "options": ["Icon", "Hardware", "Software", "Information"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "The symbol used to separate the user name from the ISP in email addresses is", "options": ["%", "*", ".", "@"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "The different types of applications and documents are represented on the Windows desktop through ______?", "options": ["Graphs", "Labels", "Icons", "Symbols"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "The coordination of processor operation in CPU is controlled by ___________?", "options": ["Registers", "ALU", "CU", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select the inventor of the microprocessor", "options": ["Marican E Huff", "John Atansof", "Joseph Jucquard", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials System Programming Mcqs", "question": "Select the name of the first microprocessor chip was", "options": ["Intel4004", "Intel2004", "Intel300"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/system-programming-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs Of Artificial Intelligence", "question": ": Which of the following is the network with labeled arcs and named nodes that can be used to represent certain natural language grammars for the ease of parsing?", "options": ["Tree Network", "Star Network", "Complete Network", "Transition Network"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-artificial-intelligence/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs Of Artificial Intelligence", "question": ": ICAI programs prove to be worthy in which of the following areas?", "options": ["Department of Defense", "Corporations", "Educational Institutions", "All of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-artificial-intelligence/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs Of Artificial Intelligence", "question": ": The hardware characteristics of LISP machines usually include which of the following?", "options": ["High-speed processor and large memory", "8-inch disk drives and letter-quality printers", "Mouse + specialized keyboard + large memory + high-speed processor", "Specialized keyboard and a mouse"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-artificial-intelligence/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs Of Artificial Intelligence", "question": ": Which of the following universities was not among the early leaders in Artificial Intelligence research?", "options": ["Dartmouth University", "Harvard University", "Massachusetts Institute of Technology", "Stanford University"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-artificial-intelligence/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs Of Artificial Intelligence", "question": ": Which of the following is the region where the conference that launched the Artificial Intelligence revolution in 1956 was held?", "options": ["Stanford", "Harvard", "New York", "Dartmouth"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-artificial-intelligence/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs Of Artificial Intelligence", "question": ": Which of the following is a low-cost LISP machine that Texas Instruments Incorporated produces?", "options": ["The Computer-Based Consultant", "Smalltalk", "The Explorer", "The Personal Consultant"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-artificial-intelligence/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs Of Artificial Intelligence", "question": ": Which of the following is the method of programming a computer to display human intelligence?", "options": ["Psychic amelioration", "Cognitization", "Duplication", "Simulation"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-artificial-intelligence/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs Of Artificial Intelligence", "question": ": Which of the following is done by the LISP processor, when a top-level function is entered?", "options": ["Reads the function entered", "Evaluates the function and the function’s operands", "Shows the results returned by the function", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-artificial-intelligence/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs Of Artificial Intelligence", "question": ": Which of the following AI researchers co-authored both the Handbook of Artificial Intelligence and The Fifth Generation?", "options": ["Bruce Lee", "Randy Davis", "Mark Fox", "Ed Feigenbaum"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-artificial-intelligence/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs Of Artificial Intelligence", "question": ": KEE is a product of which of the following?", "options": ["Teknowledge", "IntelliCorp", "Texas Instruments", "Tech knowledge"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-artificial-intelligence/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Which of the following object of derived class can access in public inheritance…", "options": ["Public member of the base class", "Private members of the base class", "Public member of the base class", "Both A and B"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Stream class that is used to perform both input and output file operations is called…", "options": ["ofstream", "iostream", "fstream", "ifstream"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": Machine language is the ………… language of computer…", "options": ["Fundamental", "Assembly", "Java", "Object-oriented"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": The symbol of rectangle in a flowchart shows…", "options": ["Connector", "I/O", "Process", "Decision"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": A process in which source code is translated into machine code is called…", "options": ["Linking", "Executing", "Loading", "Compiling"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": What type of error will occur in the program when an incorrect mathematical formula is used…", "options": ["Syntax error", "Logical error", "Runtime error", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": cin is used to get ………. from the keyboard during execution…", "options": ["Input", "Output", "Value", "Clog"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": ……….. operators are used to compare two values…", "options": ["Relational operator", "Unary operator", "Bitwise operator", "Ternary operator"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": The statements of the program are executed one after the other in the order in which they are written…", "options": ["Repetition", "Sequential", "Selection", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": ………… is an unconditional control transfer statement…", "options": ["If-else", "Break", "Switch", "Goto"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": ": The statement that can only be used inside the body of a loop is…", "options": ["If", "Break", "Continue", "Switch"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/c-mcqs/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Deadlock Mcqs Questions Answers", "question": "Which requested resources are granted with deadlock detection?", "options": ["Resources", "Processes", "Programs", "Users"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/deadlock-mcqs-questions-answers/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Deadlock Mcqs Questions Answers", "question": "Prevention strategies of deadlock are very…?", "options": ["Simple", "Complex", "Conservative", "Straight"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/deadlock-mcqs-questions-answers/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Deadlock Mcqs Questions Answers", "question": "Which thread management work done by a pure Kernel Level Thread facility?", "options": ["Kernel", "Program", "Application", "Threads"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/deadlock-mcqs-questions-answers/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Deadlock Mcqs Questions Answers", "question": "Which labs initially developed by UNIX?", "options": ["NASA", "Microsoft", "Kaspersky", "Bell"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/deadlock-mcqs-questions-answers/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Deadlock Mcqs Questions Answers", "question": "The advantage of Multiprocessor system is …", "options": ["Operating system", "Increased Throughput", "Microsoft", "Data collection"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/deadlock-mcqs-questions-answers/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Deadlock Mcqs Questions Answers", "question": "Win32 application programming interfaces are for", "options": ["Windows", "UNIX", "Linux", "Microsoft"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/deadlock-mcqs-questions-answers/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Deadlock Mcqs Questions Answers", "question": "……….. that implies an unsafe state.", "options": ["the existence of deadlock", "that deadlock will eventually occur", "the pages of deadlock", "that some unfortunate sequence of events might lead to deadlock"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/deadlock-mcqs-questions-answers/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Deadlock Mcqs Questions Answers", "question": "Which one process cannot overwrite another’s a memory, either inadvertently or maliciously.", "options": ["sections", "partitions", "modules", "regions"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/deadlock-mcqs-questions-answers/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Deadlock Mcqs Questions Answers", "question": "………….. That can be loaded into adjacent “holes” in the main memory.", "options": ["segments", "frames", "partitions", "pages"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/deadlock-mcqs-questions-answers/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Deadlock Mcqs Questions Answers", "question": "System’s evaluate common schedule strategies.", "options": ["throughput", "means response time", "variance of response time", "all of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/deadlock-mcqs-questions-answers/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Deadlock Mcqs Questions Answers", "question": "How much time will spend when LRU replaces the page?", "options": ["shortest time in memory", "shortest time in memory without being referenced", "longest time in memory", "longest time in memory without being referenced"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/deadlock-mcqs-questions-answers/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Deadlock Mcqs Questions Answers", "question": "Why Spooling helps?", "options": ["while printing when computer release to do other things", "jobs go more smoothly with less stop", "printing it is a more secure method of accessing data", "none of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/deadlock-mcqs-questions-answers/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Deadlock Mcqs Questions Answers", "question": "OS spends much of its time paging also instead of executing applications software, it is called………..", "options": ["spooling", "formatting", "thrashing", "booting"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/deadlock-mcqs-questions-answers/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Deadlock Mcqs Questions Answers", "question": "…….. is an Overlay.", "options": ["a part of an OS", "a specific memory location", "overloading the system with many users fills", "a contiguous memory that was used in the olden days for running"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/deadlock-mcqs-questions-answers/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What will be the output of the following program?void change(int x) { x = 10; }int main() { int a = 5; change(a); cout << a; }", "options": ["10", "5", "0", "Error"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of this code?void change(int &x) { x = 10; }int main() { int a = 5; change(a); cout << a; }", "options": ["10", "5", "0", "Garbage value"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "In C++, when arguments are passed by value, changes made inside the function:", "options": ["Affect the original variable", "Are reflected automatically", "Do not affect the original variable", "Cause a runtime error"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of this code?void swap(int a, int b) { int temp = a; a = b; b = temp; }int main() { int x = 2, y = 3; swap(x, y); cout << x << \" \" << y; }", "options": ["3 2", "3 3", "2 2", "2 3"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What will be printed?void swap(int &a, int &b) { int temp = a; a = b; b = temp; }int main() { int x = 2, y = 3; swap(x, y); cout << x << \" \" << y; }", "options": ["2 3", "2 2", "3 3", "3 2"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "When passing arguments by reference, the function receives:", "options": ["A copy of the value", "The address of the variable", "A constant copy", "A pointer to a new object"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of this program?void test(int a, int &b) { a = 10; b = 20; }int main() { int x = 1, y = 2; test(x, y); cout << x << \" \" << y; }", "options": ["1 20", "10 20", "10 2", "1 2"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following statements is TRUE about pass-by-value?", "options": ["It saves memory by avoiding copies", "It changes the original value", "It passes a copy of the variable", "It requires pointers"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of this code?void modify(int &x) { x = x * 2; }int main() { int a = 5; modify(a); cout << a; }", "options": ["5", "10", "25", "Error"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What will happen in this program?void func(int &a, int b) { a = a + b; }int main() { int x = 3, y = 2; func(x, y); cout << x; }", "options": ["3", "Error", "2", "5"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output?void func(int x) { x = 15; }int main() { int a = 10; func(a); cout << a; }", "options": ["10", "15", "Error", "Garbage"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of this code?void func(int &x) { x = 15; }int main() { int a = 10; func(a); cout << a; }", "options": ["10", "Error", "15", "Undefined"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "In C++, a reference variable must be:", "options": ["Declared using * symbol", "Declared using & symbol", "Declared using @ symbol", "Declared without any symbol"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following will NOT compile?", "options": ["void test(int x);", "void test(int &x);", "void test(&x);", "void test(int* x);"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following statements about references is TRUE?", "options": ["A reference can be NULL", "A reference must be initialized when declared", "A reference can refer to multiple variables", "References are slower than pointers"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What will the code output?void change(int *p) { *p = 9; }int main() { int x = 3; change(&x); cout << x; }", "options": ["3", "Error", "0", "9"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What type of parameter passing uses the & operator in function declaration?", "options": ["Pass by pointer", "Pass by constant", "Pass by reference", "Pass by value"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following allows modification of the actual parameter value?", "options": ["Pass by reference", "Pass by value", "Both A and B", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What will the output be?void test(int *p) { *p = *p + 1; }int main() { int x = 10; test(&x); cout << x; }", "options": ["10", "11", "9", "Error"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What will be the output of this code?void change(int x, int &y) { x = 10; y = 20; }int main() { int a = 1, b = 2; change(a, b); cout << a << \" \" << b; }", "options": ["10 20", "1 2", "1 20", "10 2"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output?void add(int &x, int y) { x = x + y; }int main() { int a = 5, b = 3; add(a, b); cout << a; }", "options": ["8", "5", "3", "Error"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which statement is TRUE for pass-by-reference?", "options": ["Function operates on a copy of the variable", "Function operates on the original variable", "Function ignores parameters", "Function always returns void"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following function calls is invalid if the function expects pass by reference?void fun(int &x);", "options": ["fun(5);", "int a = 5; fun(a);", "int b = 2; fun(b);", "Both B and C"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output?void test(int a, int &b) { a++; b++; }int main() { int x = 1, y = 2; test(x, y); cout << x << \" \" << y; }", "options": ["1 2", "2 2", "1 3", "2 3"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What will be the result of this code?void func(int &x) { x = x + 5; }int main() { int a = 10; func(a); cout << a; }", "options": ["5", "10", "20", "15"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/function-arguments-pass-by-value-reference-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is a one-dimensional array in C++?", "options": ["An array of arrays", "A variable holding multiple data types", "An array stored in heap only", "A linear list of elements stored in contiguous memory"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How do you declare an array of 5 integers in C++?", "options": ["int arr(5);", "int arr[5];", "int arr{5};", "int arr = 5;"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How do you access the 3rd element of an array named arr?", "options": ["arr(2)", "arr[2]", "arr[3]", "arr{3}"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct initialization of a one-dimensional array?", "options": ["int arr[5] = {1, 2, 3, 4, 5};", "int arr[5] = (1, 2, 3, 4, 5);", "int arr[5] = [1, 2, 3, 4, 5];", "int arr[5] = ;"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What will be the output of this code?int arr[3] = {5, 10, 15};cout << arr[1];", "options": ["5", "10", "15", "Error"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is a two-dimensional array?", "options": ["An array of integers", "A single variable with multiple values", "A dynamically allocated array", "An array of arrays"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How do you declare a 2×3 integer array?", "options": ["int arr[2][3];", "int arr[3][2];", "int arr(2,3);", "int arr{2,3};"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How do you access the element at 2nd row and 3rd column of arr?", "options": ["arr[2][3]", "arr[1][2]", "arr[3][2]", "arr(1,2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output?int arr[2][2] = {{1,2},{3,4}};cout << arr[1][0];", "options": ["1", "2", "3", "4"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the default value of an uninitialized global array?", "options": ["Garbage", "0", "NULL", "Compiler dependent"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of this code?int arr[5];cout << arr[0];", "options": ["0", "Error", "1", "Garbage value"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Can arrays in C++ have variable size?", "options": ["Yes, always", "No, size must be constant for static arrays", "Only global arrays", "Only inside functions"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How is memory allocated for a 2D array?", "options": ["Contiguous memory block row-wise", "Separate blocks for each row", "Heap only", "Stack only"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How do you initialize a 2×2 array with zeros?", "options": ["int arr[2][2] = {0};", "int arr[2][2] = {{0,0},{0,0}};", "Both A and B", "None"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What will be the output?int arr[3] = {1,2};cout << arr[2];", "options": ["0", "2", "Garbage", "Error"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is illegal?", "options": ["int arr[5] = {1,2,3,4,5};", "int arr[3] = {1,2,3,4};", "int arr[2][2] = {{1,2},{3,4}};", "int arr[3][3] = {{1,2},{3,4}};"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How do you declare a 3D array?", "options": ["int arr(2,2,2);", "int arr[2,2,2];", "int arr[2][2][2];", "int arr{2,2,2};"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of this code?int arr[2][3] = {{1,2,3},{4,5,6}};cout << arr[1][2];", "options": ["2", "3", "5", "6"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How do you calculate the number of elements in a 1D array arr?", "options": ["sizeof(arr)/sizeof(int)", "sizeof(arr)/sizeof(arr[0])", "length(arr)", "arr.size()"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Arrays in C++ are:", "options": ["Dynamically allocated by default", "Zero-based indexed", "One-based indexed", "Can hold different data types"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is wrong with the declaration?int arr[];", "options": ["Nothing", "Array name is missing", "Size must be specified or initialized", "Type missing"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct for multi-dimensional array initialization?", "options": ["int arr[2][2] = {{1,2},{3,4}};", "int arr[2][2] = {1,2,3,4};", "Both A and B", "None"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of this code?int arr[3] = {5};cout << arr[1];", "options": ["5", "0", "Garbage", "Error"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How do you access elements in a multi-dimensional array using loops?", "options": ["Nested loops", "Single loop only", "Recursion only", "Cannot access"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true about arrays in C++?", "options": ["Size can be changed after declaration", "Arrays are continuous memory blocks", "Can store multiple types", "Can store strings only"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What will the output?int arr[2][3] = {{1,2,3},{4,5,6}};cout << arr[0][2];", "options": ["2", "3", "5", "6"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Can you partially initialize a 2D array?", "options": ["Yes, uninitialized elements are zero", "No", "Only for 1D arrays", "Only for global arrays"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is invalid?", "options": ["int arr[5]; arr[5] = 10;", "int arr[5] = {1,2,3};", "int arr[2][2] = {{1,2},{3,4}};", "int arr[] = {1,2,3};"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of this code?int arr[2][2] = {{1,2},{3,4}};cout << sizeof(arr)/sizeof(arr[0]);", "options": ["Error", "4", "8", "2"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is true about multi-dimensional arrays?", "options": ["Memory is not contiguous", "Rows can have different lengths", "They are arrays of arrays", "Cannot store integers"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/one-dimensional-and-multi-dimensional-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of the following code in C++? (Operator Overloading)class A{int x; public: A(int a){x=a;} A operator+(A o){return A(x+o.x);} void show(){coutint main(){A a1(10),a2(20),a3=a1+a2; a3.show();}", "options": ["10", "30", "20", "Error"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/operator-overloading-solved-mcqs-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which operator can be overloaded in C++?", "options": [":", "+", "sizeof", "?:"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/operator-overloading-solved-mcqs-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of the following code?class A{int x; public: A(int a){x=a;} void operator++(){++x;} void show(){coutint main(){A obj(5); ++obj; obj.show();}", "options": ["5", "6", "7", "Error"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/operator-overloading-solved-mcqs-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of the following code?class A{int x; public: A(int a){x=a;} A operator-(A o){return A(x-o.x);} void show(){coutint main(){A a1(10),a2(3); A a3=a1-a2; a3.show();}", "options": ["7", "13", "7", "Error"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/operator-overloading-solved-mcqs-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which operator cannot be overloaded in C++?", "options": ["+", "[]", "sizeof", ">"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/operator-overloading-solved-mcqs-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of the following code?class A{int x; public: A(int a){x=a;} friend A operator*(A a,A b){return A(a.xb.x);} void show(){coutint main(){A a1(2),a2(4); A a3=a1a2; a3.show();}", "options": ["6", "16", "8", "Error"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/operator-overloading-solved-mcqs-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Operator overloading is an example of which concept?", "options": ["Encapsulation", "Polymorphism", "Inheritance", "Abstraction"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/operator-overloading-solved-mcqs-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of the following code?class A{int x; public: A(int a){x=a;} bool operator>(A o){return x>o.x;}};int main(){A a1(5),a2(3); couta2);}", "options": ["0", "Error", "True", "1"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/operator-overloading-solved-mcqs-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which function is used to overload an operator?", "options": ["operator", "overload", "function", "op"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/operator-overloading-solved-mcqs-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of the following code?class A{int x; public: A(int a){x=a;} void operator–(){x–;} void show(){coutint main(){A obj(8); –obj; obj.show();}", "options": ["7", "8", "9", "Error"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/operator-overloading-solved-mcqs-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which operator is commonly overloaded using a friend function?", "options": ["=", "<<", "[]", "()"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/operator-overloading-solved-mcqs-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of the following code?class A{int x; public: A(int a){x=a;} A operator/(A o){return A(x/o.x);} void show(){coutint main(){A a1(20),a2(5); A a3=a1/a2; a3.show();}", "options": ["10", "5", "4", "Error"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/operator-overloading-solved-mcqs-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Operator overloading allows operators to:", "options": ["Work faster", "Work with user-defined data types", "Work only with integers", "Replace functions"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/operator-overloading-solved-mcqs-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output of the following code?class A{int x; public: A(int a){x=a;} bool operator==(A o){return x==o.x;}};int main(){A a1(5),a2(5); cout<<(a1==a2);}", "options": ["0", "True", "1", "Error"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/operator-overloading-solved-mcqs-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following statements about operator overloading is correct?", "options": ["It gives new meaning to operators for user-defined types", "It changes operator associativity", "It changes operator precedence", "It creates new operators"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/operator-overloading-solved-mcqs-oop/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "If int arr[5]; what type is arr?", "options": ["int array of size 5", "int pointer", "int reference", "int variable"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "If int arr[5]; then arr can be used as:", "options": ["Pointer to first element", "Reference to array", "Pointer to whole array", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What does *(arr + 2) represent?", "options": ["arr[0]", "arr[1]", "arr[2]", "arr[3]"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct to assign pointer to an array?", "options": ["int *ptr = arr[0];", "int *ptr = &arr;", "int ptr = arr;", "int *ptr = arr;"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is printed by this code?int arr[3] = {10,20,30};int *p = arr;cout << *(p+1);", "options": ["10", "20", "30", "Garbage"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which operator can be used to move pointer to next array element?", "options": ["&", "*", "++", ">"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What does p = arr + 2; point to?", "options": ["arr[0]", "arr[1]", "arr[3]", "arr[2]"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which is correct syntax to access array element using pointer?", "options": ["p[2]", "*(p + 2)", "Both A and B", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "If int arr[5] and int *p = arr;, what is p – arr?", "options": ["0", "1", "2", "Undefined"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is INCORRECT?", "options": ["arr[2] == *(arr + 2)", "arr++", "&arr == &arr[0]", "arr + 2 points to arr[2]"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What happens if you access arr[5] for int arr[5]?", "options": ["Prints 0", "Prints garbage value", "Compiler error", "Undefined behavior"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Pointer arithmetic is based on:", "options": ["Size of data type", "Value of pointer", "OS", "Compiler version"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is valid?int arr[3] = {1,2,3};int *p = arr;", "options": ["*(p + 1)", "p[2]", "*(arr + 2)", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What does p[-1] mean?", "options": ["Invalid", "Access previous element", "Access first element", "Access last element"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following correctly assigns pointer to 2D array row?int arr[3][4];", "options": ["int *p = arr;", "int *p = arr[0];", "int *p = &arr[0][0];", "Both B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "For int arr[2][3];, what is type of arr?", "options": ["int pointer", "int ()[3]", "int &", "int variable"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What does *(*(arr+1)+2) represent in 2D array?", "options": ["arr[0][2]", "arr[1][2]", "arr[2][1]", "arr[2][2]"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How do you assign pointer to the first element of a 2D array?", "options": ["int *p = arr;", "int (*p)[3] = arr;", "int *p = &arr[0][0];", "Both B and C"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "If int arr[5]; what is type of arr+1?", "options": ["int*", "int", "int&", "int**"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is valid to traverse an array using pointers?", "options": ["for(int *p = arr; p < arr+5; p++) cout << *p;", "for(int i=0; i<5; i++) cout << *(arr+i);", "Both A and B", "None"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What does arr[2] = *(arr+2) illustrate?", "options": ["Pointer arithmetic", "Array and pointer equivalence", "Dereferencing pointer", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What happens if you do arr = arr + 1;?", "options": ["Moves pointer", "Compiler error", "Works in C++", "Undefined behavior"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is output?int arr[3] = {5,10,15};int *p = arr;cout << p[1];", "options": ["5", "10", "15", "Garbage"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How do you access element arr[i][j] using pointer?", "options": ["((arr+i)+j)", "arr[i][j]", "Both A and B", "&arr[i][j]"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following gives the address of a 2D array row?", "options": ["arr[i]", "&arr[i][0]", "Both A and B", "&arr"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is TRUE?", "options": ["Arrays are pointers", "Array name is constant pointer", "Array can be assigned to another array", "Arrays can be incremented"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output?int arr[2][2] = {{1,2},{3,4}};int (*p)[2] = arr;cout << ((p+1)+0);", "options": ["1", "2", "3", "4"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which is correct pointer traversal for 2D array?int arr[2][3];", "options": ["for(int i=0; i<2; i++) for(int j=0; j<3; j++) cout << ((arr+i)+j);", "int *p = &arr[0][0]; for(int i=0; i<6; i++) cout << *(p+i);", "Both A and B", "None"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which is valid to get size of array using pointer?", "options": ["sizeof(arr) / sizeof(arr[0])", "sizeof(p) / sizeof(p[0])", "Both A and B", "None"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What does *arr give for int arr[5];?", "options": ["Address of array", "Value of first element", "Address of last element", "Garbage"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-and-arrays-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is a pointer to a function?", "options": ["Pointer storing an integer value", "Pointer storing address of a function", "Pointer storing address of a variable", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How do you declare a pointer to a function returning int and taking int parameters?", "options": ["int *p(int);", "int (*p)(int);", "int p(*int);", "int &p(int);"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "If int add(int a,int b){ return a+b; }, how do you assign a pointer to it?", "options": ["int (*p)(int,int) = &add;", "int *p = add;", "int (*p) = add;", "int p(*int,int) = add;"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following calls the function using pointer?", "options": ["p(5,10);", "(*p)(5,10);", "Both A and B", "None"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Function pointer can be passed as an argument to another function?", "options": ["Yes", "No", "Only in C", "Only for void functions"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is output?int square(int x){ return x*x; }int main(){ int (*p)(int) = square; cout << (*p)(4); }", "options": ["4", "8", "16", "0"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is valid declaration of pointer to function returning void and taking no arguments?", "options": ["void *p();", "void (p)();", "void p();", "void &p();"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Function pointers are useful for", "options": ["Callback functions", "Implementing tables of functions", "Event-driven programming", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Can a pointer to a function point to NULL?", "options": ["Yes", "No", "Only if function returns void", "Only for int functions"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct for array of function pointers?", "options": ["int (*p[5])(int,int);", "int p5", "int p5", "int (*p)(5)(int,int);"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is the output?int f(int x){ return x+1; }int main(){ int (*p)(int)=f; cout << p(9); }", "options": ["8", "9", "10", "Garbage"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How do you pass function pointer to another function?", "options": ["By value", "By reference", "Cannot be passed", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is valid to assign function pointer without & operator?", "options": ["int (*p)(int) = f;", "int (*p)(int) = &f;", "Both A and B", "None"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is valid to call function using pointer?", "options": ["p(5)", "(p)(5)", "p5", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Can function pointer point to member function of class?", "options": ["Yes, with special syntax", "No", "Only static functions", "Only void functions"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct typedef for function pointer returning int and taking two int parameters?", "options": ["typedef int (*funcPtr)(int,int);", "typedef int *funcPtr(int,int);", "typedef int funcPtr(*int,int);", "typedef int &funcPtr(int,int);"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is output?int add(int a,int b){ return a+b; }int main(){ int (*fp)(int,int)=add; cout << (*fp)(2,3); }", "options": ["2", "3", "5", "6"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which is true about function pointers?", "options": ["They can be reassigned to different functions of same type", "They store actual function code", "They cannot be dereferenced", "They can store variables"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Function pointers are mainly used for", "options": ["Callback functions", "Event-driven programs", "Jump tables", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-functions-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is a pointer to pointer?", "options": ["A pointer storing an array address", "A pointer storing address of another pointer", "A pointer storing integer value", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How do you declare a pointer to pointer for an int?", "options": ["int *p;", "int *p;", "int &p;", "int p;"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "If int a = 5; int *p = &a; int **q = &p;, what does **q give?", "options": ["Address of a", "Garbage", "Address of p", "5"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following is correct to assign pointer to pointer?", "options": ["**p = &a;", "int *q = &p;", "int **q = &p;", "int &q = &p;"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What is output of the code?int a = 10;int *p = &a;int **q = &p;cout << *p << \" \" << **q;", "options": ["10 10", "Address Address", "10 Address", "Address 10"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Pointer to pointer is useful for", "options": ["Dynamic memory allocation", "Passing pointer to function and modifying it", "Creating multi-level pointers", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How do you declare a pointer to pointer to pointer (triple pointer)?", "options": ["int ***p;", "int **p;", "int *p;", "int &p;"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "If int a=7; int *p=&a; int **q=&p; which of the following changes the value of a?", "options": ["*p = 10;", "**q = 20;", "Both A and B", "None"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What does q store in int **q = &p;?", "options": ["Address of int variable", "Address of pointer p", "Value of int variable", "Garbage"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How do you pass a pointer to a function so that it can modify the original pointer?", "options": ["Pass pointer normally", "Pass integer", "Pass reference", "Pass pointer to pointer"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Output of the code?int a=3;int *p=&a;int **q=&p;cout << p << \" \" << *q;", "options": ["Address Address", "3 3", "Address 3", "3 Address"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "What type should a function parameter have to modify a pointer?", "options": ["int *", "int **", "int", "int &"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "How to access the value of variable a using pointer to pointer?", "options": ["*p", "**q", "&a", "*q"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following declarations is valid?", "options": ["int **p, *q;", "int *p, **q;", "int ***p;", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "If int a=1, *p=&a, **q=&p; what does *q store?", "options": ["Address of a", "Value of a", "Address of p", "Garbage"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which of the following increments pointer to pointer?", "options": ["q++", "*q++", "**q++", "None"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Can a pointer to pointer point to NULL?", "options": ["Yes", "No", "Only in C++11", "Only for integer pointers"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "C++ Programming", "topic": "T4Tutorials C++ MCQs", "question": "Which statement is correct about pointer to pointer?", "options": ["It can only point to int pointers", "It can point to any type of pointer", "It cannot store NULL", "It cannot be dereferenced"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pointers-to-pointers-c-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Introduction To Computing Itc Mcqs", "question": ": Deep Blue is a", "options": ["mobile", "scanner", "computer", "all of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/introduction-to-computing-itc-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Introduction To Computing Itc Mcqs", "question": ": Communication protocol is a ______ to govern the flow of the information over a network.", "options": ["set of information", "set of instructions", "set of rules", "none of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/introduction-to-computing-itc-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Introduction To Computing Itc Mcqs", "question": ": Teletypewriter terminal is a …", "options": ["output device", "input/output device", "input device", "none of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/introduction-to-computing-itc-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Introduction To Computing Itc Mcqs", "question": ": The programming language designed for military applications was …", "options": ["Ada", "C++", "C#", "VISUAL BASIC"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/introduction-to-computing-itc-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Introduction To Computing Itc Mcqs", "question": ": Punched cards were replaced by …", "options": ["CD’s", "magnetic tapes", "floppy disk", "zip drives"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/introduction-to-computing-itc-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Introduction To Computing Itc Mcqs", "question": ": TCP is abbreviated as …", "options": ["Transmission Control Protocol", "Transfer Control Protocol", "Transformation Commision Principles", "Translation Control Principles"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/introduction-to-computing-itc-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Introduction To Computing Itc Mcqs", "question": ": The brain of computer microprocessor is …", "options": ["arithmetic logic unit", "control unit", "bus interface unit", "none of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/introduction-to-computing-itc-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Introduction To Computing Itc Mcqs", "question": ": Babbage’s analytical engine uses __________ for storing information permanently.", "options": ["magnetic tapes", "punched cards", "floppy disks", "none of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/introduction-to-computing-itc-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Introduction To Computing Itc Mcqs", "question": ": The place where large amount of information is stored outside the CPU is …", "options": ["ALU", "backing store", "peripherals", "control unit"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/introduction-to-computing-itc-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Introduction To Computing Itc Mcqs", "question": ": Instructions having arithmetic operations, then its data is transferred to …", "options": ["register", "central processing unit", "arithmetic and logic unit", "none of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/introduction-to-computing-itc-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Introduction To Computing Itc Mcqs", "question": ": Teraflop stands for …", "options": ["Trillion floating point operations per second", "Thousand floating point operations per second", "Thousand floating point operations per hour", "Trillion floating point operations per hour"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/introduction-to-computing-itc-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Introduction To Computing Itc Mcqs", "question": ": Monitor is a …", "options": ["output device", "input device", "input/output device", "none of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/introduction-to-computing-itc-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Cyber Crime Solved Mcqs Questions Answers", "question": "Which one option is not a type of cybercrime?", "options": ["Data theft", "Forgery", "Damage to data and systems", "Installing antivirus for protection"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/cyber-crime-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Cyber Crime Solved Mcqs Questions Answers", "question": "McAfee is an example of", "options": ["Photo Editing Software", "Quick Heal", "Virus", "Antivirus"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/cyber-crime-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Cyber Crime Solved Mcqs Questions Answers", "question": "Cyber-crime can be categorized into ________ types.", "options": ["4", "3", "2", "6"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/cyber-crime-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Cyber Crime Solved Mcqs Questions Answers", "question": "Which of the following is not a type of peer-to-peer cyber-crime?", "options": ["Phishing", "Injecting Trojans to a target victim", "MiTM", "Credit card details leak in the deep web"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/cyber-crime-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Cyber Crime Solved Mcqs Questions Answers", "question": "Which of the following is not an example of a computer as a weapon cyber-crime?", "options": ["Credit card fraudulent", "Spying someone using keylogger", "IPR Violation", "Pornography"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/cyber-crime-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Cyber Crime Solved Mcqs Questions Answers", "question": "Which of the following is not done by cybercriminals?", "options": ["Unauthorized account access", "Mass attack using Trojans as botnets", "Email spoofing and spamming", "Report vulnerability in any system"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/cyber-crime-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Cyber Crime Solved Mcqs Questions Answers", "question": "What is the name of the IT law that India is having in the Indian legislature?", "options": ["India’s Technology (IT) Act, 2000", "India’s Digital Information Technology (DIT) Act, 2000", "India’s Information Technology (IT) Act, 2000", "The Technology Act, 2008"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/cyber-crime-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Cyber Crime Solved Mcqs Questions Answers", "question": "In which year India’s IT Act came into existence?", "options": ["2000", "2001", "2002", "2003"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/cyber-crime-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Cyber Crime Solved Mcqs Questions Answers", "question": "What is the full form of ITA-2000?", "options": ["Information Tech Act -2000", "Indian Technology Act -2000", "International Technology Act -2000", "Information Technology Act -2000"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/cyber-crime-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Cyber Crime Solved Mcqs Questions Answers", "question": "Under which section of the IT Act, stealing any digital asset or information is written a cyber-crime?", "options": ["65", "65-D", "67", "70"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/cyber-crime-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Cyber Crime Solved Mcqs Questions Answers", "question": "The first computer virus is ——–", "options": ["I Love You", "Blaster", "Sasser", "Creeper"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/cyber-crime-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Cyber Crime Solved Mcqs Questions Answers", "question": "Which of the following is known as Malicious software?", "options": ["illegal war", "badware", "malware", "malicious ware"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/cyber-crime-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Cyber Crime Solved Mcqs Questions Answers", "question": "To protect a computer from virus, you should install ——– on your computer.", "options": ["backup wizard", "disk cleanup", "antivirus", "disk defragmenter"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/cyber-crime-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Cyber Crime Solved Mcqs Questions Answers", "question": "How to track Email?", "options": ["Read notify", "Self distracting", "Spy pin", "Gmail"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/cyber-crime-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Cyber Crime Solved Mcqs Questions Answers", "question": "What are the types of password attacks?", "options": ["Electronic Attack", "Nonelectronic attack", "Man in the middle attack", "Shoulder surfing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/cyber-crime-solved-mcqs-questions-answers/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "What is the primary goal of using machine learning in advanced computing?", "options": ["To automate simple tasks", "To replace human judgment", "To enable systems to learn from data and improve over time", "To simplify programming languages"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "Which of the following techniques is commonly used for natural language processing?", "options": ["Convolutional neural networks", "Recurrent neural networks", "Decision trees", "Support vector machines"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "What does the term “deep learning” refer to?", "options": ["A subset of machine learning involving neural networks with many layers", "A type of shallow learning", "A technique for manual data entry", "A traditional programming approach"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "Which architecture is widely used for image recognition tasks?", "options": ["Support vector machines", "Linear regression", "Convolutional neural networks", "K-means clustering"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "What is reinforcement learning primarily concerned with?", "options": ["Supervised learning from labeled data", "Reducing dimensionality", "Clustering data into groups", "Learning through interaction with an environment to maximize cumulative rewards"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "Which of the following is a common application of generative adversarial networks (GANs)?", "options": ["Predicting stock prices", "Classifying images into categories", "Generating realistic images from random noise", "Enhancing the performance of decision trees"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "What does “transfer learning” allow a model to do?", "options": ["Apply knowledge gained from one task to improve performance on a related task", "Learn from scratch on a new dataset", "Use more memory", "Ignore previous training"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "In the context of big data, what is “data mining”?", "options": ["The process of collecting data", "Storing data in databases", "Analyzing large datasets to discover patterns and insights", "Visualizing data"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "Which of the following describes “cloud computing”?", "options": ["Delivering computing services over the internet", "Storing data on physical hard drives", "Running applications exclusively on local machines", "Requiring high-performance hardware"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "What is the main advantage of using containerization in software development?", "options": ["Increased resource consumption", "Complexity in deployment", "Portability and consistency across environments", "Dependency on specific hardware"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "Which algorithm is commonly used for dimensionality reduction?", "options": ["Decision trees", "K-nearest neighbors", "Linear regression", "Principal component analysis (PCA)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "What does the term “blockchain” refer to?", "options": ["A decentralized digital ledger technology", "A type of cloud storage", "A method for data visualization", "A proprietary database"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "Which of the following is an application of Internet of Things (IoT) technology?", "options": ["Traditional data storage", "Static web pages", "Local area networking", "Smart home devices"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "What is the purpose of edge computing?", "options": ["To process data closer to the source of generation", "To centralize data processing", "To eliminate the need for data storage", "To enhance cloud processing"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "In the context of databases, what does “NoSQL” refer to?", "options": ["A type of relational database", "A type of data compression", "Non-relational database management systems designed for unstructured data", "A standard query language"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "Which of the following is a feature of quantum computing?", "options": ["Uses classical bits for processing", "Requires less power than traditional computers", "Operates exclusively on binary data", "Exploits the principles of superposition and entanglement"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "What is the primary advantage of using a microservices architecture?", "options": ["Enhanced scalability and flexibility", "Increased complexity in development", "Dependency on a single technology stack", "Reduced deployment speed"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "Which of the following best describes “augmented reality”?", "options": ["A completely virtual environment", "A method for data encryption", "An outdated technology", "Enhancing real-world experiences with digital elements"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "What is the main function of an API (Application Programming Interface)?", "options": ["To create user interfaces", "To store data", "To allow different software applications to communicate with each other", "To manage network traffic"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "advanced-topics-mcqs", "topic": "advanced-topics-mcqs", "question": "Which of the following is a challenge associated with artificial intelligence?", "options": ["Ethical considerations and bias in algorithms", "Increased efficiency", "Improved decision-making", "Simplified data analysis"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-topics-mcqs/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "The river which originates and as well as ends in the territory of India:", "options": ["Kosi", "Indus", "Chambal", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "In which province of Pakistan is the Bolan river located?", "options": ["KPK", "Sindh", "Balochistan", "Punjab"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "_______ river does not flow through the Himalayas:", "options": ["Indus", "Alaknanda", "Bhagirathi", "Godavari"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "The source of the Sutlej river is _______.", "options": ["Mt. Kailash (Tibet)", "Pindari Glacier, Uttarakhand", "Satpura Range, Betul (MP)", "Udaipur, Aravalli Hills (Rajasthan)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "______ is also known as Dakshina Ganga:", "options": ["Krishna", "Godavari", "Mahanadi", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "Total length of the river known as Ravi is _____:", "options": ["715 km", "635 km", "695 km", "610 km"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "In which of the following states does the Narmada River not flow?", "options": ["Gujarat", "Madhya Pradesh", "Odisha", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "______ is the source of the Beas river:", "options": ["None of the above", "Gaumukh, Uttarakhand", "Satpura Range, Betul (MP)", "Rohtang Pass (Himachal Pradesh)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "The Indira Sagar Dam located in Madhya Pradesh is constructed on the ______ river:", "options": ["None of the above", "Yamuna", "Chambal", "Krishna"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "The Indus river ends at:", "options": ["Sutlej", "Chenab", "Arabian Sea", "Indian Ocean"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "The river which lent its name to India:", "options": ["Krishna", "Bhagirathi", "Indus", "Ganga"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "The source of the Godavari River is _________:", "options": ["Gaumukh, Uttarakhand", "Chorabari Glacier, Uttarakhand", "Nanda Ghunti, Uttarakhand", "Nasik (Maharashtra)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "______ river is the home for freshwater dolphins:", "options": ["Sabarmati", "Yamuna", "Brahmaputra", "Ganga"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "All the rivers of Punjab enter into Indus at __________:", "options": ["Kot Mitthan", "Kabirwala", "Panjnad", "Trimmu"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "_________ river originates from the Maikal range:", "options": ["Gomti", "Son", "Ghagra", "Narmada"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "________ is also known as the Indus river:", "options": ["Abaseen River", "Skardu River", "Attock River", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "Ajmer is situated on _______ river:", "options": ["Beas", "Teesta", "Luni", "Ganga"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "In Sindh, ______ rivers flow:", "options": ["Four", "Seven", "Six", "Five"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "The longest river in Australia is __________:", "options": ["Volga", "Mahaweli Ganga", "Nile", "Murray"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "Indus river rises from ______:", "options": ["Tibet", "Jammu", "Kashmir", "China"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "Mountain General Knowledge MCQs", "options": ["India", "China", "Pakistan"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "Mark the correct one which is called as Sagarmatha in its home country.", "options": ["K2", "Mount Everest", "Dhaulagiri I", "Manaslu"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "_______ highest mountain peak of the world is known as Nanga Parbat.", "options": ["9th", "8th", "5th", "10th"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "Pakistan’s highest peak is ____.", "options": ["Kilik Peak", "K-2", "Broad Peak", "Sia Kingri Peak"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "K2 is ranked as the ______ highest peak of the world?", "options": ["Second", "First", "Third", "Fourth"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "World’s ______ highest mountain is Makalu.", "options": ["Third", "Seventh", "Fifth", "Ninth"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "Due to the force generated by the endogenetic force ____ mountains are formed. For example, when two plates collide head-on, and their edge crumbled?", "options": ["Block Mountains", "Fold Mountains", "Volcanic Mountains", "Dissected mountains"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "K-2 is also called as ______________ ?", "options": ["Roshan Peak", "Broad Peak", "Godwin Austin", "Sia Kingri"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "K2 is located in ___________ Mountain Range.", "options": ["Mahalangur Himalaya", "Hispar Karakoram", "Baltoro Karakoram", "Kangchenjunga Himalaya"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "North America’s largest mountain _________.", "options": ["McKinley", "Aconcagua", "Prime Charles mountain", "Rockies mountain"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "Nanga Parbat is the smallest part of?", "options": ["Himalayas", "Karakoram", "Pamir", "Hindu Kush"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "Which one of the following mountains is also known as Mountain Godwin-Austen?", "options": ["Himalchuli", "Nanga Parbat", "K2", "Mount Everest"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "The Gasherbrum 1 is seen in ______.", "options": ["Hindu Kush range", "Himalaya Range", "Karakoram Range", "Pir Panjal Range"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "_______ is called the roof of the world?", "options": ["Pamir Plateau", "Hindu Kush Range", "Karakoram", "Himalayas Range"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "The world’s third tallest mountain name is _______?", "options": ["Makalu", "Lhoste", "Cho Oyu", "Kangchenjunga"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "Range which separates Pakistan from China is _________?", "options": ["Hindu Kush", "Pamir", "Karakoram", "Himalayas"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "The world’s second tallest mountain is _________?", "options": ["Kangchenjunga", "Mount Everest", "K2", "Lhoste"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "World’s tallest mountain lies in_______", "options": ["Iceland", "Pakistan", "Switzerland", "Nepal"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "The tallest mountain of the world is", "options": ["Lhoste", "K2", "Kangchenjunga", "Mount Everest"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "general-knowledge-mcqs-homepage", "topic": "general-knowledge-mcqs-homepage", "question": "In research K2 has a height of ______?", "options": ["30,472 ft", "28,251 ft", "26,159 ft", "27,998 ft"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/general-knowledge-mcqs-homepage/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "_______ field in the base header restricts the lifetime of a datagram in IPv6.", "options": ["Version", "Next-header", "Hop limit", "Neighbor-advertisement"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "An HLEN value of decimal 10 means _______ in the IPv4 header.", "options": ["10 bytes of options", "40 bytes of options", "10 bytes in the header", "40 bytes in the header"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "In IPv4, an HLEN value of decimal 10 means _______.", "options": ["10 bytes of options", "40 bytes of options", "40 bytes in the header", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "_______ field in the base header and the sender IP address combine to indicate a unique path identifier in IPv6.", "options": ["Flow label", "Next header", "Hop limit", "Destination IP address"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "What is the value of the total length field in bytes in IPv4?", "options": ["428", "407", "107", "427"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "________ term means that IP provides no error checking.", "options": ["Reliable delivery", "Connection-oriented delivery", "Best-effort delivery", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "________ protocol is the transmission used by the TCP/IP suite.", "options": ["ARP", "IP", "RARP", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "What is the length of the data field given an HLEN value of 12 and the total length is 40,000 in IPv4?", "options": ["39,988", "40,012", "40,048", "39,952"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "What is needed to determine the number of the last byte of a fragment in IPv4?", "options": ["Identification number", "Offset number", "Total length", "(B) and (C)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "_______ size in the IPv4 header.", "options": ["20 to 60 bytes long", "20 bytes long", "60 bytes long", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "In IPv6, the decision is based on the _______ field in the base header.", "options": ["Hop limit", "Priority", "Next header", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "Which bit value unambiguously identifies the datagram as a fragment in IPv4?", "options": ["Do not fragment bit = 0", "More fragment bit = 0", "Offset = 1000", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "Which is a necessary part of the IPv6 datagram?", "options": ["Base header", "Extension header", "Data packet from the upper layer", "(A) and (C)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "In IPv4, the total size of the datagram must be less than the _______.", "options": ["MUT", "MAT", "MTU", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "Options are inserted between _________ and ___________ data, in IPv6.", "options": ["Base header; extension header", "Base header; upper-layer data", "Base header; frame header", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "Datagram is fragmented into three smaller datagrams in IPv4. Which is true?", "options": ["The do not fragment bit is set to 1 for all datagrams.", "The more fragment bit is set to 0 for all datagrams.", "The identification field is the same for all datagrams.", "The offset field is the same."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "If the fragment offset has a value of 100, it means that _______ in IPv4.", "options": ["Datagram has not been fragmented", "Datagram is 100 bytes in size", "The first byte of the datagram is byte 100", "The first byte of the datagram is byte 800"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "IP is _________ datagram protocol.", "options": ["An unreliable", "A connectionless", "Both A and B", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "IPv6 allows _________ security provisions than IPv4.", "options": ["More", "Less", "The same level", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "The formerly IPv4 header field known as the service type field is now called?", "options": ["IETF", "Checksum", "Differentiated services", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "Delivery service such as IPv4.", "options": ["Error checking", "Error correction", "Datagram acknowledgment", "None of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "The IPv4 header size _______.", "options": ["20 to 60 bytes long", "20 bytes long", "60 bytes long", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "Which network layer from the sender to receiver deals with the necessity of a three-way handshake transmission of data?", "options": ["Path determination", "Forwarding", "Call set-up", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "Transmission purpose is basically a combination of __________.", "options": ["Group of bits", "Source & destination addresses", "Both A & B", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "________ plays a crucial role in the functions of the network layer.", "options": ["Network Service Data Unit (NSDU)", "Medium Access Control Unit (MACU)", "Network Address Translation Unit (NATU)", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "_______ form of byte assigning strategy is adopted in class B?", "options": ["Network.Node.Node.Node", "Network.Network.Node.Node", "Network.Network.Network.Node", "Network.Node.Node.Node"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "Which size of the block depends on classless?", "options": ["Nature & size of an entity", "Number of addresses", "Availability of the address space", "All of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "Which is the ability of a single network to span multiple physical networks?", "options": ["Subnetting", "Masking", "Fragmenting", "Hopping"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Networks", "topic": "T4Tutorials Network Layer Osi Model Solved Mcqs", "question": "Which field/s of ICMPv6 packet header has minimal integrity levels?", "options": ["Type", "Code", "Checksum", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/network-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Video Editing And Mixing Mcqs For Graphic Designer Jobs", "question": ": Computer devices which are able to click the image of any type, including solid objects, are called", "options": ["Image viewer", "Webcam", "Video cam", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/video-editing-and-mixing-mcqs-for-graphic-designer-jobs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Video Editing And Mixing Mcqs For Graphic Designer Jobs", "question": ": When framing a shot, what should always be considered?", "options": ["Rule of thirds", "Sound", "Shortlist", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/video-editing-and-mixing-mcqs-for-graphic-designer-jobs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Video Editing And Mixing Mcqs For Graphic Designer Jobs", "question": ": A special sort of camera incorporates a scanner, which is made up of", "options": ["Charged couple device", "Laser light", "Sensor", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/video-editing-and-mixing-mcqs-for-graphic-designer-jobs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Video Editing And Mixing Mcqs For Graphic Designer Jobs", "question": ": Line accounting containing triple bottom aims to show:", "options": ["The financial profit made by firms", "The environmental impact of firms", "The social impact of firms", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/video-editing-and-mixing-mcqs-for-graphic-designer-jobs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Video Editing And Mixing Mcqs For Graphic Designer Jobs", "question": ": Electric telegraph was invented by_________.", "options": ["Eli Whitney", "Samuel Morse", "Guglielmo Marconi", "Alexander Graham Bell"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/video-editing-and-mixing-mcqs-for-graphic-designer-jobs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Video Editing And Mixing Mcqs For Graphic Designer Jobs", "question": ": Because of___________, it is in the interest of businesses to protect the environment", "options": ["Current operating costs will fall", "In the long term, we all are dead", "Short term profit will increase", "Maximum short-term profits endanger long-term profits and increase risk"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/video-editing-and-mixing-mcqs-for-graphic-designer-jobs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Video Editing And Mixing Mcqs For Graphic Designer Jobs", "question": ": The three elements of the story are:", "options": ["Writing, filming, editing", "Script, actor, director", "Beginning, middle, end", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/video-editing-and-mixing-mcqs-for-graphic-designer-jobs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Video Editing And Mixing Mcqs For Graphic Designer Jobs", "question": ": The four basic elements of a camera chain are:", "options": ["Camera, switcher, preview monitors, CCU", "The camera head, CCU, camera pedestal, lens", "The camera head, sync generator, power supply, CCU", "Power supply, pickup device, viewfinder, camera head"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/video-editing-and-mixing-mcqs-for-graphic-designer-jobs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Video Editing And Mixing Mcqs For Graphic Designer Jobs", "question": ": In real-time data, jitter is introduced by ________", "options": ["Delay between packets", "Error caused during transmission", "Both A & B", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/video-editing-and-mixing-mcqs-for-graphic-designer-jobs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Video Editing And Mixing Mcqs For Graphic Designer Jobs", "question": ": A scanner containing 600 dots per inch resolution can explore an image up to", "options": ["600×600 areas", "600×100 areas", "600×1200 areas", "600×300 areas"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/video-editing-and-mixing-mcqs-for-graphic-designer-jobs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "To create a descriptive list which tag is used?", "options": ["…\" /> {\"@context\":\"https://schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https://t4tutorials.com/#/schema/WebSite\",\"url\":\"https://t4tutorials.com/\",\"name\":\"T4Tutorials.com\",\"description\":\"Learn C programming, Data Structures tutorials, exercises, examples, programs, Database, Software, Data Mining, MCQs\",\"inLanguage\":\"en-US\",\"potentialAction\":{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https://t4tutorials.com/search/{search_term_string}/\"},\"query-input\":\"required name=search_term_string\"},\"publisher\":{\"@type\":\"Organization\",\"@id\":\"https://t4tutorials.com/#/schema/Organization\",\"name\":\"T4Tutorials.com\",\"url\":\"https://t4tutorials.com/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://t4tutorials.com/wp-content/uploads/logo-t4tutorials-2020.webp\",\"contentUrl\":\"https://t4tutorials.com/wp-content/uploads/logo-t4tutorials-2020.webp\",\"width\":229,\"height\":48,\"inLanguage\":\"en-US\",\"caption\":\"logo t4tutorials 2024\",\"contentSize\":\"2778\"}}},{\"@type\":\"WebPage\",\"@id\":\"https://t4tutorials.com/html-solved-mcqs/\",\"url\":\"https://t4tutorials.com/html-solved-mcqs/\",\"name\":\"HTML Solved MCQs | T4Tutorials.com\",\"description\":\"1: Which of the following is a container?", "\\u003Cinput\\u003E", "\\u003Chead\\u003E", "\\u003Cselect\\u003E", "\\u003Cdocument\\u003E"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "tag is a …", "options": ["base tag", "format tag", "delete tag", "empty tag"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": ", & are the tags of …", "options": ["list", "text", "body", "table"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "Gif and jpg are the types of …", "options": ["videos", "audio", "image", "text"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "Which tag is used to add rows in a table?", "options": ["&", "&", "&", "&"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "tag is used for …", "options": ["pitch", "paragraph", "print", "all of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "tag is used in …", "options": ["head", "body", "title", "none of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "What will be added in a table when and tags are used?", "options": ["row", "cell", "column", "list"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "What is HTML?", "options": ["High Text Markup Language", "Hyper Tabular Markup Language", "HyperText Markup Language", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "Markup tags tell the web browser?", "options": ["How to organize the page", "How to display the page", "How to display a message box on the page", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "WWW is based on which model?", "options": ["Local-server", "3-tier", "Client-server", "World Wide Web"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "What are empty elements and is it valid?", "options": ["No terms exist as Empty Element", "It is not valid to use Empty Element", "Empty elements have no data", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "Which attribute of text box control is used for the maximum character?", "options": ["Size", "Len", "max length", "all of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "HTML is a subset of …", "options": ["SGMT", "SGML", "SGMD", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "Which attribute defines the relationship between current document and HREF’ed URL?", "options": ["REL", "URL", "REV", "all of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "tag is used to accept … as tag is used to fit a single line:", "options": ["line of text", "word", "request", "full paragraph"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "The best approach to establish Base URL is?", "options": ["HEAD element", "BASE element", "TITLE element", "Both A and B"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "and elements are same?", "options": ["No, they represent different elements", "First is correct only", "first is only correct", "Both are same"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "Part of graphic not added into another hot zone is considered part of …", "options": ["default", "rect", "point", "polygon"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "The map definition file is generally stored in …", "options": ["RECYCLE-BIN", "BIN", "CGI-BIN", "All of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Solved Mcqs", "question": "The latest HTML standard is …", "options": ["XML", "SGML", "HTML 4.0", "HTML 5.0"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/html-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Image Processing Mcqs", "question": ": Levels in an 8-bit image are:", "options": ["128", "255", "512", "256"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/digital-image-processing-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Image Processing Mcqs", "question": ": Color transformation is processed between the:", "options": ["Any colour model", "Tri colour model", "Dual colour model", "Single colour model"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/digital-image-processing-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Image Processing Mcqs", "question": ": Black color in an image is represented by:", "options": ["1", "0", "256", "259"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/digital-image-processing-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Image Processing Mcqs", "question": ": Radio wave band is:", "options": ["Audio", "AM & FM", "Both A and B", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/digital-image-processing-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Image Processing Mcqs", "question": ": ——- is called the matrix of each element:", "options": ["Pixels", "Value", "Coordinate", "Dots"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/digital-image-processing-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Image Processing Mcqs", "question": ": Cornea covers the eye’s:", "options": ["Lashes", "Eye lid", "Exterior", "Anterior"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/digital-image-processing-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Image Processing Mcqs", "question": ": Zoom types are:", "options": ["9", "6", "2", "4"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/digital-image-processing-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Image Processing Mcqs", "question": ": Which of the following is not part of the eye membrane?", "options": ["Cells", "Retina", "Choroid", "Cornea"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/digital-image-processing-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Image Processing Mcqs", "question": ": Which of the following is the innermost membrane of the eye?", "options": ["Cornea", "Eye lid", "Sclera", "Retina"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/digital-image-processing-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Image Processing Mcqs", "question": ": Radio waves have:", "options": ["Energy", "Power", "Frequency", "Wavelength"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/digital-image-processing-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Image Processing Mcqs", "question": ": —— types of imaging sensors:", "options": ["5", "4", "3", "6"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/digital-image-processing-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Image Processing Mcqs", "question": ": Gamma rays have:", "options": ["Energy", "Power", "Wavelength", "Frequency"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/digital-image-processing-mcqs/"}
{"subject": "basic-electronics-solved-mcqs", "topic": "basic-electronics-solved-mcqs", "question": ": A logic circuit that can add two 1-bit numbers and produce outputs for sum and carry is called:", "options": ["Full adder", "Semi adder", "Half adder", "Double adder"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-solved-mcqs/"}
{"subject": "basic-electronics-solved-mcqs", "topic": "basic-electronics-solved-mcqs", "question": ": An ordinary transistor is:", "options": ["Dipolar", "Tripolar", "Bipolar", "Tetra polar"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-solved-mcqs/"}
{"subject": "basic-electronics-solved-mcqs", "topic": "basic-electronics-solved-mcqs", "question": ": What does the word “hybrid” mean?", "options": ["Unique", "Single", "Dual", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-solved-mcqs/"}
{"subject": "basic-electronics-solved-mcqs", "topic": "basic-electronics-solved-mcqs", "question": ": When the current in the primary coil of a transformer is changed, it induces change in the magnetic field of:", "options": ["Capacitor", "Transistor", "Resistor", "Secondary coil"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-solved-mcqs/"}
{"subject": "basic-electronics-solved-mcqs", "topic": "basic-electronics-solved-mcqs", "question": ": We use a half-wave rectifier:", "options": ["To run AC care", "To run car radios", "To run batteries", "To run tape recorders"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-solved-mcqs/"}
{"subject": "basic-electronics-solved-mcqs", "topic": "basic-electronics-solved-mcqs", "question": ": A Zener diode is a:", "options": ["Current stabilizer", "Voltage stabilizer", "Resistance stabilizer", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-solved-mcqs/"}
{"subject": "basic-electronics-solved-mcqs", "topic": "basic-electronics-solved-mcqs", "question": ": We can construct an Exclusive-OR gate using which other gates?", "options": ["AND, NOT, and OR gate only", "AND and NAND gate only", "OR gate only", "All of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-solved-mcqs/"}
{"subject": "basic-electronics-solved-mcqs", "topic": "basic-electronics-solved-mcqs", "question": ": The unit of resistance is:", "options": ["Ampere", "Ohm", "EMF", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-solved-mcqs/"}
{"subject": "basic-electronics-solved-mcqs", "topic": "basic-electronics-solved-mcqs", "question": ": The transistor amplifier equation is VCE = VCB + _____:", "options": ["5VBE", "3VEB", "VBE", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-solved-mcqs/"}
{"subject": "basic-electronics-solved-mcqs", "topic": "basic-electronics-solved-mcqs", "question": ": In a reverse-biased junction, its barrier potential will be:", "options": ["Decreased", "Remain same", "Increased", "Continuously change"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-solved-mcqs/"}
{"subject": "basic-electronics-solved-mcqs", "topic": "basic-electronics-solved-mcqs", "question": ": Mutual induction depends on:", "options": ["Resistance changes", "Current changes", "Voltage changes", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-solved-mcqs/"}
{"subject": "basic-electronics-solved-mcqs", "topic": "basic-electronics-solved-mcqs", "question": ": A transformer used to convert unbalanced signals to balanced signals is called a:", "options": ["Auto-transformer", "Balun", "Step-up transformer", "Step-down transformer"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-solved-mcqs/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "Which key is used for the shortcut key to combine the selected objects?", "options": ["Ctrl + L", "Ctrl + Y", "Ctrl + K", "Ctrl + Q"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "Define the shortcut key for toggling snapping to objects?", "options": ["Ctrl + L", "Ctrl + G", "Alt + Shift + D", "Alt + Z"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "What fill tool would a person use if she/he wanted to fill an object with hearts?", "options": ["Uniform", "Transparent", "Fountain", "Pattern"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "Is it possible that W brings up the navigator window allowing you to navigate any object in the document?", "options": ["FALSE", "TRUE", "FALSE"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "What key is used for specifying fountain fills for objects?", "options": ["F11", "Alt + F4", "Ctrl + B", "F6"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "What tool would a person use for an object of two colors that blend with one another?", "options": ["Fountain", "Transparent", "Uniform", "Pattern"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "In the drawing, F3 is the shortest key for zooming all objects?", "options": ["FALSE", "TRUE", "FALSE"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "The shortest key for displaying a full preview of drawing or graphic?", "options": ["F2", "F4", "F1", "F9"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "Aligning selected objects to the bottom, which key is used?", "options": ["T", "S", "D", "B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "C aligns centers of selected objects vertically.", "options": ["FALSE", "TRUE", "TRUE"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "Specifying fountain fills for objects, what shortest key is used?", "options": ["F6", "Ctrl + B", "F11", "Alt + F4"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "What size will be taken when A2 paper is divided equally from the center?", "options": ["B3", "A3", "A4", "A5"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "For cropping, a tool used is called?", "options": ["Shape tool", "Zoom tool", "Knife tool", "Pick tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "What color separation does the graphic work have with red, yellow, black, and white?", "options": ["4", "3", "5 1/2", "5"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "What number will the sheets contain in a bookwork of ten pages?", "options": ["1 & 10", "3 & 5", "1 & 2", "2 & 9"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "Purpose of the ruler bar is?", "options": ["For book design", "Setting of margin", "Dividing your work", "All of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "What number of paper orientation do we have in Corel Draw?", "options": ["2", "1", "4", "3"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "For selecting and deselecting objects, a tool used is called?", "options": ["Freehand tool", "Shape tool", "Pick tool", "Bezier tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "Do White and Green have two color separations?", "options": ["FALSE", "TRUE", "FALSE"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "In which object Zoom total is used for?", "options": ["Marquee selecting", "Embedding", "Magnifying", "Cropping"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "What application is needed when light color texts are placed on a light color background?", "options": ["Transparency applied to the background", "Transparency applied to the text", "A dull outline applied to the text", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "One of the sheets will contain the following numbers in a bookwork of ten pages.", "options": ["1 & 2", "2 & 9", "3 & 5", "1 & 10"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "CorelDraw is ______ based drawing application package?", "options": ["Bitmap", "Scalar", "Vector", "Photo paint"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "What color separation will we get with the graphic work of Red, Yellow, Black, and White?", "options": ["5 1/2", "4", "5", "3"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "In CorelDraw, how many color separations do we have?", "options": ["4", "2", "6", "3"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "A preset guideline can be created using the?", "options": ["Replace wizard", "Collect for output option", "Options dialog box", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "topic": "corel-draw-quiz-test-solved-mcqs-questions-with-answers", "question": "For combining selected objects, which shortcut key is used?", "options": ["Ctrl + L", "Ctrl + K", "Ctrl + Y", "Ctrl + Q"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-quiz-test-solved-mcqs-questions-with-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "Text and tags that are not directly displayed on the page are written in…\" /> {\"@context\":\"https://schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https://t4tutorials.com/#/schema/WebSite\",\"url\":\"https://t4tutorials.com/\",\"name\":\"T4Tutorials.com\",\"description\":\"Learn C programming, Data Structures tutorials, exercises, examples, programs, Database, Software, Data Mining, MCQs\",\"inLanguage\":\"en-US\",\"potentialAction\":{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https://t4tutorials.com/search/{search_term_string}/\"},\"query-input\":\"required name=search_term_string\"},\"publisher\":{\"@type\":\"Organization\",\"@id\":\"https://t4tutorials.com/#/schema/Organization\",\"name\":\"T4Tutorials.com\",\"url\":\"https://t4tutorials.com/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https://t4tutorials.com/wp-content/uploads/logo-t4tutorials-2020.webp\",\"contentUrl\":\"https://t4tutorials.com/wp-content/uploads/logo-t4tutorials-2020.webp\",\"width\":229,\"height\":48,\"inLanguage\":\"en-US\",\"caption\":\"logo t4tutorials 2024\",\"contentSize\":\"2778\"}}},{\"@type\":\"WebPage\",\"@id\":\"https://t4tutorials.com/html-mcqs-test-solved-questions-answers/\",\"url\":\"https://t4tutorials.com/html-mcqs-test-solved-questions-answers/\",\"name\":\"HTML MCQs Test - Solved Questions Answers | T4Tutorials.com\",\"description\":\"1: What is the tag other than \\u003Cb\\u003E to make text bold?", "options": ["\\u003Cblack\\u003E", "\\u003Cdar\\u003E", "\\u003Cstrong\\u003E", "\\u003Cemp\\u003E"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "In a webpage, what tag is used to display a picture?", "options": ["img", "Picture", "image", "src"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "For making a hyperlink, what is the correct HTML?", "options": ["Quiz 1", "url=”https://t4tutorials.com“>Quiz 2", "https://t4tutorials.com", "none of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "_____ tag is used to add a row in a table?", "options": ["and", "and", "and", "and"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "Vlink attribute means?", "options": ["very good link", "visited link", "active link", "virtual link"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "To name an element uniquely, which attribute is used?", "options": ["class", "dot", "id", "all of above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "You require ____ to create an HTML document?", "options": ["Just a notepad", "Web page editing software", "High-powered computer", "both A & B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "In HTML document, the special formatting codes used to present content are?", "options": ["values", "attributes", "tags", "both A & C"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "Documents of HTML are saved in?", "options": ["Special binary format", "ASCII text", "Machine language codes", "none of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "Tags that enclose text in HTML documents are known as?", "options": ["Pair tags", "Double tags", "Single tags", "Couple tags"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "A tag Marquee in HTML is to", "options": ["Mark text so it is hidden", "Display text with scrolling effect", "mark the list of items", "none of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "In HTML there are ____ different heading tags?", "options": ["7", "5", "6", "4"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "In a web page, ____ is used to create a blank line", "options": ["insert", "press Enter two times", "inserttag", "press Shift + Enter"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "The object displayed in the browser can be modified by?", "options": ["parameters", "modifiers", "attributes", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "Which attribute of the following is related to the font tag?", "options": ["face", "size", "color", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "HTML supports", "options": ["unordered lists", "ordered lists", "both A & B", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "In an ordered list, which tag is used to list individual items?", "options": ["UL", "OL", "LI", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "When should the path along with filename be used in IMG tag?", "options": ["When image and HTML file are in different locations", "Path is optional", "Path is always necessary", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "Which alignment attribute is not valid?", "options": ["Right", "Left", "Top", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "If the image could not load in browser, which attribute is used with IMG tag to display text?", "options": ["id", "name", "alt", "description"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "To set background color green, which attribute can be used with BODY tag?", "options": ["vlink=”green”", "background=”green”", "bgcolor=”green”", "both A & B"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "Web Technologies", "topic": "T4Tutorials Html Mcqs Test Solved Questions Answers", "question": "To merge two cells horizontally, which attribute do you use with TD tag?", "options": ["colspan=2", "merge=colspan2", "rowspan=2", "merge=row2"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/html-mcqs-test-solved-questions-answers/"}
{"subject": "discrete-mathematics-mcqs", "topic": "discrete-mathematics-mcqs", "question": ": How many bytes are required to encode 2000 bits of data?", "options": ["2", "1", "3", "10"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/discrete-mathematics-mcqs/"}
{"subject": "discrete-mathematics-mcqs", "topic": "discrete-mathematics-mcqs", "question": ": A collection of graph is:", "options": ["Row and column", "Equation", "Vertices and columns", "None of above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/discrete-mathematics-mcqs/"}
{"subject": "discrete-mathematics-mcqs", "topic": "discrete-mathematics-mcqs", "question": ": Error correcting code is a _____:", "options": ["Hamming code", "Gray code", "Error deducting code", "None of above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/discrete-mathematics-mcqs/"}
{"subject": "discrete-mathematics-mcqs", "topic": "discrete-mathematics-mcqs", "question": ": The symbol ASCII stands for:", "options": ["International Information", "Information Interchange", "American Standard Code for Information Interchange", "None of above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/discrete-mathematics-mcqs/"}
{"subject": "discrete-mathematics-mcqs", "topic": "discrete-mathematics-mcqs", "question": ": What is the domain of the function f(x) = √x (or x¹ᐟ²)?", "options": ["[0, ∞)", "(2, ∞)", "(-∞, 1)", "None of above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/discrete-mathematics-mcqs/"}
{"subject": "discrete-mathematics-mcqs", "topic": "discrete-mathematics-mcqs", "question": ": An ordered collection of objects is:", "options": ["Relation", "Set", "Proposition", "Function"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/discrete-mathematics-mcqs/"}
{"subject": "discrete-mathematics-mcqs", "topic": "discrete-mathematics-mcqs", "question": ": A function is a domain of:", "options": ["It is set of natural numbers for which a function is defined", "The maximal set of numbers for which a function is defined", "The maximal set of numbers which a function can take values", "None of above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/discrete-mathematics-mcqs/"}
{"subject": "discrete-mathematics-mcqs", "topic": "discrete-mathematics-mcqs", "question": ": The range of a function is:", "options": ["The maximal set of numbers for which a function is defined", "The maximal set of numbers which a function can take values", "It is set of natural numbers for which a function is defined", "None of above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/discrete-mathematics-mcqs/"}
{"subject": "discrete-mathematics-mcqs", "topic": "discrete-mathematics-mcqs", "question": ": In an undirected graph, the number of nodes with odd degree must be:", "options": ["Odd", "Prime", "Even", "Zero"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/discrete-mathematics-mcqs/"}
{"subject": "discrete-mathematics-mcqs", "topic": "discrete-mathematics-mcqs", "question": ": What is the cardinality of the set of odd positive integers less than 10?", "options": ["5", "10", "3", "20"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/discrete-mathematics-mcqs/"}
{"subject": "discrete-mathematics-mcqs", "topic": "discrete-mathematics-mcqs", "question": ": The Gray code of a number whose binary representation is 1000 is:", "options": ["0100", "1100", "0111", "0110"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/discrete-mathematics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Compiler Construction Mcqs", "question": ": A compiler works by converting source code into ______?", "options": ["Machine code", "Executable code", "Binary code", "Both A and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/compiler-construction-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Compiler Construction Mcqs", "question": ": A grammar that can generate one or more parse trees for the same sentence is called ______ grammar.", "options": ["Unambiguous", "Ambiguous", "Both A and B", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/compiler-construction-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Compiler Construction Mcqs", "question": ": A lexical analyzer produces ______?", "options": ["Machine code", "Binary code", "Tokens", "Both A and B"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/compiler-construction-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Compiler Construction Mcqs", "question": ": The number of parts in a compiler is _____.", "options": ["6", "8", "2", "3"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/compiler-construction-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Compiler Construction Mcqs", "question": ": One of the fastest logic families is ______?", "options": ["ECL", "TTL", "Both A and B", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/compiler-construction-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Compiler Construction Mcqs", "question": ": A compiler indicates the ______ error.", "options": ["Syntax error", "Logical error", "Run time error", "All of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/compiler-construction-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Compiler Construction Mcqs", "question": ": ______ is not a phase of a compiler.", "options": ["Syntax", "Testing", "Lexical", "Both A and C"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/compiler-construction-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Compiler Construction Mcqs", "question": ": Parsing is also called ______ analysis.", "options": ["Semantic", "Lexical", "Syntax", "Both A and B"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/compiler-construction-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Compiler Construction Mcqs", "question": ": The process in which a string of tokens is used to generate meaning is called ______.", "options": ["Parsing", "Analysing", "Translating", "All of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/compiler-construction-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Select one option which is not automation?", "options": ["CRM Tools", "SCM Tools", "ERP Tools", "Operating system"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Which one of the following is used to provide the right information to the right person at the right time for proper decision making?", "options": ["MIS", "DBMS", "PSO", "ISO"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Characteristic for Testability function does not include _______.", "options": ["Simplicity", "Operability", "Robustness", "Observability"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Cyclomatic Complexity is under which testing technique?", "options": ["Black Box", "White Box", "Yellow Box", "Green Box"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Prototyping involves in software process is…", "options": ["Evolutionary", "Discrete", "Throwaway prototyping", "Both A and C options"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Which one of the following is a sequence of statements from one place in the program to another?", "options": ["Gateway", "Route", "Both A and B", "Sub-path"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "What is the aim of the designer in software engineering?", "options": ["Cohesive, Coupled", "Coupled, Cohesive", "Coupled, Functional", "Maintainable, Cohesive"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Loop Testing methodology successfully tested using by?", "options": ["Concatenated", "Simple loops", "Nested loops", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Conversion of Adjusted Function Point Count to LOC count is dependent on:", "options": ["Team Size", "Project Duration", "Programming Language", "Cost Drivers"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Cleanroom philosophy in software engineering was first proposed by…", "options": ["Mills", "Dyer", "Linger", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "What is an abbreviation of MTTF?", "options": ["Mean-Time-To-Function", "Manufacture-Time-To-Function", "Mean-Time-To-Failure", "None of the mentioned"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Certification approach is not part of _____________.", "options": ["Generation of test cases from the end of the server", "Reliability", "Creation of usage scenarios", "Specific usage file"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Which of the following is/are issues related to professional responsibility?", "options": ["Managing Client Relationships", "Intellectual Property Rights", "Confidentiality", "Both B & C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "If Software engineers use their skills to misuse other people’s computers, what does misuse refer to?", "options": ["Dissemination of viruses or other malware", "Unauthorized modification of computer material", "Unauthorized access to computer material", "All of the mentioned"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Software engineers shall: Which of the following is the correct statement?", "options": ["Make sure that the products only meet the SRS", "Act consistently with the public interest", "Act in a manner that is in the best interests of his expertise and favor", "Both B & C"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Software engineers should: Which of the following is the incorrect statement?", "options": ["Maintain integrity and independence in their professional judgment", "Be dependent on their colleagues", "Not use your technical skills to misuse other people’s computers", "Not intentionally accept work that is outside your capability"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Software product efficiency does not include:", "options": ["Licensing", "Responsiveness", "Processing time", "Memory utilization"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Bugs and failures in the software are due to?", "options": ["Software Developers", "Software Companies", "None of these", "Both A & B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "The organization has the best software tools and the latest computers, so they should not worry about the quality of the product.", "options": ["False", "True", "Both A & B", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "What is Software?", "options": ["Software is documentation and configuration of data", "Software is a set of programs, documentation & configuration of data", "Software is a set of programs", "Both B & C"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Which of the following is not responsible for software failure?", "options": ["Less reliable and expensive", "Low expectation", "Increasing demand", "Increasing supply"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Attributes of good software are?", "options": ["Software Functionality", "Software Maintainability", "Software Maintainability & Functionality", "Software Development"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "If a user is concerned with all phases of SDLC, which model should be selected?", "options": ["RAD Model", "Waterfall Model", "Prototyping Model", "Both B & C"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Incremental Model is a combination of?", "options": ["Waterfall Model & RAD Model", "Linear Model & RAD Model", "Build & FIX Model & Waterfall Model", "Linear Model & Prototyping Model"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "The major advantage of Incremental Model is?", "options": ["Easier to test and debug", "Easier to test and debug & It is used when there is a need to get a product to the market early", "Customer can respond to each increment", "It is used when there is a need to get a product to the market early"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Spiral Model was initially projected by", "options": ["Barry Boehm", "IBM", "Royce", "Pressman"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Which of the following dimensions Spiral Model has?", "options": ["Radial, perpendicular", "Diagonal, angular", "Diagonal, perpendicular", "Radial, angular"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "The disadvantage of the Spiral Model is?", "options": ["Strong approval and documentation control", "Doesn’t work well for smaller projects", "Additional functionality can be added at a later date", "The high amount of risk analysis"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "User has involvement in all phases of the Spiral Model.", "options": ["False", "True", "Both A & B", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "How Spiral Model is different from the Incremental Model?", "options": ["Users can see the system early in the Incremental Model", "Requirements that change can be aided in Incremental Model", "Progress can be measured for Incremental Model", "Both A & B"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "A model is selected on the basis of", "options": ["Development team & Users", "Requirements", "Project type and associated risk", "All of the mentioned"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "In these two models defining requirements early in the cycle is not allowed?", "options": ["Waterfall & Spiral", "Waterfall & RAD", "Prototyping & RAD", "Prototyping & Spiral"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "If the development team has less experience on similar projects, which life cycle model can be chosen?", "options": ["Iterative Enhancement Model", "Spiral", "RAD", "Waterfall"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Choose a model for a product/project, which has a fixed time frame and has no cost barriers.", "options": ["Incremental", "Spiral", "Waterfall", "RAD"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "If the user is not participating, which of the following models will not be able to give the desired outcome?", "options": ["RAD & Prototyping", "Waterfall & Spiral", "RAD & Spiral", "RAD & Waterfall"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "An organization is creating an advanced version of the software which is already available in the market, which model will you prefer for them?", "options": ["Iterative Enhancement", "RAD", "Spiral", "Both A & B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "If the project development schedule is tight, can we choose a waterfall model?", "options": ["False", "True", "Both A & B", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Spiral Model has high constancy requirements.", "options": ["False", "True", "Both A & B", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "RAD Model has high constancy requirements.", "options": ["False", "True", "Both A & B", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "______ is not a software process quality?", "options": ["Timeliness", "Productivity", "Visibility", "Portability"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Maintaining software costs more than it does to develop.", "options": ["False", "True", "Both A & B", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Which of these is not an embedded software product?", "options": ["Digital function of dashboard display in a car", "Keypad control of a security system", "Pattern recognition game playing", "Both A & B"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "The purpose of the software process is to deliver the software", "options": ["In time", "With acceptable quality", "Both A & B", "That is cost-efficient"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Does the following activity provide a feedback report in Generic Process Framework?", "options": ["Deployment", "Modeling & Construction", "Communication", "Planning"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Which of the following is not a type of change that we encounter during the support phase?", "options": ["Prevention", "Adaptation", "Correction", "Translation"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Which of the following is internal software quality?", "options": ["Reliability", "Reusability", "Usability", "Scalability"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "RUP is a short form of _________ and was created by ________", "options": ["Rational Unified Process, IBM", "Rational Unified Process, Microsoft", "Rational Unified Process, Infosys", "Rational Unified Program, IBM"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "Business case for the system is established in the ______ RUP phase?", "options": ["Elaboration", "Transition", "Inception", "Construction"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advance Software Engineering Mcqs", "question": "In Software Engineering, which of these is not an essential activity for software processes?", "options": ["Software Validation", "Software Design and Implementation", "Software Evolution", "Software Verification"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advance-software-engineering-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What is a collision in hash tables?", "options": ["When two keys hash to the same index", "When a key is not found in the table", "When the hash table is full", "When the hash function fails"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": Which collision resolution technique involves storing multiple entries at the same index?", "options": ["Open addressing", "Chaining", "Linear probing", "Double hashing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What is the primary advantage of chaining over open addressing?", "options": ["Simplicity of implementation", "Better handling of load factors", "Faster lookup times", "Reduced memory usage"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": In open addressing, what happens when a collision occurs?", "options": ["The new entry is discarded", "The existing entry is removed", "The algorithm searches for the next available slot", "The hash function is recalculated"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": Which of the following is NOT a method of open addressing?", "options": ["Linear probing", "Quadratic probing", "Chaining", "Double hashing"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What happens in chaining when a bucket exceeds its limit?", "options": ["The bucket is resized", "The entries are sorted", "New entries are added to a linked list", "The old entries are deleted"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": Which collision resolution technique can lead to primary clustering?", "options": ["Chaining", "Linear probing", "Quadratic probing", "Double hashing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What is a common use of linked lists in the chaining method?", "options": ["To store entries in sorted order", "To handle collisions at a hash table index", "To improve search speed", "To reduce memory consumption"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": In quadratic probing, how is the next slot calculated?", "options": ["By linearly increasing the index", "By using a quadratic function of the number of collisions", "By randomly selecting an index", "By doubling the index"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What is the disadvantage of chaining?", "options": ["Requires extra memory for pointers", "Slower than open addressing", "Complexity in implementation", "No significant disadvantages"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": In which scenario is open addressing generally preferred?", "options": ["When memory overhead is a concern", "When dealing with a high load factor", "When frequent deletions occur", "When the hash function is complex"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What is the main goal of collision resolution techniques?", "options": ["To sort the entries", "To ensure unique keys", "To minimize retrieval time", "To handle situations where multiple keys hash to the same index"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": Which technique allows for easier iteration over all elements in a hash table?", "options": ["Open addressing", "Chaining", "Linear probing", "Quadratic probing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": How does double hashing improve on linear probing?", "options": ["It reduces collisions by using a secondary hash function", "It requires less memory", "It guarantees faster access times", "It uses linked lists"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What does the term “load factor” refer to in hash tables?", "options": ["The ratio of used slots to total slots", "The number of collisions encountered", "The size of the hash table", "The complexity of the hash function"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": Which of the following statements about open addressing is true?", "options": ["It cannot handle deletions effectively", "It uses additional memory for linked lists", "It can lead to clustering issues", "It is always faster than chaining"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What happens during a linear probing collision resolution?", "options": ["The next index is checked sequentially", "The bucket is resized", "A new hash function is applied", "The entry is deleted"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What is the main benefit of using quadratic probing?", "options": ["It guarantees no collisions", "It minimizes clustering compared to linear probing", "It is easier to implement", "It requires less memory"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": In chaining, what is the structure commonly used to store multiple entries?", "options": ["Array", "Linked list", "Stack", "Queue"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What happens to the performance of open addressing as the load factor increases?", "options": ["It improves", "It remains constant", "It degrades", "It becomes unpredictable"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": Which collision resolution technique is considered more space-efficient?", "options": ["Chaining", "Open addressing", "Linear probing", "Quadratic probing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What is the key advantage of chaining in terms of performance?", "options": ["Faster search times", "Simplicity of implementation", "Less sensitive to load factor", "Lower memory requirements"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What happens in open addressing when the hash table is full?", "options": ["The table is resized", "The program crashes", "New entries cannot be added", "Collisions are ignored"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What is the primary disadvantage of open addressing?", "options": ["Complexity of implementation", "Memory overhead", "Performance degradation at high load factors", "Inefficient memory usage"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": In which collision resolution method is each index potentially a linked list?", "options": ["Open addressing", "Quadratic probing", "Chaining", "Linear probing"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What is the best-case scenario for retrieval time in a hash table using chaining?", "options": ["O(1)", "O(n)", "O(log n)", "O(n²)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": Which of the following is a disadvantage of chaining?", "options": ["Potential for long linked lists", "More complex implementation than open addressing", "Greater memory overhead", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": In which method do entries occupy contiguous memory locations?", "options": ["Chaining", "Open addressing", "Both A and B", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": Which probing method adjusts the index based on a quadratic function?", "options": ["Linear probing", "Chaining", "Quadratic probing", "Double hashing"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What is a disadvantage of linear probing?", "options": ["It cannot handle deletions", "It can lead to clustering", "It uses more memory", "It is always slower than chaining"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What is the primary purpose of a secondary hash function in double hashing?", "options": ["To calculate the initial index", "To determine the next available index after a collision", "To reduce the memory overhead", "To encrypt the keys"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": In which scenario is chaining particularly effective?", "options": ["When the load factor is low", "When there are many collisions", "When memory is constrained", "When deletions are frequent"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What is the typical time complexity for search operations in open addressing?", "options": ["O(1)", "O(n)", "O(log n)", "O(n²)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": Which of the following is an effective strategy to manage collisions in hash tables?", "options": ["Ignoring collisions", "Increasing the size of the table", "Using a chaining method", "Using multiple hash functions"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "collision-resolution-techniques-chaining-open-addressing-mcqs", "topic": "collision-resolution-techniques-chaining-open-addressing-mcqs", "question": ": What factor can significantly affect the performance of collision resolution techniques?", "options": ["The choice of programming language", "The efficiency of the hash function", "The data types used", "The order of insertion"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/collision-resolution-techniques-chaining-open-addressing-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is a queue?", "options": ["A linear data structure that follows the Last In First Out (LIFO) principle", "A linear data structure that follows the First In First Out (FIFO) principle", "A non-linear data structure", "A type of stack"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "Which operation adds an element to the end of a queue?", "options": ["Enqueue", "Dequeue", "Push", "Pop"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "Which operation removes an element from the front of a queue?", "options": ["Enqueue", "Dequeue", "Push", "Pop"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is the time complexity for the enqueue operation in a queue?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is the time complexity for the dequeue operation in a queue?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is the main disadvantage of using an array to implement a queue?", "options": ["Fixed size", "Slow access", "Complexity in implementation", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "Which of the following is true about a queue?", "options": ["Elements can be accessed in any order", "The first element added is the first to be removed", "It supports random access", "It is a non-linear data structure"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What happens when you try to dequeue from an empty queue?", "options": ["It returns NULL", "It causes an underflow error", "It returns zero", "It does nothing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is the primary use of queues in programming?", "options": ["Implementing stacks", "Managing requests in order", "Sorting data", "Storing data in arrays"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "Which of the following operations is NOT supported by a queue?", "options": ["Enqueue", "Dequeue", "Peek", "Push"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What does the front operation do in a queue?", "options": ["Adds an element to the queue", "Removes the front element from the queue", "Returns the front element without removing it", "Clears the queue"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "How is a queue typically represented in memory?", "options": ["Using arrays only", "Using linked lists only", "Using both arrays and linked lists", "Using trees"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What happens to the front pointer when an element is enqueued?", "options": ["It moves up", "It moves down", "It remains unchanged", "It points to NULL"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is the maximum size of a queue implemented using an array?", "options": ["Dynamic, can grow indefinitely", "Limited by the memory available", "Fixed at the time of declaration", "Depends on the programming language"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is the primary characteristic of a circular queue?", "options": ["It can grow and shrink dynamically", "The last element points to the first element", "It requires more memory than a regular queue", "It cannot store more than one element"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "Which of the following scenarios can be solved using a queue?", "options": ["Managing print jobs", "Reversing a string", "Depth-first search in graphs", "All of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "In which data structure do you use a queue for breadth-first search?", "options": ["Stack", "Array", "Linked List", "Graph"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is the output of the following code if the queue is empty? queue.dequeue();", "options": ["It removes the last element", "It returns NULL", "It throws an error", "It does nothing"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is a common application of queues?", "options": ["Undo functionality in applications", "Storing data in arrays", "Scheduling tasks", "Implementing a binary search"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "How do you implement a queue using two stacks?", "options": ["By using one stack for enqueue and the other for dequeue", "By using one stack for storing elements and the other for reversing the order", "By interleaving the two stacks", "It cannot be done"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "Which of the following describes a queue’s memory allocation?", "options": ["Queues use dynamic memory allocation only", "Queues can use both static and dynamic memory allocation", "Queues use fixed memory allocation only", "Queues do not require memory allocation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is the difference between a queue and a stack?", "options": ["Stacks use FIFO while queues use LIFO", "Queues use FIFO while stacks use LIFO", "Both are the same", "Queues require more memory"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "Which of the following can cause a queue overflow?", "options": ["Using too much memory", "Enqueuing elements into a full queue", "Dequeuing elements from an empty queue", "Both B and C"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is the effect of using delete on a queue node in C++?", "options": ["It frees the memory allocated for that node", "It only removes the data", "It causes a memory leak", "It does nothing"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is the time complexity for finding the size of a queue?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "Which data structure can be used to implement a priority queue?", "options": ["Stack", "Queue", "Array", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is the main difference between a queue and a deque (double-ended queue)?", "options": ["A queue allows insertion and deletion at both ends", "A deque allows insertion and deletion at both ends", "A queue allows random access", "A deque is more complex"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is the time complexity for checking if a queue is empty?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "In a circular queue, what happens when the rear pointer reaches the end of the array?", "options": ["It points to NULL", "It wraps around to the front of the array", "It causes an overflow", "It becomes undefined"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "Which of the following is NOT a characteristic of queues?", "options": ["FIFO order", "Random access", "Linear structure", "Can be implemented using arrays or linked lists"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What type of queue is used in breadth-first search?", "options": ["Circular queue", "Double-ended queue", "Regular queue", "Priority queue"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is the purpose of the rear pointer in a queue?", "options": ["To point to the front element", "To point to the last added element", "To keep track of the size", "To remove elements"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "How can you implement a circular queue?", "options": ["By using two pointers and wrapping them around", "By using a fixed-size array", "By using a linked list", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "Which of the following operations can be performed in a priority queue?", "options": ["Insert with priority", "Remove the highest priority element", "Peek at the highest priority element", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is the output of the following code if the queue is full? queue.enqueue(5);", "options": ["It adds the element", "It throws an overflow error", "It ignores the element", "It returns NULL"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is a common use of a queue in operating systems?", "options": ["To manage memory", "To handle task scheduling", "To sort data", "To implement recursion"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs", "question": "What is the primary characteristic of a double-ended queue (deque)?", "options": ["It allows insertion and deletion at both ends", "It allows random access", "It follows FIFO order", "It is more complex than a regular queue"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is space complexity?", "options": ["The amount of memory an algorithm uses.", "The amount of time an algorithm takes to complete.", "The number of steps an algorithm performs.", "The amount of data an algorithm processes."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of storing an array of n integers?", "options": ["O(1)", "O(n)", "O(log n)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of a function that uses a constant amount of extra space?", "options": ["O(n)", "O(log n)", "O(1)", "O(n^2)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of the recursive implementation of Fibonacci sequence without memoization?", "options": ["O(1)", "O(n)", "O(n^2)", "O(2^n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of the iterative implementation of Fibonacci sequence?", "options": ["O(1)", "O(n)", "O(n^2)", "O(2^n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of depth-first search (DFS) in a graph with n nodes and e edges using recursion?", "options": ["O(n)", "O(e)", "O(n + e)", "O(n^2)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of breadth-first search (BFS) in a graph with n nodes and e edges?", "options": ["O(n)", "O(e)", "O(n + e)", "O(n^2)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of merge sort?", "options": ["O(n log n)", "O(n)", "O(log n)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of quicksort in the worst case?", "options": ["O(n log n)", "O(n)", "O(log n)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of quicksort in the best case?", "options": ["O(n log n)", "O(n)", "O(log n)", "O(n^2)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of an algorithm that uses an auxiliary array of size n/2?", "options": ["O(n/2)", "O(n)", "O(log n)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of an algorithm that uses a stack for recursion and the depth of the recursion is n?", "options": ["O(1)", "O(n)", "O(n log n)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of storing a binary tree with n nodes?", "options": ["O(1)", "O(log n)", "O(n)", "O(n^2)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of dynamic programming solution for the knapsack problem with n items and capacity W?", "options": ["O(n)", "O(W)", "O(nW)", "O(n + W)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of an algorithm that uses an adjacency matrix to represent a graph with n nodes?", "options": ["O(n)", "O(n^2)", "O(n log n)", "O(n + e)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of an algorithm that uses an adjacency list to represent a graph with n nodes and e edges?", "options": ["O(n)", "O(n + e)", "O(e)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of a hash table with n elements?", "options": ["O(1)", "O(n)", "O(log n)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of a depth-first search (DFS) in a graph with n nodes and e edges using an iterative approach?", "options": ["O(1)", "O(n)", "O(n + e)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of the selection sort algorithm?", "options": ["O(1)", "O(n)", "O(log n)", "O(n^2)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "space-complexity-mcqs", "topic": "space-complexity-mcqs", "question": ": What is the space complexity of the insertion sort algorithm?", "options": ["O(1)", "O(n)", "O(log n)", "O(n^2)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": What is a simple queue?", "options": ["A queue with no specific characteristics", "A queue that allows elements to be added at both ends", "A queue that follows FIFO principle", "A queue that follows LIFO principle"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": Which of the following operations is NOT supported by a simple queue?", "options": ["Enqueue", "Dequeue", "Peek", "Rearrange"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": What is a circular queue?", "options": ["A queue that allows circular access to elements", "A queue where elements can be accessed randomly", "A queue that follows LIFO principle", "A queue that allows resizing dynamically"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": What advantage does a circular queue offer over a simple queue?", "options": ["It allows elements to be rearranged", "It reduces memory usage", "It prevents overflow errors", "It supports priority-based operations"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": In a circular queue, how is the front of the queue updated after a dequeue operation?", "options": ["It remains fixed", "It moves to the next element", "It moves to the previous element", "It depends on the element dequeued"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": Which of the following operations is efficient in a circular queue compared to a simple queue?", "options": ["Enqueue", "Dequeue", "Peek", "Rearrange"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": What is a priority queue?", "options": ["A queue where elements are arranged based on their position", "A queue that allows elements to be added at both ends", "A queue where elements are arranged based on their priority", "A queue that allows resizing dynamically"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": In a priority queue, which element is dequeued first?", "options": ["The element with the highest priority", "The element with the lowest priority", "The first element added", "The last element added"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": Which of the following data structures is commonly used to implement a priority queue?", "options": ["Stack", "Array", "Linked list", "Heap"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": What is a deque (double-ended queue)?", "options": ["A queue with two front ends", "A queue with two rear ends", "A queue that allows elements to be added and removed from both ends", "A queue that allows elements to be accessed randomly"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": Which of the following operations is NOT typically supported by a deque?", "options": ["Enqueue", "Dequeue", "Peek", "Rearrange"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": In a deque, which operation allows adding an element to the front of the queue?", "options": ["Frontenqueue", "Dequeuefront", "Enqueuefront", "Pushfront"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": Which type of queue is suitable for applications where elements are added based on their urgency or importance?", "options": ["Simple queue", "Circular queue", "Priority queue", "Deque"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": What is the main drawback of a simple queue compared to other types of queues?", "options": ["Limited capacity", "Slower insertion operation", "Inability to handle priority-based operations", "Inefficient memory usage"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": Which type of queue is most appropriate for implementing a round-robin scheduling algorithm?", "options": ["Simple queue", "Circular queue", "Priority queue", "Deque"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": In which scenario would a deque be more advantageous than other types of queues?", "options": ["When elements need to be added and removed from both ends", "When elements are accessed in a random order", "When elements are added based on their priority", "When elements are added only at the rear"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": Which type of queue is typically used in printer spooling systems to manage print jobs?", "options": ["Simple queue", "Circular queue", "Priority queue", "Deque"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": What is the time complexity of the enqueue operation in a priority queue with a binary heap implementation?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": In which type of queue does the size remain fixed after initialization?", "options": ["Simple queue", "Circular queue", "Priority queue", "Deque"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Simple Queue Circular Queue Priority Queue Deque Mcqs", "question": ": Which type of queue efficiently supports applications where elements are added and removed alternately from both ends?", "options": ["Simple queue", "Circular queue", "Priority queue", "Deque"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/simple-queue-circular-queue-priority-queue-deque-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What is the primary purpose of Heap Sort?", "options": ["To search for an element", "To sort an array", "To merge two arrays", "To partition data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What is the time complexity of Heap Sort in the worst case?", "options": ["O(n)", "O(n log n)", "O(n^2)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": Which data structure is used to implement Heap Sort?", "options": ["Stack", "Queue", "Heap", "Array"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What is the space complexity of Heap Sort?", "options": ["O(1)", "O(n)", "O(n log n)", "O(log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": How does Heap Sort differ from other sorting algorithms?", "options": ["It is not based on comparisons.", "It uses a divide and conquer approach.", "It builds a heap data structure.", "It is a stable sorting algorithm."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What type of heap is commonly used in Heap Sort?", "options": ["Min-Heap", "Max-Heap", "Binary Tree", "Fibonacci Heap"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What is the main advantage of Heap Sort over Quick Sort?", "options": ["It is stable.", "It does not require additional memory.", "It has better worst-case performance.", "It is faster on average."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What is the first step in the Heap Sort algorithm?", "options": ["Sorting the array", "Building the heap", "Performing the merge", "Partitioning the array"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": In a Max-Heap, which of the following statements is true?", "options": ["The parent node is less than or equal to its children.", "The parent node is greater than or equal to its children.", "All nodes have two children.", "It is a complete binary tree."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What happens during the heapify process?", "options": ["The heap is sorted.", "The heap property is restored.", "The array is merged.", "Elements are randomly shuffled."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What is the effect of using a Min-Heap in Heap Sort?", "options": ["It results in sorting in ascending order.", "It results in sorting in descending order.", "It makes the algorithm unstable.", "It has no effect on the sorting order."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What is the time complexity of building a heap?", "options": ["O(n)", "O(n log n)", "O(log n)", "O(n^2)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": Which of the following best describes the overall process of Heap Sort?", "options": ["Build a heap, extract elements, and then sort.", "Build a tree, perform an in-order traversal.", "Sort by repeatedly swapping adjacent elements.", "Merge sorted arrays."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What is the maximum height of a binary heap?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": Which of the following is not a property of a heap?", "options": ["Complete binary tree", "Parent is greater than children in Max-Heap", "Parent is less than children in Min-Heap", "The height can be less than log n"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What will be the output of Heap Sort on the array [4, 10, 3, 5, 1]?", "options": ["[10, 5, 4, 3, 1]", "[1, 3, 4, 5, 10]", "[10, 4, 5, 3, 1]", "[1, 4, 3, 5, 10]"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": In Heap Sort, what is done after the heap is built?", "options": ["The elements are added to the heap.", "The largest element is extracted and placed in sorted order.", "The array is divided into subarrays.", "The heap is merged with another heap."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What type of sorting algorithm is Heap Sort classified as?", "options": ["Comparison-based sorting", "Non-comparison based sorting", "Adaptive sorting", "Hybrid sorting"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": Which step is repeated until the heap is empty in Heap Sort?", "options": ["Merging", "Heapifying", "Extracting the maximum", "Building the heap"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What is the purpose of the “sift down” operation in Heap Sort?", "options": ["To build the heap", "To restore the heap property", "To merge two heaps", "To sort the array"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": Which of the following statements about Heap Sort is true?", "options": ["It is a stable sorting algorithm.", "It is an in-place sorting algorithm.", "It is inefficient for large datasets.", "It can sort linked lists efficiently."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": How is the time complexity of Heap Sort affected by the size of the input?", "options": ["It increases linearly with the size.", "It is constant regardless of input size.", "It increases logarithmically with the size.", "It increases proportionally to n log n."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What is the primary disadvantage of Heap Sort compared to Quick Sort?", "options": ["It requires more space.", "It is always slower.", "It is not stable.", "It cannot handle large datasets."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": Which of the following operations is not performed in Heap Sort?", "options": ["Building the heap", "Extracting the maximum", "Merging two heaps", "Restoring heap property"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What will be the output of applying Heap Sort on the array [8, 4, 7, 3, 2]?", "options": ["[2, 3, 4, 7, 8]", "[8, 7, 4, 3, 2]", "[3, 4, 7, 8, 2]", "[2, 4, 3, 7, 8]"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What is the initial step in the Heap Sort algorithm?", "options": ["Extracting elements", "Heapifying the array", "Merging two sorted arrays", "Finding the median"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": In a Min-Heap, which statement is true?", "options": ["The parent node is greater than its children.", "The parent node is less than its children.", "It is not a complete binary tree.", "It can have missing nodes."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": How does the performance of Heap Sort compare to Merge Sort in practice?", "options": ["Heap Sort is generally faster.", "Merge Sort is generally faster.", "They perform equally well in all scenarios.", "It depends on the specific implementation."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What is the effect of using a binary heap for sorting?", "options": ["It allows for quicker search operations.", "It provides a method for in-place sorting.", "It guarantees a stable sort.", "It allows for parallel processing."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What is the process of “sifting up” in a heap?", "options": ["Adding a new element to the heap", "Removing the maximum element", "Adjusting the heap after insertion", "Sorting the elements"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What happens to the structure of a heap during Heap Sort?", "options": ["It becomes unbalanced.", "It is preserved.", "It is destroyed.", "It is rebuilt from scratch."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": Which of the following sorting algorithms is not comparison-based?", "options": ["Heap Sort", "Quick Sort", "Counting Sort", "Merge Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What is a key factor in determining the efficiency of Heap Sort?", "options": ["Choice of data structure", "Input data size", "Memory allocation", "Pivot selection"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": Which operation is required to convert an array into a heap?", "options": ["Heapify", "Partition", "Merge", "Sort"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What kind of trees are heaps?", "options": ["Full binary trees", "Complete binary trees", "Balanced binary trees", "Degenerate trees"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": How is the root node in a Max-Heap related to its children?", "options": ["It is less than both children.", "It is equal to one child and greater than the other.", "It is greater than or equal to both children.", "It has no relation."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": What is the effect of reducing the size of the heap during Heap Sort?", "options": ["It improves performance.", "It has no effect.", "It increases complexity.", "It helps maintain the heap property."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "heap-sort-mcqs", "topic": "heap-sort-mcqs", "question": ": In Heap Sort, what is done after the largest element is extracted from the heap?", "options": ["The heap is rebuilt.", "The remaining elements are sorted.", "The heap property is restored.", "The sorted array is finalized."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heap-sort-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": What is the primary purpose of the Linear Search algorithm?", "options": ["To find the maximum element in an array", "To sort an array", "To search for a specific element in an array", "To merge two arrays"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": What is the time complexity of Linear Search in the worst case?", "options": ["O(1)", "O(n)", "O(log n)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": In which of the following scenarios is Linear Search most efficient?", "options": ["When the array is sorted", "When the array is unsorted and small", "When the array is very large", "When searching for the smallest element"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": What does Linear Search do when it finds the target element?", "options": ["It returns the index of the element", "It returns the value of the element", "It continues searching through the array", "It throws an error"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": What is the best-case time complexity for Linear Search?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": Which of the following is a disadvantage of Linear Search?", "options": ["It is easy to implement.", "It is slow for large datasets.", "It works on sorted arrays.", "It requires additional memory."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": What type of data structures can Linear Search be applied to?", "options": ["Arrays only", "Linked lists only", "Both arrays and linked lists", "Trees only"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": What happens if the target element is not found in a Linear Search?", "options": ["It returns the index -1", "It returns a null value", "It throws an exception", "It continues searching indefinitely"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": What is the average-case time complexity of Linear Search?", "options": ["O(1)", "O(n)", "O(log n)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": Which of the following statements about Linear Search is true?", "options": ["It requires the array to be sorted.", "It can be used for any type of data structure.", "It is a recursive algorithm.", "It is more efficient than binary search."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": Which algorithm would typically be faster than Linear Search for large sorted datasets?", "options": ["Bubble Sort", "Selection Sort", "Binary Search", "Quick Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": In a Linear Search algorithm, how many comparisons are made in the worst case?", "options": ["n/2", "n", "log n", "n^2"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": What type of search algorithm is Linear Search classified as?", "options": ["Recursive", "Iterative", "Divide and conquer", "Backtracking"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": How does Linear Search begin its process?", "options": ["By sorting the array", "By dividing the array", "By examining each element sequentially", "By using a recursive function"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": Which of the following best describes the Linear Search algorithm?", "options": ["It uses a binary tree structure.", "It repeatedly divides the search space.", "It checks each element until the target is found.", "It merges two sorted lists."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": What is the space complexity of Linear Search?", "options": ["O(1)", "O(n)", "O(log n)", "O(n^2)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": What will happen if multiple instances of the target element exist in the array?", "options": ["Linear Search will stop at the first instance.", "Linear Search will find the last instance.", "Linear Search will find all instances.", "Linear Search will return an error."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": Which of the following scenarios would NOT benefit from Linear Search?", "options": ["Searching an element in a small, unsorted array", "Finding an element in a large, sorted array", "Looking for an element in a linked list", "Searching for a specific value in an array of strings"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": What will be the result of a Linear Search if the array is empty?", "options": ["It will return 0.", "It will throw an error.", "It will return -1.", "It will search indefinitely."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": Which algorithm is generally preferred for searching large, sorted datasets?", "options": ["Linear Search", "Quick Search", "Binary Search", "Sequential Search"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": What is the best way to improve the efficiency of searching through a large dataset?", "options": ["Use Linear Search instead of Binary Search", "Sort the data first", "Use a linked list instead of an array", "Increase the size of the array"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": In Linear Search, if the search key is found, what does the algorithm return?", "options": ["The last index of the array", "The number of comparisons made", "The index of the found element", "The entire array"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": How is Linear Search implemented in code?", "options": ["Using a recursive function only", "Using an iterative loop", "Using a tree structure", "Using a hashing technique"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": What is the time complexity of Linear Search on a linked list?", "options": ["O(1)", "O(log n)", "O(n)", "O(n^2)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": Which of the following best describes the performance of Linear Search compared to more advanced algorithms?", "options": ["It is always faster.", "It is slower for large datasets.", "It has constant time complexity.", "It is always stable."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": What kind of search is used when the array is guaranteed to be in random order?", "options": ["Linear Search", "Binary Search", "Jump Search", "Interpolation Search"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": What should be the initial value of the search index in a Linear Search algorithm?", "options": ["The last index of the array", "The middle index of the array", "The first index of the array", "It can be any random index"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": In which case would Linear Search perform at its best?", "options": ["Searching in a sorted array", "Searching in a very small array", "Searching in a large array", "Searching for multiple elements"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": Which of the following best describes a situation where Linear Search is preferred?", "options": ["When the data is dynamic and frequently changes", "When the data is sorted and static", "When quick access times are required", "When searching in a tree structure"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": How would you define the efficiency of Linear Search?", "options": ["Fast for all cases", "Slow but straightforward", "Efficient for large datasets", "Always requires sorting"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": What is the typical use case for Linear Search?", "options": ["Searching for items in databases", "Finding elements in small lists", "Sorting large datasets", "Merging data from different sources"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": In Linear Search, if the element appears multiple times, what does it return?", "options": ["The index of the first occurrence", "The count of occurrences", "The index of the last occurrence", "An error"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "linear-search-mcqs", "topic": "linear-search-mcqs", "question": ": What is the primary characteristic of Linear Search?", "options": ["Requires sorted data", "Iterates through each element", "Uses divide and conquer", "Works only with arrays"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-search-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": What is the primary purpose of Selection Sort?", "options": ["To search for an element", "To sort an array", "To merge two arrays", "To partition data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": What is the worst-case time complexity of Selection Sort?", "options": ["O(n)", "O(n log n)", "O(n^2)", "O(log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": Which statement best describes how Selection Sort works?", "options": ["It compares adjacent elements and swaps them.", "It repeatedly selects the smallest element from the unsorted portion and places it at the beginning.", "It divides the array into two halves and sorts them independently.", "It uses a divide-and-conquer approach to sort the array."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": What is the best-case time complexity of Selection Sort?", "options": ["O(n)", "O(n log n)", "O(n^2)", "O(log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": Which of the following is true about the stability of Selection Sort?", "options": ["It is a stable sorting algorithm.", "It is not a stable sorting algorithm.", "It can only sort numerical data.", "It requires additional memory for stability."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": What is the average-case time complexity of Selection Sort?", "options": ["O(n)", "O(n log n)", "O(n^2)", "O(log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": In Selection Sort, what happens to the elements in the unsorted portion of the array?", "options": ["They are ignored until the next pass.", "They are sorted simultaneously.", "They are selected one by one to find the minimum.", "They are rearranged randomly."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": How many comparisons are made in the worst case during Selection Sort?", "options": ["n", "n/2", "n^2", "n(n-1)/2"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": Which algorithm is generally less efficient than Selection Sort for large datasets?", "options": ["Insertion Sort", "Merge Sort", "Bubble Sort", "Quick Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": What is the space complexity of Selection Sort?", "options": ["O(1)", "O(n)", "O(n log n)", "O(n^2)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": In which of the following scenarios is Selection Sort particularly useful?", "options": ["Sorting large datasets", "Sorting small datasets", "Real-time data processing", "When memory usage is a concern"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": What happens to the number of passes made by Selection Sort as the size of the array increases?", "options": ["It decreases.", "It remains constant.", "It increases linearly.", "It increases quadratically."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": What is the output of Selection Sort if the input array is [4, 3, 2, 1]?", "options": ["[1, 2, 3, 4]", "[4, 3, 2, 1]", "[2, 1, 3, 4]", "[3, 4, 1, 2]"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": How does Selection Sort compare to Bubble Sort in terms of efficiency?", "options": ["It is more efficient.", "It is less efficient.", "They are equally efficient.", "It depends on the dataset."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": Which of the following statements about Selection Sort is incorrect?", "options": ["It is easy to implement.", "It can be done in place.", "It is not suitable for large datasets.", "It is always stable."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": How does the Selection Sort algorithm determine the next smallest element?", "options": ["By comparing adjacent elements.", "By scanning the entire unsorted portion of the array.", "By using a recursive function.", "By maintaining a sorted list."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": What will be the result of applying Selection Sort to the array [5, 2, 9, 1, 5, 6]?", "options": ["[1, 2, 5, 5, 6, 9]", "[5, 5, 6, 1, 2, 9]", "[9, 6, 5, 5, 2, 1]", "[1, 5, 2, 6, 9, 5]"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": What is the main reason for the inefficiency of Selection Sort?", "options": ["It requires too much memory.", "It makes too many comparisons.", "It uses recursion.", "It does not work well with duplicates."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": Which sorting algorithm is commonly used in educational settings to illustrate sorting concepts?", "options": ["Quick Sort", "Merge Sort", "Selection Sort", "Heap Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": What is the effect of using Selection Sort on an already sorted array?", "options": ["It sorts the array again.", "It remains unchanged.", "It reverses the array.", "It becomes unstable."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": In Selection Sort, which element is selected first?", "options": ["The largest element", "The smallest element", "The middle element", "The last element"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": What type of sorting is Selection Sort classified as?", "options": ["In-place sorting", "External sorting", "Comparison-based sorting", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": Which characteristic of Selection Sort makes it less suitable for large datasets?", "options": ["It uses too much memory.", "It requires multiple passes through the array.", "It cannot handle negative numbers.", "It only sorts in ascending order."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": What would happen if Selection Sort is applied to an array with only one element?", "options": ["The array will be sorted.", "An error will occur.", "The array will remain unchanged.", "The algorithm will loop indefinitely."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": How does Selection Sort handle duplicate elements?", "options": ["It ignores them.", "It sorts them randomly.", "It maintains their relative order.", "It treats them as distinct values."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": Which of the following is a limitation of Selection Sort?", "options": ["It is a comparison sort.", "It does not require extra space.", "It is not adaptive.", "It maintains stability."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": What type of data structure is typically used to implement Selection Sort?", "options": ["Linked List", "Array", "Tree", "Graph"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": How many elements does Selection Sort need to sort?", "options": ["At least one", "At least two", "At least three", "At least four"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": In which of the following scenarios would Selection Sort perform the worst?", "options": ["When the array is sorted", "When the array is in reverse order", "When all elements are equal", "When the array has random values"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": What is the main idea behind the name “Selection Sort”?", "options": ["It selects elements randomly.", "It selects the largest elements first.", "It selects the smallest elements repeatedly to build a sorted array.", "It selects elements based on their index."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": How does Selection Sort achieve its sorting?", "options": ["By swapping elements", "By inserting elements", "By comparing and selecting", "By merging elements"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": Which of the following is not a feature of Selection Sort?", "options": ["It is an in-place sorting algorithm.", "It is a stable sorting algorithm.", "It works well for small lists.", "It uses minimal additional memory."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": What will be the result of applying Selection Sort to the array [3, 1, 4, 1, 5, 9, 2, 6]?", "options": ["[1, 1, 2, 3, 4, 5, 6, 9]", "[9, 6, 5, 4, 3, 2, 1, 1]", "[4, 1, 3, 2, 5, 9, 6, 1]", "[1, 2, 3, 4, 5, 6, 9, 1]"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": What is the final position of the smallest element after one pass of Selection Sort?", "options": ["It remains in its original position.", "It is placed at the end of the array.", "It is placed at the beginning of the sorted portion.", "It is moved to the middle of the array."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": How does Selection Sort handle sorted or partially sorted arrays?", "options": ["It performs optimally.", "It performs poorly.", "It performs the same as random arrays.", "It cannot handle them."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": Which of the following sorting algorithms is based on a similar concept to Selection Sort?", "options": ["Merge Sort", "Quick Sort", "Insertion Sort", "Heap Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "selection-sort-mcqs", "topic": "selection-sort-mcqs", "question": ": What will the result of Selection Sort be if it is applied to an empty array?", "options": ["An error will occur.", "The empty array will remain unchanged.", "The array will be filled with zeros.", "The algorithm will enter an infinite loop."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/selection-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": In which of the following applications is a stack commonly used?", "options": ["Sorting", "Searching", "Expression evaluation", "Hashing"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": Which data structure is often used for implementing the undo feature in text editors?", "options": ["Queue", "Stack", "Linked list", "Tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": What is the primary advantage of using a stack in expression evaluation?", "options": ["Allows random access to elements", "Simplifies complex arithmetic operations", "Facilitates tracing program execution", "Handles function calls efficiently"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": Which of the following is NOT a valid application of a stack?", "options": ["Function call management", "Backtracking in algorithms", "Arithmetic expression parsing", "Binary search tree traversal"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": What is the role of a stack in evaluating postfix expressions?", "options": ["Stores operands", "Stores operators", "Stores both operands and operators", "Manages parentheses"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": Which of the following expressions is equivalent to the postfix expression “3 4 + 5”?", "options": ["(3 + 4) * 5", "3 + (4 * 5)", "3 + 4 * 5", "(3 * 4) + 5"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": In expression evaluation using a stack, what is done when encountering an operand?", "options": ["Push it onto the stack", "Pop it from the stack", "Ignore it", "Perform arithmetic operations"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": What is the primary purpose of using a stack in recursion?", "options": ["To store local variables", "To manage function calls and return addresses", "To optimize memory usage", "To prevent stack overflow errors"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": Which of the following describes the behavior of a stack during recursion?", "options": ["Each recursive call creates a new stack frame", "Each recursive call shares the same stack frame", "Recursion does not use a stack", "Stack frames are created only for base cases"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": What is tail recursion?", "options": ["A recursion where recursive call is not the last operation", "A recursion where recursive call is the last operation", "A recursion that doesn’t involve function calls", "A recursion that involves nested functions"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": Which of the following statements about postfix expressions is true?", "options": ["They are easier to read than infix expressions", "They are evaluated from left to right", "They require parentheses to specify order of operations", "They are converted to infix using stacks"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": What is the time complexity of evaluating an arithmetic expression using a stack-based approach?", "options": ["O(1)", "O(n)", "O(log n)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": Which of the following operations is NOT typically performed using a stack in algorithm design?", "options": ["Depth-first search traversal", "Topological sorting", "Breadth-first search traversal", "Shortest path calculation"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": In an infix expression, how are parentheses handled during evaluation using a stack?", "options": ["They are ignored", "They are evaluated first", "They are removed from the expression", "They determine the order of operations"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": Which data structure is typically used to implement a stack in programming languages?", "options": ["Array", "Linked list", "Tree", "Graph"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": What is the main advantage of using postfix notation in expressions?", "options": ["It eliminates the need for parentheses", "It allows for easier debugging", "It reduces the number of operands", "It speeds up evaluation time"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": Which of the following is a valid postfix notation for the infix expression “a + b * c”?", "options": ["a b + c *", "a b c * +", "a b c + *", "a * b + c"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": What is the key advantage of using postfix notation for arithmetic expressions?", "options": ["Easier conversion to prefix notation", "Better handling of operator precedence", "Reduced memory usage", "Faster execution time"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": In recursion, what is the base case?", "options": ["The case where the recursion is infinite", "The starting point of recursion", "The case that terminates the recursion", "The last step of recursion"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Stacks Expression Evaluation Recursion Mcqs", "question": ": Which of the following is NOT a limitation of using recursion?", "options": ["Limited stack size", "Difficulty in understanding and debugging", "Slower execution compared to iterative methods", "Difficulty in handling complex algorithms"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-stacks-expression-evaluation-recursion-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": What is the main purpose of tree traversal?", "options": ["To organize the tree", "To search for a specific value", "To visit all nodes in a tree", "To delete nodes"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": Which traversal method visits the left subtree, the root, and then the right subtree?", "options": ["Pre-order", "In-order", "Post-order", "Level-order"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": In which traversal method is the root node visited first?", "options": ["In-order", "Pre-order", "Post-order", "Level-order"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": What is the order of nodes visited in post-order traversal?", "options": ["Left, Right, Root", "Root, Left, Right", "Left, Root, Right", "Right, Left, Root"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": Which of the following is true about in-order traversal of a binary search tree?", "options": ["It visits nodes in reverse order", "It produces a sorted sequence of keys", "It visits the root before the left child", "It cannot be performed on an unbalanced tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": How does pre-order traversal help in creating a copy of a tree?", "options": ["It visits nodes in sorted order", "It visits the root before its children", "It captures the structure of the tree", "It requires less memory"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": Which traversal method is typically used for evaluating expression trees?", "options": ["In-order", "Pre-order", "Post-order", "Level-order"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": What is the result of in-order traversal on the tree with nodes 1, 2, 3, where 2 is the root?", "options": ["1, 2, 3", "2, 1, 3", "1, 3, 2", "3, 2, 1"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": In a binary tree, which traversal method can be used to print the nodes in reverse?", "options": ["Pre-order", "Post-order", "In-order", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": What does the term “depth-first traversal” refer to?", "options": ["Visiting all nodes at the current level", "Visiting nodes from the top to the bottom", "Visiting nodes as deep as possible before backtracking", "Visiting nodes in a sorted manner"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": Which traversal method uses a stack implicitly due to recursion?", "options": ["Level-order", "In-order", "Pre-order", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": What is the output of a pre-order traversal on a tree with root A, left child B, and right child C?", "options": ["B, A, C", "A, B, C", "B, C, A", "C, B, A"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": Which traversal method is best for printing a tree structure in a human-readable format?", "options": ["In-order", "Pre-order", "Post-order", "Level-order"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": How are in-order and post-order traversals different?", "options": ["They visit the root at different times", "They only visit leaf nodes", "They visit left and right subtrees in the same order", "They require different data structures"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": What is the primary characteristic of level-order traversal?", "options": ["It visits nodes in a depth-first manner", "It visits all nodes at the current depth before moving to the next level", "It requires sorting of nodes", "It visits nodes in reverse order"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": In which traversal method is the left child visited before the right child?", "options": ["In-order", "Pre-order", "Post-order", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": What would be the output of a post-order traversal for a tree structured as follows: A with left child B and right child C?", "options": ["A, B, C", "B, C, A", "A, C, B", "C, B, A"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": Which traversal method is least likely to be used in applications that require sorted output?", "options": ["In-order", "Pre-order", "Post-order", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": Which traversal method can lead to a full listing of all nodes without regard for order?", "options": ["In-order", "Pre-order", "Post-order", "Level-order"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": What is the time complexity of tree traversals (in-order, pre-order, post-order)?", "options": ["O(log n)", "O(n)", "O(n log n)", "O(1)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": Which traversal would you use to get a prefix expression from an expression tree?", "options": ["In-order", "Pre-order", "Post-order", "Level-order"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": What is the output of an in-order traversal on a binary search tree containing the values 3, 1, 4, 2?", "options": ["1, 2, 3, 4", "3, 4, 2, 1", "4, 3, 2, 1", "1, 3, 2, 4"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": What is the primary use of post-order traversal in binary trees?", "options": ["To create a sorted list", "To evaluate expressions", "To copy the tree", "To delete nodes"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": What is the primary advantage of using a stack in tree traversal?", "options": ["It reduces memory usage", "It helps maintain the order of visits", "It allows faster access to nodes", "It eliminates recursion"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": Which traversal method requires the use of a queue?", "options": ["In-order", "Pre-order", "Post-order", "Level-order"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": What is the order of nodes visited in pre-order traversal?", "options": ["Root, Left, Right", "Left, Root, Right", "Left, Right, Root", "Right, Left, Root"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": How does post-order traversal affect memory usage?", "options": ["It uses less memory than in-order", "It can be implemented without recursion", "It typically requires more memory for stack", "It uses constant memory"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": What traversal method is typically best for creating a balanced tree?", "options": ["In-order", "Pre-order", "Level-order", "Post-order"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": What is the main difference between depth-first and breadth-first traversal?", "options": ["The order of node visits", "The data structure used", "The time complexity", "The number of nodes visited"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": Which traversal method is suitable for constructing a binary tree from its traversal sequences?", "options": ["Pre-order and in-order", "In-order and post-order", "Level-order and pre-order", "Any traversal method"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": What is the final output of a post-order traversal on a binary tree with nodes A, B, C?", "options": ["A, B, C", "B, C, A", "C, B, A", "A, C, B"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": Which traversal method is most intuitive for hierarchical data representation?", "options": ["In-order", "Pre-order", "Post-order", "Level-order"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": In the context of binary trees, what does the term “leaf node” refer to?", "options": ["A node with only one child", "A node with no children", "A node that is the root", "A node with two children"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": Which traversal method would you use to create a postfix expression?", "options": ["Pre-order", "In-order", "Post-order", "Level-order"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": How do you recognize the root node during traversal?", "options": ["It is always visited last", "It is always visited first in pre-order", "It is visited in post-order", "It can be determined by the left child"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "topic": "tree-traversal-methods-in-order-pre-order-post-order-mcqs", "question": ": What is the significance of using recursion in tree traversals?", "options": ["It simplifies the code structure", "It increases execution time", "It uses iterative methods", "It eliminates stack use"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/tree-traversal-methods-in-order-pre-order-post-order-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What is a hash function?", "options": ["A function that transforms input data into a fixed-size string of characters", "A function that sorts data", "A function that retrieves data from a database", "A function that encrypts data"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": Which of the following is a key property of a good hash function?", "options": ["It must be easy to compute", "It should produce unique outputs for all inputs", "It must be reversible", "It should produce outputs in a sorted order"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What is the purpose of using a hash function in data structures?", "options": ["To store data in a sorted manner", "To create a unique identifier for each data element", "To map data to a specific memory location for efficient retrieval", "To encrypt sensitive information"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What is a common problem associated with hash functions?", "options": ["Data redundancy", "Collisions", "Memory overflow", "Slow computation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": Which type of hash function uses a mathematical operation to determine the index?", "options": ["Cryptographic hash function", "Multiplicative hash function", "Perfect hash function", "Non-cryptographic hash function"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What is the primary goal of a cryptographic hash function?", "options": ["To ensure fast data retrieval", "To provide data integrity and security", "To reduce memory usage", "To simplify data processing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": In a hash function, what does the term “collision” refer to?", "options": ["When two different inputs produce the same output", "When a hash function fails to compute", "When the output exceeds the maximum size", "When inputs are processed too slowly"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": Which of the following is an example of a cryptographic hash function?", "options": ["SHA-256", "Division method", "Multiplicative hashing", "Linear probing"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What is the role of a seed in a hash function?", "options": ["To initialize the hash process", "To ensure uniform distribution of outputs", "To prevent collisions", "To enhance security"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": Which hashing technique is likely to lead to clustering?", "options": ["Division method", "Chaining", "Linear probing", "Double hashing"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What is a perfect hash function?", "options": ["A hash function that minimizes memory usage", "A hash function that produces no collisions", "A hash function that sorts data", "A hash function that is difficult to compute"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What is the main disadvantage of using cryptographic hash functions in a hash table?", "options": ["They are slower to compute than non-cryptographic functions", "They require more memory", "They are prone to collisions", "They produce variable output sizes"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": Which of the following techniques can reduce collisions in hash tables?", "options": ["Using a poor hash function", "Increasing the size of the hash table", "Reducing the number of elements", "Both B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What is the result of applying a hash function to a data set?", "options": ["A sorted list", "A fixed-length output", "A random output", "A complex data structure"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What is the purpose of the modulus operator in hash functions?", "options": ["To encrypt the data", "To ensure the output fits within the size of the hash table", "To sort the data", "To generate random numbers"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": Which of the following is NOT a characteristic of a good hash function?", "options": ["Deterministic", "Fast computation", "Uniqueness of output", "Reversible"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": How can you improve a hash function’s performance?", "options": ["Increase the size of the input data", "Use a better hash algorithm", "Minimize the number of collisions", "Both B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What is the significance of the avalanche effect in hash functions?", "options": ["Small changes in input produce significant changes in output", "The output remains constant despite changes in input", "Outputs are predictable based on inputs", "It minimizes collisions"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What is a hashing algorithm?", "options": ["A function that encrypts data", "A method for calculating a hash value", "A process for sorting data", "A technique for compressing data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What is the main benefit of using a hash function in a database?", "options": ["Faster search and retrieval of data", "Easier data management", "Simplified user interface", "Enhanced data security"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What does “hashing” refer to in computer science?", "options": ["Encrypting data", "Converting data into a fixed-length string", "Compressing data", "Sorting data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": Which hash function is best for ensuring data integrity?", "options": ["Cryptographic hash function", "Non-cryptographic hash function", "Perfect hash function", "Universal hash function"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What is the significance of the output size in a hash function?", "options": ["It determines the security level", "It affects the speed of computation", "It limits the input data size", "It has no significance"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": Which hash function is designed to be irreversible?", "options": ["Division hashing", "SHA-1", "Multiplicative hashing", "Linear hashing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What is a universal hash function?", "options": ["A hash function designed to work for all types of data", "A hash function that minimizes the chance of collision", "A hash function that can be used for both encryption and hashing", "A hash function with a fixed output size"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What is a common application of hash functions in security?", "options": ["Data storage", "Digital signatures", "File compression", "Data retrieval"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": In a hash table, which operation can be directly impacted by a poorly designed hash function?", "options": ["Sorting", "Searching", "Data retrieval", "Both B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": Which of the following statements about hash functions is TRUE?", "options": ["They should always produce unique outputs", "They can be used to encrypt data", "They should be deterministic", "They can only be used in hash tables"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What is the output of a hash function known as?", "options": ["Hash code", "Hash value", "Hash index", "Hash key"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": Which hash function is primarily used in Bitcoin?", "options": ["MD5", "SHA-256", "SHA-1", "HMAC"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What is the primary challenge when designing a hash function?", "options": ["Ensuring it is easy to compute", "Preventing collisions", "Making it reversible", "Ensuring it uses minimal memory"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": What type of data can be used as input for a hash function?", "options": ["Only numeric data", "Only string data", "Any type of data", "Only structured data"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": Which of the following is a common use case for non-cryptographic hash functions?", "options": ["Data integrity verification", "Password hashing", "Data indexing in hash tables", "Digital signatures"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "hash-functions-mcqs", "topic": "hash-functions-mcqs", "question": ": How does a hash function contribute to the efficiency of data retrieval?", "options": ["By sorting the data", "By reducing the number of comparisons needed", "By encrypting the data", "By compressing the data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hash-functions-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "Which of the following is not an abstract data type?", "options": ["Stack", "Queue", "Array", "Linked List"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "What does ADT stand for?", "options": ["Abstract Design Type", "Abstract Data Type", "Array Data Type", "Algorithm Data Type"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "Which ADT stores elements in a first-in, first-out (FIFO) order?", "options": ["Stack", "Queue", "List", "Tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "Which operation is not associated with the Stack ADT?", "options": ["Push", "Pop", "Peek", "Enqueue"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "In a Queue ADT, which operation is used to add an element?", "options": ["Push", "Insert", "Enqueue", "Append"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "Which of the following is true for a Stack ADT?", "options": ["Last-in, first-out (LIFO)", "First-in, first-out (FIFO)", "Random access", "Both A and B"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "Which of the following data structures is best suited for implementing a recursive function call?", "options": ["Queue", "Stack", "Linked List", "Tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "Which ADT allows access to elements by their position index?", "options": ["Stack", "Queue", "List", "Tree"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "In a linked list, what is each element typically referred to as?", "options": ["Node", "Vertex", "Cell", "Unit"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "Which ADT is best for representing a hierarchical relationship?", "options": ["Stack", "Queue", "Graph", "Tree"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "Which ADT is not linear?", "options": ["Stack", "Queue", "Tree", "Array"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "Which of the following operations is not fundamental to the Queue ADT?", "options": ["Enqueue", "Dequeue", "Peek", "Traverse"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "What is the complexity of accessing an element in an array?", "options": ["O(1)", "O(n)", "O(log n)", "O(n²)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "What is the complexity of inserting an element at the beginning of a linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n²)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "Which ADT is best for representing a sequence of elements where insertions and deletions occur frequently?", "options": ["Array", "Linked List", "Stack", "Queue"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "Which of the following operations is associated with the Tree ADT?", "options": ["Insertion", "Deletion", "Traversal", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "What type of ADT is used to model real-world hierarchical data such as organizational structures?", "options": ["Stack", "Queue", "Tree", "Graph"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "In a circular queue, how is the queue fullness determined?", "options": ["Front = Rear", "Rear = Max size", "(Rear + 1) % Max size = Front", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "Which ADT is appropriate for implementing a priority system?", "options": ["Stack", "Queue", "Priority Queue", "Linked List"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Abstract Data Types Adt Mcqs", "question": "Which of the following is not a common operation on an ADT?", "options": ["Creation", "Destruction", "Traversal", "Compilation"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/abstract-data-types-adt-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": What is a Min-heap?", "options": ["A binary tree where the value of each node is less than or equal to the values of its children", "A binary tree where the value of each node is greater than or equal to the values of its children", "A binary tree where the left subtree is less than the root and the right subtree is greater than the root", "A binary tree with no restrictions on node values"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": Which operation in a Min-heap ensures that the heap property is maintained?", "options": ["Insertion", "Deletion", "Both insertion and deletion", "Traversal"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": What is the time complexity of finding the minimum element in a Min-heap?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": In a Min-heap, which node has the smallest value?", "options": ["Root node", "Leaf nodes", "Internal nodes", "Any node"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": Which data structure is commonly used to implement a Min-heap?", "options": ["Linked list", "Array", "Stack", "Queue"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": Which operation in a Min-heap removes and returns the minimum element?", "options": ["Extract-Max", "Extract-Min", "Delete-Max", "Delete-Min"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": In a Min-heap with n elements, what is the height of the heap?", "options": ["O(log n)", "O(n)", "O(n log n)", "O(1)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": Which operation in a Min-heap inserts a new element while maintaining the heap property?", "options": ["Insert", "Update", "Replace", "Swap"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": What is the array representation of a Min-heap?", "options": ["An array where each element is greater than its parent", "An array where each element is less than its parent", "An array where each element is equal to its parent", "An unordered array"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": Which traversal method can be used to print all elements of a Min-heap in sorted order?", "options": ["In-order traversal", "Pre-order traversal", "Post-order traversal", "Level-order traversal"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": What is the worst-case time complexity of inserting an element into a Min-heap with n elements?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": Which operation in a Min-heap swaps elements to maintain the heap property?", "options": ["Swap-Min", "Heapify", "Balance", "Adjust"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": Which operation in a Min-heap decreases the value of a node and adjusts the heap if necessary?", "options": ["Decrease-Key", "Increase-Key", "Modify-Key", "Change-Key"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": Which traversal method of a Min-heap visits nodes level by level?", "options": ["In-order traversal", "Pre-order traversal", "Post-order traversal", "Level-order traversal"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": In a Min-heap, which operation retrieves the minimum element without removing it?", "options": ["Peek-Max", "Peek-Min", "Peek-Root", "Peek-Top"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": Which operation in a Min-heap ensures that the heap property is restored bottom-up?", "options": ["Bubble-Up", "Bubble-Down", "Trickle-Up", "Trickle-Down"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": Which of the following is NOT true about Min-heaps?", "options": ["The root element is always the minimum element", "They are used in priority queues", "They are a type of self-balancing tree", "They are complete binary trees"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": Which operation in a Min-heap removes and returns the minimum element, and then restructures the heap?", "options": ["Remove-Min", "Delete-Min", "Extract-Min", "Pop-Min"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": In a Min-heap, what is the relationship between a parent node i and its children 2i+1 and 2i+2?", "options": ["Parent is less than or equal to children", "Parent is greater than or equal to children", "Parent is equal to children", "Parent is not related to children"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "min-heap-mcqs", "topic": "min-heap-mcqs", "question": ": Which operation in a Min-heap ensures that the heap property is restored top-down?", "options": ["Bubble-Up", "Bubble-Down", "Trickle-Up", "Trickle-Down"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/min-heap-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What is the time complexity of searching for a substring in a string using the Knuth-Morris-Pratt algorithm?", "options": ["O(n)", "O(m + n)", "O(n²)", "O(m)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": Which of the following algorithms is used for pattern matching in strings?", "options": ["Quick Sort", "Merge Sort", "Rabin-Karp Algorithm", "Dijkstra’s Algorithm"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What is the primary use of the Levenshtein distance algorithm?", "options": ["To find the shortest path in a graph", "To measure the similarity between two strings", "To sort strings alphabetically", "To concatenate strings"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": Which algorithm is commonly used for finding the longest common subsequence?", "options": ["Dynamic Programming", "Greedy Algorithm", "Divide and Conquer", "Backtracking"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What does the Boyer-Moore algorithm primarily optimize?", "options": ["Memory usage", "Pattern matching efficiency", "String sorting", "Substring searching"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": In which scenario is the Rabin-Karp algorithm most efficient?", "options": ["When searching for a single character", "When the pattern is long and there are many patterns", "When searching for patterns in sorted strings", "When using a small alphabet"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What is the primary advantage of using tries for string storage?", "options": ["Fast substring searching", "Efficient memory usage", "Fast insertion and deletion operations", "Easy to implement"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": Which of the following is NOT a string manipulation operation?", "options": ["Concatenation", "Insertion", "Sorting", "Compiling"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What does the term ‘string hashing’ refer to?", "options": ["Converting a string into a numerical value", "Breaking a string into characters", "Sorting a string alphabetically", "Finding the length of a string"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": Which algorithm is used to find the longest palindromic substring?", "options": ["Manacher’s Algorithm", "KMP Algorithm", "Rabin-Karp Algorithm", "Aho-Corasick Algorithm"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What is the worst-case time complexity of the naive substring search algorithm?", "options": ["O(n)", "O(m + n)", "O(n²)", "O(m²)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What does the ‘replace’ operation in string manipulation do?", "options": ["Deletes a substring", "Replaces occurrences of a substring with another substring", "Splits a string into an array", "Appends characters to a string"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": Which method is used to convert a string to lowercase in many programming languages?", "options": ["lower()", "toLowerCase()", "convertToLower()", "makeLower()"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What is a common application of the Z algorithm?", "options": ["Sorting strings", "Pattern matching", "String comparison", "String reversal"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What does the ‘split’ operation do in string manipulation?", "options": ["Merges two strings", "Divides a string into substrings based on a delimiter", "Removes characters from a string", "Appends characters to a string"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": Which string manipulation algorithm uses a sliding window technique?", "options": ["Rabin-Karp", "KMP", "Longest Common Substring", "Longest Palindromic Substring"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What is the purpose of the ‘trim’ operation in string manipulation?", "options": ["To sort a string", "To remove leading and trailing whitespace", "To find the length of a string", "To convert a string to uppercase"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": Which of the following is a property of immutable strings?", "options": ["Strings can be modified after creation", "Memory is reused", "Strings cannot be changed once created", "Strings are stored in a heap"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What does the ‘substring’ operation do?", "options": ["Returns the entire string", "Creates a new string from a portion of the original string", "Deletes a portion of the string", "Sorts the characters in the string"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": Which algorithm is used to compare two strings for equality?", "options": ["Boyer-Moore", "Knuth-Morris-Pratt", "Simple comparison", "Z Algorithm"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What is a common application of string manipulation algorithms in natural language processing?", "options": ["Text classification", "Image processing", "Video analysis", "Data compression"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": Which data structure is commonly used to implement a trie?", "options": ["Array", "Linked List", "Tree", "Hash Table"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What is the purpose of a suffix tree?", "options": ["To store only unique substrings", "To provide fast substring searching", "To compress strings", "To sort strings"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What is the time complexity of the Boyer-Moore algorithm in the average case?", "options": ["O(m + n)", "O(n)", "O(n²)", "O(m)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": Which of the following is a greedy algorithm for string manipulation?", "options": ["Huffman Coding", "Dynamic Programming", "Binary Search", "Merge Sort"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What is the purpose of using character encoding in strings?", "options": ["To compress strings", "To convert strings into numerical values", "To represent characters in bytes", "To sort strings"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": Which operation can be performed to check if a string is a palindrome?", "options": ["Reverse the string and compare", "Count the characters", "Sort the string", "Remove whitespace"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What is the main advantage of using string interning?", "options": ["Reduces memory usage", "Increases performance", "Simplifies string operations", "Allows for easy comparison"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": Which of the following methods would you use to join an array of strings?", "options": ["concatenate()", "join()", "merge()", "append()"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What is the main difference between shallow and deep copying of strings?", "options": ["Shallow copies the data, deep copies references", "Shallow copies references, deep copies the data", "There is no difference", "Shallow copying is faster"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": In which application are string manipulation algorithms often used?", "options": ["Image processing", "Web scraping", "Sorting numbers", "Graph algorithms"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What is the time complexity of the naive algorithm for finding all occurrences of a substring?", "options": ["O(n)", "O(m + n)", "O(n²)", "O(m²)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What is the output of the ‘reverse’ operation on the string “hello”?", "options": ["“olleh”", "“hello”", "“he”", "“world”"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": Which algorithm is used for compressing strings?", "options": ["Run-Length Encoding", "Merge Sort", "Dijkstra’s Algorithm", "Bubble Sort"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What does a regular expression do in string manipulation?", "options": ["Sorts strings", "Searches and manipulates text based on patterns", "Converts strings to numbers", "Formats strings"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials String Manipulation Algorithms Mcqs", "question": ": What is the main purpose of the Knuth-Morris-Pratt algorithm?", "options": ["To sort strings", "To find the longest common substring", "To efficiently search for substrings", "To remove duplicates from strings"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/string-manipulation-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linked Lists Mcqs", "question": ": What is a linked list?", "options": ["A collection of elements stored in contiguous memory locations", "A data structure consisting of nodes where each node contains a data field and a reference to the next node", "A static data structure", "An array with pointers"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linked-lists-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linked Lists Mcqs", "question": ": What is the time complexity for accessing an element in a linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linked-lists-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linked Lists Mcqs", "question": ": Which of the following operations can be performed on a linked list?", "options": ["Insertion", "Deletion", "Traversal", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/linked-lists-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linked Lists Mcqs", "question": ": What is the main advantage of using a linked list over an array?", "options": ["Fixed size", "Random access", "Dynamic sizing", "Simpler implementation"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/linked-lists-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linked Lists Mcqs", "question": ": In a singly linked list, what does the last node point to?", "options": ["The first node", "The previous node", "NULL", "The next node"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/linked-lists-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linked Lists Mcqs", "question": ": What is a doubly linked list?", "options": ["A list where each node has only one pointer", "A list where each node has two pointers, one to the next and one to the previous node", "A list that can only store integer values", "A circular linked list"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linked-lists-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linked Lists Mcqs", "question": ": What is the time complexity for inserting a node at the beginning of a linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/linked-lists-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linked Lists Mcqs", "question": ": Which of the following is true about circular linked lists?", "options": ["The last node points to NULL", "There is no start or end", "They can only be singly linked", "They require more memory"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linked-lists-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linked Lists Mcqs", "question": ": How do you traverse a singly linked list?", "options": ["Using a loop and a pointer", "Using recursion", "Both A and B", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/linked-lists-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linked Lists Mcqs", "question": ": What happens if you try to access the next pointer of a NULL node?", "options": ["It returns zero", "It causes a segmentation fault", "It returns NULL", "It creates a new node"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linked-lists-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Solved Mcqs Questions Answers", "question": ". In stack, the process of inserting a value is called ____________", "options": ["Create", "Push", "Pop", "Evaluation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/stacks-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Solved Mcqs Questions Answers", "question": ". In stack, the process of removing a value is called __________", "options": ["Create", "Push", "Evaluation", "Pop"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/stacks-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Solved Mcqs Questions Answers", "question": ". If a user tries to remove a value from an empty stack, it is called _________", "options": ["Underflow", "Empty collection", "Overflow", "Garbage Collection"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stacks-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Solved Mcqs Questions Answers", "question": ". In a stack of size 5, pushing more than five values into the stack causes", "options": ["Overflow", "User flow", "Crash", "Underflow"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stacks-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Solved Mcqs Questions Answers", "question": ". What is meant by this statement: Entries in a stack are “ordered”?", "options": ["A collection of stacks is sortable", "The entries are stored in a linked ‘<’ operation", "listStack entries may be compared", "There is a sequential entry that is one by one"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/stacks-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Solved Mcqs Questions Answers", "question": ". Which of the following applications may use a stack?", "options": ["Parentheses balancing program", "Tracking of local variables at run time", "Compiler Syntax Analyzer", "Data Transfer between two asynchronous processes"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stacks-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Solved Mcqs Questions Answers", "question": ". Consider the usual algorithm for determining whether a sequence of parentheses is balanced.", "options": ["What is the maximum number of parentheses that appear on the stack at any one time when analyzing: (()(())(()))?", "1", "2", "3"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/stacks-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Solved Mcqs Questions Answers", "question": ". Suppose that you run the usual parentheses balancing algorithm on a sequence that contains 2 left parentheses and 3 right parentheses.", "options": ["What is the maximum number of parentheses on the stack at any one time?", "1", "2", "6"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/stacks-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Solved Mcqs Questions Answers", "question": ". What is the value of the postfix expression 6 3 2 4 + – *?", "options": ["1", "40", "74", "-18"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/stacks-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What is a non-linear data structure?", "options": ["Data elements are arranged in a sequential manner", "Data elements are arranged in a hierarchical manner", "Data elements are not arranged in a sequence", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": Which of the following is an example of a non-linear data structure?", "options": ["Array", "Stack", "Tree", "Queue"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What type of tree has a maximum of two children per node?", "options": ["Binary Tree", "AVL Tree", "B-Tree", "Red-Black Tree"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What is the time complexity of searching for an element in a balanced binary search tree?", "options": ["O(n)", "O(log n)", "O(n log n)", "O(1)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": Which of the following traversal methods is used for trees?", "options": ["Linear Search", "Pre-order", "Random Access", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What is the height of a binary tree with n nodes in the worst case?", "options": ["O(log n)", "O(n)", "O(n log n)", "O(1)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": In a binary search tree, the left subtree of a node contains only nodes with values…", "options": ["Greater than the node", "Equal to the node", "Less than the node", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": Which of the following trees is self-balancing?", "options": ["Binary Tree", "B-Tree", "AVL Tree", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What is the primary characteristic of a heap?", "options": ["Every node has at most two children", "It is a complete binary tree", "The parent node is always larger than its children (Max Heap)", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What is the time complexity for inserting an element in a binary heap?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What is the maximum number of nodes at level k in a binary tree?", "options": ["k", "2^k", "2^(k-1)", "2k"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": Which of the following is a characteristic of a B-Tree?", "options": ["Nodes can have multiple children", "It is always a binary tree", "It is unbalanced", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What type of tree allows for efficient searching and insertion in logarithmic time?", "options": ["Binary Tree", "Binary Search Tree", "AVL Tree", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What is the primary purpose of a trie data structure?", "options": ["Storing integers", "Storing strings efficiently", "Sorting numbers", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What is the worst-case time complexity for searching in a binary search tree?", "options": ["O(log n)", "O(n)", "O(n log n)", "O(1)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": Which traversal method visits all nodes of a binary tree?", "options": ["Pre-order", "In-order", "Post-order", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What is the main difference between a binary tree and a binary search tree?", "options": ["Number of children per node", "Order of elements", "Height", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What is the average-case time complexity for deleting a node from a binary search tree?", "options": ["O(n)", "O(log n)", "O(n log n)", "O(1)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": In a red-black tree, what is the maximum height relative to the number of nodes?", "options": ["log n", "2 log n", "n", "n log n"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What type of tree is used in databases to allow fast data retrieval?", "options": ["Binary Tree", "B-Tree", "AVL Tree", "Red-Black Tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What is the primary characteristic of a leaf node in a tree?", "options": ["It has no children", "It has two children", "It can only have one child", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": Which data structure is best suited for implementing priority queues?", "options": ["Stack", "Queue", "Heap", "Linked List"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What is the main advantage of a self-balancing binary search tree?", "options": ["Faster insertion", "Lower memory usage", "Maintains O(log n) height", "Simplicity"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": Which of the following is true for a full binary tree?", "options": ["All nodes have zero or two children", "All nodes have one child", "It has a height of n", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What is the depth of a binary tree?", "options": ["Number of nodes", "Number of edges from the root to the deepest leaf", "Number of leaves", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": In a binary search tree, the in-order traversal will yield elements in…", "options": ["Random order", "Descending order", "Ascending order", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": Which of the following is NOT a property of a binary search tree?", "options": ["The left child is less than the parent", "The right child is greater than the parent", "All children must be leaf nodes", "Both A and B"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What is the time complexity of a level-order traversal of a binary tree?", "options": ["O(n)", "O(log n)", "O(n log n)", "O(n^2)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": Which of the following trees is used for efficient searching, insertion, and deletion?", "options": ["Binary Tree", "AVL Tree", "Red-Black Tree", "Both B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What is the maximum number of edges in a binary tree with n nodes?", "options": ["n", "n-1", "2n", "2n-1"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": In a trie, each node represents…", "options": ["A character", "A word", "A number", "A string"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": Which of the following is true about B-trees?", "options": ["They are always binary trees", "They allow for efficient searching and insertion", "They have a variable number of children per node", "Both B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What is the main purpose of a binary heap?", "options": ["Storing sorted data", "Implementing a priority queue", "Searching for elements", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": Which of the following is NOT true about an AVL tree?", "options": ["It is a type of binary search tree", "It is always balanced", "It can have nodes with up to two children", "It can have varying heights"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What is the main disadvantage of using a binary search tree?", "options": ["Requires a lot of memory", "Can become unbalanced", "Limited searching capabilities", "Cannot handle duplicates"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Linear Data Structures Mcqs", "question": ": What type of tree is used for maintaining a sorted dataset?", "options": ["Binary Tree", "Binary Search Tree", "AVL Tree", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/non-linear-data-structures-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": What is Bubble Sort primarily used for?", "options": ["To search for an element", "To sort an array", "To merge two arrays", "To partition data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": What is the best-case time complexity of Bubble Sort?", "options": ["O(n)", "O(n log n)", "O(n²)", "O(log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": Which statement best describes the working of Bubble Sort?", "options": ["It selects the smallest element and swaps it to the front.", "It compares adjacent elements and swaps them if they are in the wrong order.", "It divides the array into two halves and sorts them independently.", "It uses a divide-and-conquer approach to sort the array."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": What is the worst-case time complexity of Bubble Sort?", "options": ["O(n)", "O(log n)", "O(n log n)", "O(n²)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": In which scenario is Bubble Sort most efficient?", "options": ["When the data is already sorted", "When the data is in random order", "When the data has many duplicates", "When the data is large"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": How many passes does Bubble Sort typically require to sort an array?", "options": ["n", "n/2", "n−1", "n²"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": What is the space complexity of Bubble Sort?", "options": ["O(1)", "O(n)", "O(n log n)", "O(n²)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": Which of the following is true about Bubble Sort?", "options": ["It is a stable sorting algorithm.", "It is not a stable sorting algorithm.", "It can sort data in descending order only.", "It uses additional memory for sorting."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": What happens when a single pass of Bubble Sort completes without any swaps?", "options": ["The array is not sorted yet.", "The algorithm continues to the next pass.", "The algorithm terminates early, indicating that the array is sorted.", "The algorithm starts over from the beginning."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": Which of the following is a drawback of Bubble Sort?", "options": ["It is difficult to implement.", "It has a high time complexity for large datasets.", "It does not handle negative numbers.", "It requires extra memory for sorting."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": What is the average-case time complexity of Bubble Sort?", "options": ["O(n)", "O(n log n)", "O(n²)", "O(log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": Which of the following algorithms is similar in nature to Bubble Sort?", "options": ["Selection Sort", "Merge Sort", "Quick Sort", "Insertion Sort"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": In Bubble Sort, what is the main factor that determines whether two elements are swapped?", "options": ["Their values", "Their indices", "Their positions in the array", "Their data types"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": How can Bubble Sort be optimized?", "options": ["By using a hash table", "By reducing the number of passes", "By stopping when no swaps occur in a pass", "By using a recursive approach"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": What is the output of Bubble Sort if the input array is [5, 4, 3, 2, 1]?", "options": ["[1, 2, 3, 4, 5]", "[5, 4, 3, 2, 1]", "[3, 2, 1, 5, 4]", "[1, 5, 4, 3, 2]"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": Which of the following is a practical application of Bubble Sort?", "options": ["Sorting large datasets", "Real-time data processing", "Educational purposes to teach sorting algorithms", "Data encryption"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": What is the significance of the inner loop in Bubble Sort?", "options": ["It counts the number of swaps.", "It compares adjacent elements.", "It iterates through the entire array.", "It sorts the array in descending order."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": In Bubble Sort, how are elements compared?", "options": ["By their values", "By their positions", "By their frequencies", "By their types"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": Which is true about the stability of Bubble Sort?", "options": ["It is unstable for equal elements.", "It maintains the relative order of equal elements.", "It can sort data with different data types.", "It requires additional space for stability."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": What will happen if Bubble Sort is applied to an array with only one element?", "options": ["The array will be sorted.", "An error will occur.", "The array will remain unchanged.", "The algorithm will loop indefinitely."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": Which of the following statements about Bubble Sort is incorrect?", "options": ["It can be implemented using recursion.", "It is an efficient algorithm for large datasets.", "It is a comparison-based sorting algorithm.", "It is simple to understand and implement."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": What does it mean when we say that Bubble Sort is a “comparison sort”?", "options": ["It uses comparisons to determine the order of elements.", "It sorts data without comparing values.", "It requires multiple passes to sort.", "It can only sort numerical data."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": What is the main idea behind the name “Bubble Sort”?", "options": ["Elements “bubble” to the top of the array.", "It uses bubble-like structures to sort.", "It is a type of floating sort.", "It sorts elements based on their sizes."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": How does Bubble Sort handle duplicate elements?", "options": ["It ignores them.", "It sorts them randomly.", "It maintains their relative order.", "It moves them to the end."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": What happens to the time complexity of Bubble Sort when the dataset is mostly sorted?", "options": ["It remains O(n²).", "It improves to O(n).", "It becomes O(log n).", "It increases to O(n log n)."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": In which programming construct is Bubble Sort commonly implemented?", "options": ["Recursion", "Iteration", "Dynamic programming", "Greedy algorithms"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": Which of the following sorting algorithms is generally less efficient than Bubble Sort?", "options": ["Insertion Sort", "Selection Sort", "Merge Sort", "Quick Sort"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": What would be the result of applying Bubble Sort to the array [1, 2, 3, 4, 5]?", "options": ["[1, 2, 3, 4, 5]", "[5, 4, 3, 2, 1]", "[3, 1, 2, 4, 5]", "[2, 1, 3, 4, 5]"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": Which sorting method is often taught as an introductory algorithm in computer science?", "options": ["Quick Sort", "Merge Sort", "Bubble Sort", "Heap Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": What is the impact of using a modified version of Bubble Sort that stops when no swaps are made in a pass?", "options": ["It becomes unstable.", "It improves efficiency for partially sorted data.", "It requires more memory.", "It makes the algorithm complex."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": Which of the following scenarios would likely result in the most number of comparisons when using Bubble Sort?", "options": ["Sorted array", "Reverse sorted array", "Randomized array", "Array with all equal elements"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": What is the main reason why Bubble Sort is not commonly used in practice for large datasets?", "options": ["It is too complex to implement.", "It is too slow compared to more efficient algorithms.", "It does not maintain stability.", "It requires too much memory."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": How does the number of comparisons in Bubble Sort relate to the size of the array?", "options": ["It increases linearly.", "It increases quadratically.", "It decreases with larger sizes.", "It remains constant."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "bubble-sort-mcqs", "topic": "bubble-sort-mcqs", "question": ": What kind of sorting is Bubble Sort classified as?", "options": ["In-place sorting", "External sorting", "Comparison-based sorting", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/bubble-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What is dynamic memory allocation?", "options": ["Allocating memory at compile time", "Allocating memory at runtime", "Allocating memory for global variables", "Allocating fixed-size memory"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": Which function is used to allocate memory dynamically in C?", "options": ["malloc()", "alloc()", "reserve()", "new()"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What is the return type of the malloc() function?", "options": ["int", "void*", "char*", "float*"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What happens if malloc() fails to allocate memory?", "options": ["It returns NULL", "It returns 0", "It crashes the program", "It returns a garbage value"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": Which function is used to free dynamically allocated memory in C?", "options": ["release()", "dealloc()", "free()", "dispose()"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What is the purpose of the calloc() function?", "options": ["To allocate memory for a single variable", "To allocate memory and initialize it to zero", "To free memory", "To reallocate memory"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What is the difference between malloc() and calloc()?", "options": ["malloc() initializes memory to zero", "calloc() allocates memory for a single variable", "malloc() does not initialize memory, while calloc() does", "There is no difference"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What does the realloc() function do?", "options": ["Allocates new memory", "Frees memory", "Changes the size of previously allocated memory", "Initializes memory to zero"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What is a potential risk of dynamic memory allocation?", "options": ["Memory leaks", "Stack overflow", "Underflow", "Array out of bounds"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": Which of the following is true about dynamic memory?", "options": ["It is automatically deallocated", "It must be manually deallocated", "It is always faster than static memory", "It cannot be resized"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What is the purpose of the sizeof operator in dynamic memory allocation?", "options": ["To determine the size of the pointer", "To allocate memory for a pointer", "To determine the size of data types", "To free allocated memory"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What is the outcome of using free() on a pointer that is already freed?", "options": ["Undefined behavior", "Memory leak", "No effect", "Program termination"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": In which scenario would you use dynamic memory allocation?", "options": ["When the size of the data is known at compile time", "When creating static arrays", "When the size of the data is determined at runtime", "When using global variables"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What is a common use case for dynamic memory allocation?", "options": ["Storing constants", "Managing arrays of unknown size", "Allocating memory for stack variables", "Defining global variables"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": Which function is used to allocate memory for a specific number of elements in C?", "options": ["alloc()", "malloc()", "calloc()", "reserve()"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What happens if you forget to free dynamically allocated memory?", "options": ["The memory is automatically freed", "It causes a segmentation fault", "It leads to memory leaks", "It has no effect"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What is the difference between stack and heap memory?", "options": ["Stack memory is slower than heap memory", "Heap memory is automatically managed, stack is not", "Stack memory is used for dynamic allocation, heap is not", "Stack memory is used for function calls, heap is for dynamic allocation"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What is a memory leak?", "options": ["When memory is allocated but not freed", "When memory is freed too early", "When memory is allocated more than needed", "When memory is accessed after being freed"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What type of memory allocation does the new operator perform in C++?", "options": ["Static memory allocation", "Automatic memory allocation", "Dynamic memory allocation", "Stack memory allocation"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What is the purpose of the delete operator in C++?", "options": ["To allocate memory", "To free memory", "To resize memory", "To initialize memory"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What will happen if you try to access memory that has already been freed?", "options": ["The program will run normally", "It will cause a memory leak", "It may cause undefined behavior", "It will print an error message"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": How do you check if malloc() succeeded?", "options": ["Check if the pointer is not NULL", "Check if the pointer is -1", "Check if the pointer is 0", "Check if the pointer is greater than 0"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": Which of the following can lead to fragmentation in dynamic memory allocation?", "options": ["Using realloc()", "Frequent allocation and deallocation", "Using malloc()", "Using calloc()"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What is the typical overhead for dynamic memory allocation?", "options": ["0 bytes", "A few bytes per allocation", "A few kilobytes per allocation", "No overhead"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": Which function can be used to determine the number of bytes allocated to a pointer in C?", "options": ["sizeof()", "sizeof(pointer)", "malloc()", "free()"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What does realloc() return if it fails to allocate the requested memory?", "options": ["NULL", "-1", "0", "The original pointer"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": In C++, what happens to dynamically allocated memory when the program exits?", "options": ["It is automatically freed", "It remains allocated", "It leads to memory leaks", "It is set to NULL"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": Which of the following scenarios requires dynamic memory allocation?", "options": ["Fixed-size arrays", "Variable-length data structures", "Global variables", "Constant data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What is the memory allocation technique called when the size of memory is not known beforehand?", "options": ["Static allocation", "Dynamic allocation", "Automatic allocation", "Global allocation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": Which of the following statements about memory allocation is false?", "options": ["Dynamic memory allocation allows for more flexible memory usage", "Static memory allocation is faster than dynamic allocation", "Dynamic memory allocation is more efficient for large data structures", "Dynamic memory allocation guarantees no fragmentation"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": Which of the following functions is used for memory allocation in C++?", "options": ["alloc()", "new()", "malloc()", "allocate()"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What is the purpose of the new[] operator in C++?", "options": ["To allocate memory for a single object", "To allocate memory for an array of objects", "To free memory", "To check memory usage"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What will happen if you forget to use delete on a dynamically allocated object in C++?", "options": ["The program will run correctly", "The memory will be freed automatically", "It will lead to a memory leak", "The program will crash"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dynamic Memory Allocation Mcqs", "question": ": What is the main advantage of using dynamic memory allocation?", "options": ["It is faster than static allocation", "It provides flexibility in memory usage", "It uses less memory", "It is easier to implement"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/dynamic-memory-allocation-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is a tree in data structures?", "options": ["A non-linear data structure", "A linear data structure", "A type of array", "A fixed-size data structure"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the maximum number of children a binary tree node can have?", "options": ["One", "Unlimited", "Three", "Two"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the height of a tree?", "options": ["The number of edges from the root to the farthest leaf", "The number of nodes", "The total number of levels", "The number of leaf nodes"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "In a binary tree, what is the maximum number of nodes at level n?", "options": ["n", "2^n", "2^(n-1)", "n^2"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is a full binary tree?", "options": ["A tree with all levels fully filled", "A tree where every node has either 0 or 2 children", "A tree with a single path from root to leaf", "A tree with at least one leaf node"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is a complete binary tree?", "options": ["A tree where all levels are fully filled except possibly the last", "A tree where all nodes have two children", "A tree with no leaf nodes", "A binary tree with only one path"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the purpose of a binary search tree (BST)?", "options": ["All of the above", "To allow efficient searching, insertion, and deletion", "To keep elements sorted", "To store data in a non-linear format"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the in-order traversal of a binary tree?", "options": ["Visit the left subtree, then root, then right subtree", "Visit the root, then left subtree, then right subtree", "Visit the right subtree, then root, then left subtree", "Visit nodes in level order"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the pre-order traversal of a binary tree?", "options": ["Visit the left subtree, then root, then right subtree", "Visit nodes in level order", "Visit the right subtree, then root, then left subtree", "Visit the root, then left subtree, then right subtree"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the post-order traversal of a binary tree?", "options": ["Visit the left subtree, then root, then right subtree", "Visit the root, then left subtree, then right subtree", "Visit the left subtree, then right subtree, then root", "Visit nodes in level order"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the worst-case time complexity for searching in a binary search tree?", "options": ["O(n)", "O(log n)", "O(1)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "Which of the following is NOT a property of a binary search tree?", "options": ["Left subtree nodes are less than the root", "All nodes must have two children", "Right subtree nodes are greater than the root", "Each subtree must also be a binary search tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the minimum height of a binary tree with n nodes?", "options": ["log(n)", "n", "n – 1", "log(n + 1)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is a balanced binary tree?", "options": ["A tree where all leaf nodes are at the same level", "A tree where every node has two children", "A tree that is complete", "A tree where the height difference between left and right subtrees is no more than one"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is a binary heap?", "options": ["A type of binary search tree", "A complete binary tree that satisfies the heap property", "A linear data structure", "A tree with random node arrangement"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the space complexity for storing a binary tree?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "Which traversal method is used to sort a binary search tree?", "options": ["In-order traversal", "Pre-order traversal", "Post-order traversal", "Level-order traversal"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the level of a node in a tree?", "options": ["The total number of nodes", "The height of the node", "The number of edges from the root to the node", "The depth of the node"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is a leaf node in a tree?", "options": ["A node that is the root", "A node with one child", "A node with two children", "A node with no children"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "Which data structure can be used to implement a tree?", "options": ["Array", "Linked list", "Both A and B", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the breadth-first search (BFS) traversal of a tree?", "options": ["Level-order traversal", "Pre-order traversal", "In-order traversal", "Post-order traversal"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is a binary tree with all nodes having 0 or 1 child called?", "options": ["Complete binary tree", "Full binary tree", "Degenerate tree", "Balanced binary tree"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the depth of a node in a tree?", "options": ["The number of nodes from the root to the node", "The height of the tree", "The number of edges from the root to the node", "The level of the tree"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is a B-tree?", "options": ["A self-balancing tree that maintains sorted data", "A binary search tree", "A complete binary tree", "A type of heap"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the height of a balanced binary tree with n nodes?", "options": ["n/2", "n", "log(n)", "log(n + 1)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is a Red-Black tree?", "options": ["A type of binary search tree", "A binary heap", "A self-balancing binary search tree", "A complete binary tree"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the main advantage of using a self-balancing tree?", "options": ["It maintains a balanced structure for efficient operations", "It requires less memory", "It is easier to implement", "It allows for random access"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is a thread in a threaded binary tree?", "options": ["A pointer to a child node", "A pointer to the parent node", "A pointer to the next node in in-order traversal", "A pointer to the root node"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What type of tree is used to implement a priority queue?", "options": ["Binary search tree", "AVL tree", "Red-Black tree", "Binary heap"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the main characteristic of a ternary tree?", "options": ["Each node has up to two children", "Each node has up to three children", "It is a complete binary tree", "It is a degenerate tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What type of traversal uses a stack?", "options": ["Breadth-first search", "Both B and C", "In-order traversal", "Depth-first search"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the primary characteristic of a Splay tree?", "options": ["It is self-balancing", "It uses rotation to move frequently accessed nodes closer to the root", "All of the above", "It is a binary search tree"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the function of the left and right pointers in a binary tree node?", "options": ["To point to the parent node", "To store data", "To point to the left and right children", "To store the height of the tree"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "In which scenario would you use a trie?", "options": ["To implement a priority queue", "For tree traversal", "For numerical data storage", "To store strings for fast retrieval"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the main disadvantage of a linked representation of a binary tree?", "options": ["It is less efficient than an array", "It is harder to implement", "It consumes more memory due to pointers", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What is the relationship between the height and number of nodes in a complete binary tree?", "options": ["Height = n – 1", "Height = n", "Height = n/2", "Height = log(n)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "What does the term “height balanced” refer to in trees?", "options": ["The difference in heights between left and right subtrees is minimal", "The height is the same for all nodes", "All levels are completely filled", "The total number of nodes is minimal"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "trees-mcqs", "topic": "trees-mcqs", "question": "Which tree structure allows for fast lookup, insertion, and deletion operations?", "options": ["Linked list", "Array", "Binary search tree", "Stack"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": What is a singly linked list?", "options": ["A data structure where each node points to the next node", "A data structure where each node points to both the previous and next nodes", "A data structure where each node points to the previous node", "A circular data structure where nodes point to each other"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": What is the time complexity of inserting an element at the beginning of a singly linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": Which of the following operations requires traversing a singly linked list?", "options": ["Inserting at the beginning", "Deleting from the beginning", "Accessing the last element", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": What is the time complexity of deleting the first element of a singly linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": In a singly linked list, each node contains:", "options": ["A data part and a pointer to the previous node", "Only a data part", "A data part and a pointer to the next node", "A data part and pointers to both previous and next nodes"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": Which of the following is the correct way to delete the node after a given node in a singly linked list?", "options": ["Adjust the pointer of the given node to skip the next node", "Adjust the pointer of the next node to point to the given node", "Delete the given node", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": What is the time complexity of searching for an element in a singly linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": How do you insert a new node after a given node in a singly linked list?", "options": ["Set the new node’s pointer to the next node, then adjust the given node’s pointer to the new node", "Set the given node’s pointer to the new node, then set the new node’s pointer to the next node", "Set the new node’s pointer to the previous node", "Set the new node’s pointer to the first node"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": Which of the following is true about the head node in a singly linked list?", "options": ["It contains the largest value in the list", "It points to the first node of the list", "It points to the last node of the list", "It is always null"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": What is the time complexity of inserting an element at the end of a singly linked list if the tail pointer is not maintained?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": What is the key disadvantage of using a singly linked list?", "options": ["It requires more memory than an array", "It does not allow random access of elements", "It is difficult to implement", "It is less efficient for large datasets"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": Which of the following operations is not possible with a singly linked list?", "options": ["Insertion at the end", "Deletion from the beginning", "Traversing in reverse order", "Searching for an element"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": What is the time complexity of accessing the nth element in a singly linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": Which of the following statements is true about singly linked lists?", "options": ["They can be traversed in both directions", "They use more memory than doubly linked lists", "They allow efficient insertion and deletion from both ends", "They allow efficient insertion and deletion from the beginning"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": How do you find the length of a singly linked list?", "options": ["By traversing the list and counting the nodes", "By accessing the length property", "By using a counter variable during insertion and deletion", "Both a and c"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": In a singly linked list, what is the term used for the last node?", "options": ["Head", "Tail", "End", "Final"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": What happens if you try to delete a node from an empty singly linked list?", "options": ["The list becomes undefined", "The list becomes null", "An error occurs", "Nothing happens"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": Which of the following best describes a node in a singly linked list?", "options": ["It contains a value and two pointers", "It contains a value and a pointer to the next node", "It contains only a value", "It contains a value and a pointer to the previous node"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Singly Linked List Mcqs", "question": ": How do you delete a singly linked list?", "options": ["Set the head to null", "Free each node one by one", "Use a loop to delete all nodes", "Both b and c"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/singly-linked-list-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the primary characteristic of a linear data structure?", "options": ["Elements are stored in a non-sequential manner", "Each element is connected to one or two elements", "Elements are stored in a sequential manner", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": Which of the following is an example of a linear data structure?", "options": ["Tree", "Graph", "Stack", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the time complexity for accessing an element in an array?", "options": ["O(n)", "O(log n)", "O(1)", "O(n^2)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": Which linear data structure follows the Last In First Out (LIFO) principle?", "options": ["Queue", "Stack", "Array", "Linked List"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": In a queue, elements are added at the…", "options": ["Front", "Middle", "Back", "Any position"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What type of linked list allows traversal in both directions?", "options": ["Singly Linked List", "Circular Linked List", "Doubly Linked List", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": Which of the following operations has a time complexity of O(1) in a stack?", "options": ["Pop", "Search", "Traverse", "Insert"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the space complexity of a linked list with n nodes?", "options": ["O(1)", "O(n)", "O(n^2)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": Which data structure is used to implement a function call stack?", "options": ["Queue", "Array", "Stack", "Linked List"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the worst-case time complexity for searching in a linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": Which operation is typically NOT performed on a queue?", "options": ["Enqueue", "Dequeue", "Peek", "Push"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": Which of the following is NOT a characteristic of a circular linked list?", "options": ["Last node points to the first node", "Can be singly or doubly linked", "Has a fixed size", "Allows continuous traversal"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the primary disadvantage of using an array as a data structure?", "options": ["Fast access time", "Fixed size", "Random access", "Sequential access"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": Which of the following is a characteristic of a stack?", "options": ["First In First Out", "Last In First Out", "Allows random access", "Can grow in size dynamically"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the time complexity for inserting an element at the beginning of a linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n^2)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": Which of the following operations has a time complexity of O(n) in a singly linked list?", "options": ["Insertion at the head", "Insertion at the tail", "Deletion from the head", "Searching for an element"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the space complexity of a stack with n elements?", "options": ["O(1)", "O(n)", "O(n^2)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": Which of the following data structures allows for insertion and deletion from both ends?", "options": ["Stack", "Queue", "Deque", "Array"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the average time complexity for searching in a stack?", "options": ["O(1)", "O(n)", "O(log n)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What type of data structure is used for implementing a breadth-first search?", "options": ["Stack", "Queue", "Array", "Linked List"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": In a priority queue, elements are dequeued based on their…", "options": ["Insertion order", "Value", "Size", "Position"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": Which of the following best describes a doubly linked list?", "options": ["Nodes can be traversed in one direction only", "Nodes contain a pointer to both the next and previous nodes", "It has a fixed number of nodes", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the main disadvantage of a stack?", "options": ["Limited size", "Random access", "LIFO order", "Complexity"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": Which of the following operations in a queue has a time complexity of O(1)?", "options": ["Enqueue", "Dequeue", "Both A and B", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the time complexity for traversing a linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": In which data structure can you insert and delete elements at both ends?", "options": ["Stack", "Queue", "Circular Linked List", "Deque"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the primary purpose of a stack?", "options": ["To store data in a sorted manner", "To manage function calls", "To allow random access to elements", "To manage tasks in a specific order"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the time complexity for deleting the last element in a singly linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": Which of the following is NOT a type of linear data structure?", "options": ["Array", "Linked List", "Graph", "Stack"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the main characteristic of a queue?", "options": ["Elements are processed in a random order", "It follows the LIFO principle", "It follows the FIFO principle", "It allows duplicate elements"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the maximum number of elements in a stack of size n?", "options": ["n", "n+1", "2n", "Unlimited"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": Which data structure is more memory efficient for large datasets?", "options": ["Array", "Linked List", "Stack", "Queue"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is a key advantage of a circular linked list?", "options": ["Simplicity", "Efficient memory usage", "Continuous traversal without NULL checks", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the time complexity of removing an element from the front of a queue?", "options": ["O(1)", "O(n)", "O(log n)", "O(n^2)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": Which of the following describes a stack’s behavior?", "options": ["First In First Out", "Last In First Out", "Both A and B", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the space complexity of an array of size n?", "options": ["O(1)", "O(n)", "O(n^2)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the primary operation of a stack?", "options": ["Enqueue", "Dequeue", "Push and Pop", "Insert and Delete"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": What is the time complexity of inserting an element at the end of a doubly linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n^2)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "arrays-mcqs", "topic": "arrays-mcqs", "question": ": Which of the following is a disadvantage of using arrays?", "options": ["Dynamic sizing", "Faster access time", "Wasted memory due to fixed size", "Easy to implement"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/arrays-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "What is the primary purpose of Dijkstra’s algorithm?", "options": ["To find the shortest path in an unweighted graph", "To find the shortest path in a weighted graph", "To find all paths in a graph", "To find the longest path in a graph"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "Which data structure is typically used in Dijkstra’s algorithm to store the next vertex to process?", "options": ["Stack", "Queue", "Priority queue", "Array"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "What is the time complexity of Dijkstra’s algorithm using a priority queue implemented with a binary heap?", "options": ["O(V²)", "O(E + V log V)", "O(V log V)", "O(E log V)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "What is the primary disadvantage of Dijkstra’s algorithm?", "options": ["It cannot handle negative weight edges", "It is too slow for large graphs", "It is too complex to implement", "It cannot find the shortest path"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "Which algorithm can handle graphs with negative weight edges?", "options": ["Dijkstra’s algorithm", "Bellman-Ford algorithm", "Both algorithms", "Neither algorithm"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "What is the time complexity of the Bellman-Ford algorithm?", "options": ["O(E)", "O(V + E)", "O(VE)", "O(V²)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "What does the Bellman-Ford algorithm detect in a graph?", "options": ["Shortest paths only", "Negative weight cycles", "All paths", "Minimum spanning tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "Which algorithm is generally faster for dense graphs?", "options": ["Dijkstra’s algorithm", "Bellman-Ford algorithm", "Both are equally fast", "Neither is efficient for dense graphs"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "Which algorithm initializes distances from the source to all other vertices to infinity?", "options": ["Dijkstra’s algorithm", "Bellman-Ford algorithm", "Both algorithms", "Neither algorithm"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "In Dijkstra’s algorithm, how is the next vertex selected?", "options": ["The vertex with the maximum distance", "The vertex with the minimum distance", "The vertex with the most edges", "The vertex with the least connections"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "What is the key step in the Bellman-Ford algorithm?", "options": ["Updating the shortest path estimates for all vertices", "Selecting the vertex with the least edges", "Using a priority queue to manage vertices", "Ignoring negative weight edges"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "What happens if a negative weight cycle exists in the graph?", "options": ["Dijkstra’s algorithm will fail", "Bellman-Ford will give incorrect results", "Both algorithms will give correct results", "Both algorithms will fail"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "Which of the following statements is true about Dijkstra’s algorithm?", "options": ["It can be used on directed graphs only", "It guarantees the shortest path for all edges", "It works well with negative weight edges", "It is not suitable for large graphs"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "What is a primary use case for the Bellman-Ford algorithm?", "options": ["Finding the minimum spanning tree", "Finding shortest paths in graphs with negative weights", "Finding the longest path", "Performing depth-first search"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "Which algorithm requires fewer iterations when the graph has fewer edges?", "options": ["Dijkstra’s algorithm", "Bellman-Ford algorithm", "Both have the same number of iterations", "Neither algorithm is affected by edges"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "What does the relaxation step in both algorithms involve?", "options": ["Updating the weight of edges", "Reducing the distance to a vertex", "Checking for cycles", "Adding new edges to the graph"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "Which algorithm can be implemented with a simple array to store distances?", "options": ["Dijkstra’s algorithm", "Bellman-Ford algorithm", "Both algorithms", "Neither algorithm"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "In which scenario would you prefer Dijkstra’s algorithm over Bellman-Ford?", "options": ["When the graph has negative weights", "When the graph is dense", "When you need a simpler implementation", "When performance is critical in a non-negative weighted graph"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "Which algorithm will give you the shortest path tree rooted at the source?", "options": ["Dijkstra’s algorithm", "Bellman-Ford algorithm", "Both algorithms", "Neither algorithm"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "What is the key assumption of Dijkstra’s algorithm regarding edge weights?", "options": ["All edges must have the same weight", "Edge weights must be non-negative", "Edge weights can be negative", "Edge weights must be integers"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "How many times does the Bellman-Ford algorithm need to relax edges?", "options": ["V times", "E times", "V-1 times", "E-1 times"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "What can be concluded if the distance to a vertex in Dijkstra’s algorithm does not change?", "options": ["The vertex is unreachable", "The vertex has no neighbors", "The shortest path has been found", "The algorithm is incorrect"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "Which algorithm can handle directed graphs?", "options": ["Dijkstra’s algorithm", "Bellman-Ford algorithm", "Both algorithms", "Neither algorithm"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "Which algorithm would be best for a network with varying costs for different paths?", "options": ["Dijkstra’s algorithm", "Bellman-Ford algorithm", "Both algorithms are suitable", "Neither algorithm is suitable"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "In Bellman-Ford, what is done if a distance can still be reduced after V-1 iterations?", "options": ["The algorithm terminates", "A negative weight cycle exists", "The algorithm continues indefinitely", "The algorithm returns incorrect results"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "How does the initialization of distances differ between the two algorithms?", "options": ["Both start from the same vertex", "Dijkstra initializes to infinity; Bellman-Ford initializes to zero", "Dijkstra initializes to zero; Bellman-Ford initializes to infinity", "Both initialize distances to zero"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "Which algorithm uses the principle of greedy approach?", "options": ["Dijkstra’s algorithm", "Bellman-Ford algorithm", "Both algorithms", "Neither algorithm"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "Which of the following is an example of an application for Dijkstra’s algorithm?", "options": ["Finding the fastest route in GPS navigation", "Finding the minimum spanning tree", "Detecting cycles in a graph", "Sorting a list of numbers"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "Which of the following is an example of an application for the Bellman-Ford algorithm?", "options": ["Finding the fastest route in GPS navigation", "Network routing with negative weights", "Finding the minimum spanning tree", "Sorting a list of numbers"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "In a directed graph, can Dijkstra’s algorithm yield different paths from the same source to the same destination?", "options": ["Yes, depending on the implementation", "No, it always gives the same path", "Yes, but only with negative weights", "No, it always gives the longest path"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "What type of graph can the Bellman-Ford algorithm be applied to?", "options": ["Only undirected graphs", "Only directed graphs", "Both directed and undirected graphs with negative weights", "Only graphs without cycles"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "Which of the following can improve the performance of Dijkstra’s algorithm?", "options": ["Using an unordered list", "Using a Fibonacci heap", "Ignoring negative weights", "Reducing the number of vertices"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Shortest Path Algorithms Dijkstras Bellman Ford Mcqs", "question": "What happens if Dijkstra’s algorithm encounters a negative edge?", "options": ["It continues processing normally", "It terminates with an error", "It yields incorrect results", "It only processes positive edges"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shortest-path-algorithms-dijkstras-bellman-ford-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What is garbage collection?", "options": ["The process of cleaning up unused memory", "A method to allocate memory", "A way to optimize CPU usage", "A technique for data encryption"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": Which of the following languages primarily uses garbage collection?", "options": ["C", "C++", "Java", "Assembly"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What is the main purpose of garbage collection?", "options": ["To speed up the program execution", "To free up memory automatically", "To enhance CPU performance", "To improve code readability"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": Which of the following is NOT a type of garbage collection?", "options": ["Mark-and-sweep", "Reference counting", "Memory pooling", "Generational garbage collection"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": In the mark-and-sweep algorithm, what is the first step?", "options": ["Sweep the memory", "Mark reachable objects", "Free memory", "Allocate new memory"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What does reference counting do?", "options": ["Tracks the number of references to an object", "Counts the number of objects in memory", "Allocates memory for new objects", "Marks objects for deletion"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What happens when an object’s reference count reaches zero?", "options": ["The object is retained in memory", "The object is marked for garbage collection", "The object is immediately deleted", "The program crashes"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": Which garbage collection method involves dividing memory into generations?", "options": ["Mark-and-sweep", "Generational garbage collection", "Reference counting", "Tracing garbage collection"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": In garbage collection, what does the term “root set” refer to?", "options": ["The list of objects to be collected", "The references that are accessible directly", "The memory allocated for new objects", "The total memory usage of a program"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": Which of the following can cause memory leaks?", "options": ["Properly implemented garbage collection", "Circular references in objects", "Manual memory management", "Generational garbage collection"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What is a common drawback of garbage collection?", "options": ["Increased performance", "Automatic memory management", "Non-deterministic timing of collection", "Reduces memory consumption"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What does “stop-the-world” mean in the context of garbage collection?", "options": ["The program crashes", "All application threads are paused", "The garbage collector runs in parallel", "No memory is allocated"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What is the role of a garbage collector in a programming language?", "options": ["To compile code", "To manage memory allocation and deallocation", "To optimize CPU usage", "To execute user-defined functions"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": Which of the following is a characteristic of the mark-and-sweep algorithm?", "options": ["It is non-intrusive", "It uses reference counting", "It can lead to fragmentation", "It requires constant memory"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": How does a tracing garbage collector work?", "options": ["It counts object references", "It marks and sweeps objects", "It identifies unreachable objects by traversing reachable ones", "It allocates memory for new objects"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What is a potential advantage of using garbage collection?", "options": ["Manual memory management", "Reduced programmer workload", "Increased application complexity", "Guaranteed performance"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": Which algorithm is primarily used in languages like C# for garbage collection?", "options": ["Mark-and-sweep", "Reference counting", "Generational garbage collection", "Stop-and-copy"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What is the main limitation of reference counting?", "options": ["It is too complex to implement", "It cannot handle cyclic references", "It requires a lot of memory", "It is slower than mark-and-sweep"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": Which of the following is a sign of a memory leak?", "options": ["Consistent memory usage", "Increasing memory usage over time", "Decreased performance", "Program crashing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What is the purpose of garbage collection in Java?", "options": ["To manage CPU resources", "To optimize I/O operations", "To reclaim memory automatically", "To improve execution speed"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What does the term “finalization” mean in garbage collection?", "options": ["The process of permanently deleting an object", "The action taken before an object is collected", "The allocation of memory for a new object", "The marking of reachable objects"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": Which of the following can improve the efficiency of garbage collection?", "options": ["Increasing object lifetime", "Reducing object creation", "Frequent collection cycles", "Allocating more memory"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What is “heap fragmentation”?", "options": ["A condition where free memory is scattered", "The process of merging free memory blocks", "Memory allocated for temporary objects", "A type of memory leak"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": In what scenario is garbage collection typically invoked?", "options": ["When the program is running smoothly", "When memory usage exceeds a certain threshold", "At the beginning of program execution", "Every time a variable is created"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What is the main challenge with automatic garbage collection?", "options": ["It is too fast", "It can introduce latency during program execution", "It uses too much memory", "It simplifies memory management"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": How can developers help minimize garbage collection overhead?", "options": ["Use more global variables", "Create fewer temporary objects", "Use static variables", "Increase the size of the heap"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": Which method is NOT a part of garbage collection in Java?", "options": ["System.gc()", "Runtime.getRuntime().gc()", "free()", "finalize()"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What happens if garbage collection is disabled in a language that relies on it?", "options": ["The program will not compile", "The program will crash immediately", "Memory leaks will occur", "The performance will improve"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What is the role of a “garbage collector” in a virtual machine?", "options": ["To execute bytecode", "To allocate memory", "To manage memory cleanup", "To compile source code"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": Which technique does not rely on a garbage collector?", "options": ["Manual memory management", "Mark-and-sweep", "Reference counting", "Generational garbage collection"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": Which garbage collection algorithm can lead to pauses in application execution?", "options": ["Concurrent garbage collection", "Incremental garbage collection", "Stop-the-world garbage collection", "Lazy garbage collection"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What is “concurrent garbage collection”?", "options": ["Collection that happens during program execution", "Collection that runs after program execution", "Collection that requires all threads to stop", "Collection that is only performed on the heap"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What is a significant benefit of generational garbage collection?", "options": ["It minimizes memory fragmentation", "It avoids all memory leaks", "It assumes most objects die young", "It eliminates the need for manual memory management"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": In which scenario is manual garbage collection preferable?", "options": ["When performance is critical", "When working with low-level system programming", "In high-level programming languages", "When memory allocation is infrequent"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "garbage-collection-mcqs", "topic": "garbage-collection-mcqs", "question": ": What does “tracing” in garbage collection refer to?", "options": ["Counting references", "Identifying reachable objects", "Tracking memory allocation", "Freeing unused memory"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/garbage-collection-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": What is a doubly linked list? (A) A data structure where each node points to the next node", "options": ["A data structure where each node points to both the previous and next nodes", "A data structure where each node points to the previous node", "A circular data structure where nodes point to each other", "A data structure where each node points to both the previous and next nodes"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": What is the time complexity of inserting an element at the beginning of a doubly linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": Which of the following operations requires traversal in a doubly linked list?", "options": ["Inserting at the beginning", "Deleting from the beginning", "Accessing the last element", "Inserting at the end if the tail pointer is maintained"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": What is the time complexity of deleting the first element of a doubly linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": In a doubly linked list, each node contains:", "options": ["A data part and a pointer to the previous node", "A data part and a pointer to the next node", "A data part and pointers to both the previous and next nodes", "Only a data part"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": How do you traverse a doubly linked list from the end to the beginning?", "options": ["By following the previous pointers from the tail node to the head node", "By following the next pointers from the tail node to the head node", "By using an index", "By accessing elements directly"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": Which of the following is the correct way to delete a node after a given node in a doubly linked list?", "options": ["Adjust the next pointer of the given node to skip the next node and adjust the previous pointer of the node after the next node", "Adjust the next pointer of the next node to point to the given node", "Delete the given node", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": What is the time complexity of searching for an element in a doubly linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": How do you insert a new node after a given node in a doubly linked list?", "options": ["Set the new node’s next pointer to the next node and adjust the given node’s next pointer to the new node, then adjust the new node’s previous pointer and the next node’s previous pointer", "Set the given node’s next pointer to the new node and adjust the new node’s next pointer to the next node", "Set the new node’s previous pointer to the previous node", "Set the new node’s next pointer to the first node"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": Which of the following is true about the head node in a doubly linked list?", "options": ["It contains the largest value in the list", "It points to the first node of the list", "It points to the last node of the list", "It is always null"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": What is the time complexity of inserting an element at the end of a doubly linked list if the tail pointer is maintained?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": What is the key advantage of using a doubly linked list over a singly linked list?", "options": ["It requires less memory", "It allows traversal in both directions", "It is easier to implement", "It has faster access to elements"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": Which of the following operations is possible with a doubly linked list but not with a singly linked list?", "options": ["Insertion at the beginning", "Deletion from the beginning", "Traversing in reverse order", "Searching for an element"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": What is the time complexity of accessing the nth element in a doubly linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": Which of the following statements is true about doubly linked lists?", "options": ["They use less memory than singly linked lists", "They allow efficient insertion and deletion from both ends", "They are less efficient for large datasets", "They do not allow random access of elements"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": How do you find the length of a doubly linked list?", "options": ["By traversing the list and counting the nodes", "By accessing the length property", "By using a counter variable during insertion and deletion", "Both a and c"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": In a doubly linked list, what is the term used for the last node?", "options": ["Head", "Tail", "End", "Final"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": What happens if you try to delete a node from an empty doubly linked list?", "options": ["The list becomes undefined", "The list becomes null", "An error occurs", "Nothing happens"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": Which of the following best describes a node in a doubly linked list?", "options": ["It contains a value and two pointers", "It contains a value and a pointer to the next node", "It contains only a value", "It contains a value and a pointer to the previous node"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Doubly Linked List Mcqs", "question": ": How do you delete a doubly linked list?", "options": ["Set the head to null", "Free each node one by one", "Use a loop to delete all nodes", "Both b and c"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/doubly-linked-list-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is a heap in data structures?", "options": ["A complete binary tree that satisfies the heap property", "A linear data structure", "A type of binary search tree", "A non-linear data structure"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What are the two types of heaps?", "options": ["Max heap and min heap", "Binary heap and ternary heap", "Complete heap and incomplete heap", "Full heap and empty heap"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": In a max heap, which property is maintained?", "options": ["The key of a parent node is less than or equal to its children", "The key of a parent node is greater than or equal to its children", "All nodes must have two children", "The tree must be balanced"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is the time complexity for inserting an element into a heap?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is the time complexity for removing the maximum element from a max heap?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is the main use of a heap?", "options": ["Storing sorted data", "Implementing priority queues", "Storing data in a linear format", "Representing graphs"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": In a min heap, which property is maintained?", "options": ["The key of a parent node is less than or equal to its children", "The key of a parent node is greater than or equal to its children", "The heap is always complete", "The heap has at least one child"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is the height of a complete binary heap with n nodes?", "options": ["O(1)", "log(n)", "O(n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": Which of the following is true about heaps?", "options": ["Heaps are always balanced", "Heaps can be implemented using arrays", "Heaps cannot be used to sort data", "Heaps have a fixed size"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is the process of restoring the heap property after an insertion called?", "options": ["Sifting down", "Sifting up", "Balancing", "Rotating"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is the process of restoring the heap property after a deletion called?", "options": ["Sifting down", "Sifting up", "Balancing", "Rotating"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": Which data structure can efficiently implement a priority queue?", "options": ["Stack", "Queue", "Binary tree", "Heap"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is the time complexity of heap sort?", "options": ["O(n)", "O(n log n)", "O(n^2)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is the primary disadvantage of a binary heap?", "options": ["It is inefficient for searching", "It requires too much memory", "It is always unbalanced", "It cannot be implemented with arrays"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is the primary characteristic of a binary heap?", "options": ["It is a complete binary tree", "It is a balanced binary tree", "It is a binary search tree", "It can have nodes with only one child"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What happens to the structure of a heap after extracting the maximum element?", "options": ["It remains the same", "The last element is moved to the root", "The heap is destroyed", "It becomes a binary search tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": Which operation is not typically supported by heaps?", "options": ["Insert", "Delete", "Find maximum", "Find arbitrary element"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": How are heaps typically represented in memory?", "options": ["Using linked lists", "Using arrays", "Using hash tables", "Using trees"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is the value of the root node in a min heap?", "options": ["The maximum value", "The minimum value", "The average value", "The median value"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is a d-ary heap?", "options": ["A heap with d children per node", "A type of binary heap", "A complete binary tree", "A linear heap"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": Which of the following is a property of a max heap?", "options": ["The left subtree is larger than the right subtree", "The parent node is always less than the child nodes", "The largest element is at the root", "All leaf nodes are at the same level"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": In a binary heap, what is the index of the left child of a node at index i?", "options": ["2i", "2i + 1", "2i + 2", "i/2"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": In a binary heap, what is the index of the right child of a node at index i?", "options": ["2i", "2i + 1", "2i + 2", "i/2"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is the index of the parent of a node at index i in a binary heap?", "options": ["i/2", "(i-1)/2", "i + 1", "i – 1"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is the purpose of a Fibonacci heap?", "options": ["To improve the performance of the binary heap", "To store elements in sorted order", "To provide faster decrease-key operations", "To maintain a balanced tree"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What happens if you try to insert an element into a full binary heap?", "options": ["It throws an error", "It overwrites the root element", "It becomes a min heap", "It automatically expands"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": How does a binary heap differ from a binary search tree?", "options": ["Heaps are sorted, while binary search trees are not", "Heaps allow efficient access to the largest or smallest element", "Binary search trees have a complete structure, while heaps do not", "Both structures allow random access"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is the main advantage of using heaps over arrays for priority queues?", "options": ["Heaps require less memory", "Heaps allow for faster insertions and deletions", "Heaps are always balanced", "Heaps are easier to implement"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is the use of a binary heap in the Dijkstra’s algorithm?", "options": ["To store the graph", "To efficiently retrieve the next node with the smallest distance", "To keep track of visited nodes", "To maintain the order of nodes"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is a skew heap?", "options": ["A binary heap that is always complete", "A binary heap that allows arbitrary structure", "A self-adjusting heap", "A balanced binary tree"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What operation does the heapify function perform?", "options": ["Constructs a heap from an array", "Deletes the minimum element", "Inserts a new element", "Balances the heap"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is the relationship between heaps and sorting algorithms?", "options": ["Heaps cannot be used for sorting", "Heaps are used in heap sort", "Heaps always produce sorted data", "Heaps require more time than other sorting algorithms"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": Which type of heap is best suited for implementing a priority queue?", "options": ["Binary heap", "Ternary heap", "Fibonacci heap", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is the impact of deleting the root in a heap?", "options": ["The heap is destroyed", "The last element is moved to the root and heapify is performed", "The heap remains unchanged", "The entire heap must be rebuilt"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": How does a pair of heaps differ from other heaps?", "options": ["They maintain a balanced structure", "They allow for fast merging of heaps", "They are implemented using linked lists", "They do not support priority queues"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What type of data structure can a binary heap be implemented as?", "options": ["Array", "Linked list", "Tree", "All of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "heaps-mcqs", "topic": "heaps-mcqs", "question": ": What is the main disadvantage of a Fibonacci heap?", "options": ["It is difficult to implement", "It uses too much memory", "It is less efficient than binary heaps for all operations", "It cannot be used for priority queues"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heaps-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": What is a binary tree?", "options": ["A tree with at most 2 children for each node", "A tree where each node has exactly 2 children", "A tree with an arbitrary number of children for each node", "A tree where nodes are arranged in a binary search order"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": Which of the following statements is true about binary trees?", "options": ["Each node has exactly one child", "Each node has at most two children", "Each node has an unlimited number of children", "Each node has exactly three children"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": What is a binary search tree (BST)?", "options": ["A binary tree where the left child is greater than the parent and the right child is less than the parent", "A binary tree where the left child is less than the parent and the right child is greater than the parent", "A binary tree where the left child is equal to the parent and the right child is not equal to the parent", "A binary tree where the left child is less than or equal to the parent and the right child is greater than or equal to the parent"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": What is the minimum number of nodes in a binary tree of height 3?", "options": ["4", "5", "6", "7"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": What is the maximum number of nodes in a binary tree of height 4?", "options": ["8", "15", "16", "31"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": Which traversal visits the nodes in the order: left subtree, root, right subtree?", "options": ["Preorder", "Inorder", "Postorder", "Level order"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": In a binary tree, if a node has no children, it is called a:", "options": ["Leaf node", "Root node", "Internal node", "Sibling node"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": Which traversal visits the root node first, then the left subtree, and finally the right subtree?", "options": ["Preorder", "Inorder", "Postorder", "Level order"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": Which of the following operations can be efficiently implemented using a binary search tree?", "options": ["Finding the maximum element", "Finding the minimum element", "Finding the median element", "Finding the nth smallest element"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": Which traversal visits the nodes in the order: left subtree, right subtree, root?", "options": ["Preorder", "Inorder", "Postorder", "Level order"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": Which of the following operations requires the worst-case time complexity in a binary search tree?", "options": ["Insertion", "Deletion", "Searching", "Traversal"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": What is the height of a binary tree with only one node?", "options": ["0", "1", "2", "Undefined"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": Which traversal is used to create a copy of a binary tree?", "options": ["Preorder", "Inorder", "Postorder", "Level order"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": In a binary tree, what is the maximum number of nodes at level 3?", "options": ["4", "7", "8", "15"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": Which traversal can be used to evaluate postfix expressions?", "options": ["Preorder", "Inorder", "Postorder", "Level order"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": Which traversal is commonly used to sort elements in a binary search tree in ascending order?", "options": ["Preorder", "Inorder", "Postorder", "Level order"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": Which of the following is NOT a valid binary tree traversal?", "options": ["Left-root-right", "Root-left-right", "Right-root-left", "Left-right-root"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": What is the maximum number of leaf nodes in a binary tree with 15 nodes?", "options": ["7", "8", "15", "16"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Trees Mcqs", "question": ": Which traversal visits all the levels of nodes in order from top to bottom, left to right?", "options": ["Preorder", "Inorder", "Postorder", "Level order"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/binary-trees-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is hashing?", "options": ["A method of data encryption", "A process of converting data into a fixed-size value", "A way to sort data", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": Which of the following is a common use of hashing?", "options": ["Searching data", "Storing passwords", "Data retrieval", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is a hash table?", "options": ["A collection of key-value pairs", "A type of array", "A type of linked list", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is the main advantage of using a hash table?", "options": ["Sequential access", "Fast data retrieval", "Low memory usage", "Simplicity"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is a collision in hashing?", "options": ["When two keys map to the same hash value", "When a key is not found", "When data is corrupted", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": Which of the following techniques is used to resolve collisions?", "options": ["Chaining", "Open addressing", "Both A and B", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": In a hash table, what is the load factor?", "options": ["Ratio of the number of entries to the size of the table", "Number of collisions", "Size of the data", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What happens when the load factor exceeds a certain threshold in a hash table?", "options": ["The table is resized", "Collisions increase", "Data is lost", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is the purpose of a hash function?", "options": ["To encrypt data", "To create a unique index for a given key", "To sort data", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is open addressing in hashing?", "options": ["Storing multiple values in the same index", "Finding the next open slot for a key", "Storing data in sorted order", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": Which of the following is a common open addressing technique?", "options": ["Linear probing", "Quadratic probing", "Double hashing", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is the primary disadvantage of chaining for collision resolution?", "options": ["Increased memory usage", "Slow retrieval times", "Complexity", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": In a hash table, if the size of the table is 10 and there are 5 entries, what is the load factor?", "options": ["0.5", "1", "2", "0.1"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is the time complexity of searching for an element in an ideal hash table?", "options": ["O(n)", "O(log n)", "O(1)", "O(n log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": Which of the following hash functions is considered to be simple but not very effective?", "options": ["Division method", "Multiplication method", "Universal hashing", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": In hashing, what is the main problem caused by a high load factor?", "options": ["Increased retrieval time", "Increased storage", "Data loss", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is the main purpose of a hash code?", "options": ["To encrypt data", "To create a unique identifier for data", "To sort data", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is the expected time complexity for insertion in a well-designed hash table?", "options": ["O(n)", "O(log n)", "O(1)", "O(n log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": Which of the following is an example of a non-cryptographic hash function?", "options": ["SHA-256", "MD5", "MurmurHash", "HMAC"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is the main use of cryptographic hash functions?", "options": ["Data storage", "Data retrieval", "Data integrity and security", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": Which of the following statements is true regarding hashing?", "options": ["It guarantees unique keys for every value", "It can lead to collisions", "It uses more memory than other data structures", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is the effect of a poor hash function?", "options": ["Faster retrieval", "Increased collisions", "Reduced memory usage", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is the primary benefit of using a hash table for data storage?", "options": ["Easy to implement", "Fast data access", "Requires less memory", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": Which method is used to compute a hash value from a key?", "options": ["Hash algorithm", "Hash table", "Hash function", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is a hash collision resolution strategy that uses linked lists?", "options": ["Linear probing", "Quadratic probing", "Chaining", "Double hashing"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": Which of the following scenarios can lead to poor performance in hash tables?", "options": ["High load factor", "Poor hash function", "Excessive collisions", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is double hashing?", "options": ["A technique that uses two hash functions to resolve collisions", "A method of storing data twice for redundancy", "A method of increasing the size of a hash table", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": Which of the following describes the chaining technique for collision resolution?", "options": ["All elements are stored in a single list", "Each index in the hash table points to a linked list of entries", "The first collision is resolved by linear probing", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is the time complexity for deleting an element from a hash table?", "options": ["O(n)", "O(log n)", "O(1)", "O(n log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": Which hashing technique is best suited for a dynamic dataset?", "options": ["Static hashing", "Dynamic hashing", "Open addressing", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is the main disadvantage of open addressing?", "options": ["Increased memory usage", "Complexity of implementation", "Performance degradation with high load factors", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is a universal hashing?", "options": ["A hash function that is used for all types of data", "A technique that minimizes collisions for any input", "A hashing method based on randomization", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": Which hash function method is commonly used in databases?", "options": ["Division method", "Multiplication method", "Cryptographic hash functions", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is the purpose of rehashing?", "options": ["To improve data security", "To reduce the number of collisions", "To increase the size of the hash table", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": Which of the following best describes a hash function?", "options": ["It maps data of arbitrary size to fixed-size values", "It only works with numeric data", "It is always one-to-one", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": In a hash table with a capacity of 10, if the load factor is 0.8, how many entries are there?", "options": ["8", "10", "12", "6"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "hashing-mcqs-mcqs", "topic": "hashing-mcqs-mcqs", "question": ": What is the impact of using a good hash function?", "options": ["Reduced collisions", "Faster access times", "Efficient memory usage", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hashing-mcqs-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "#1: What is the primary purpose of Merge Sort?", "options": ["To partition data", "To search for an element", "To merge two arrays", "To sort an array"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "What is the worst-case time complexity of Merge Sort?", "options": ["O(n)", "O(n^2)", "O(n log n)", "O(log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "Which of the following best describes the Merge Sort algorithm?", "options": ["It repeatedly swaps adjacent elements.", "It selects the smallest element and places it at the beginning.", "It recursively divides the array into halves and merges them.", "It sorts the array in place without additional memory."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "What is the best-case time complexity of Merge Sort?", "options": ["O(n)", "O(n log n)", "O(n^2)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "Which of the following is true about the stability of Merge Sort?", "options": ["It can only sort numerical data.", "It is not a stable sorting algorithm.", "It is a stable sorting algorithm.", "It requires additional memory for stability."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "What is the space complexity of Merge Sort?", "options": ["O(1)", "O(n log n)", "O(n)", "O(n^2)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "Which characteristic makes Merge Sort suitable for large datasets?", "options": ["It requires minimal memory.", "It has a consistent O(n log n) time complexity.", "It is a simple algorithm to implement.", "It is adaptive for partially sorted data."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "What is the main disadvantage of Merge Sort?", "options": ["It is not stable.", "It is slower than other sorting algorithms.", "It cannot handle large datasets.", "It uses extra space for merging."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "In Merge Sort, how is the array divided?", "options": ["Into random sizes", "Into three equal parts", "Into four equal parts", "Into two equal parts"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "What happens to the time complexity of Merge Sort for an already sorted array?", "options": ["It remains O(n log n).", "It improves to O(n).", "It worsens to O(n^2).", "It stays O(log n)."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "Which algorithm is based on a similar concept to Merge Sort?", "options": ["Quick Sort", "Heap Sort", "Insertion Sort", "None of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "What is the output of Merge Sort if applied to the array [7, 2, 1, 6, 8, 5, 3, 4]?", "options": ["[6, 7, 1, 2, 5, 8, 3, 4]", "[8, 7, 6, 5, 4, 3, 2, 1]", "[7, 6, 5, 4, 3, 2, 1, 8]", "[1, 2, 3, 4, 5, 6, 7, 8]"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "What is the role of the merge function in Merge Sort?", "options": ["To divide the array", "To combine two sorted arrays", "To sort the array", "To find the minimum element"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "Which of the following is a key operation in Merge Sort?", "options": ["Partitioning", "Swapping", "Selecting", "Merging"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "In Merge Sort, what happens during the merge step?", "options": ["The array is divided into two halves.", "Two sorted arrays are combined into one sorted array.", "The elements are randomly shuffled.", "The smallest element is selected."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "What is the main characteristic of the Merge Sort algorithm?", "options": ["It is not recursive.", "It sorts elements in place.", "It is based on the divide and conquer strategy.", "It is an adaptive algorithm."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "Which of the following arrays would require the most comparisons when sorted using Merge Sort?", "options": ["Already sorted array", "Array with many duplicate elements", "Randomly ordered array", "Reverse sorted array"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "What is the time complexity of the merge function in Merge Sort?", "options": ["O(n)", "O(1)", "O(n log n)", "O(n^2)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "What would be the result of applying Merge Sort to an empty array?", "options": ["An error will occur.", "The algorithm will enter an infinite loop.", "The array will be filled with zeros.", "The empty array will remain unchanged."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "What type of sorting is Merge Sort classified as?", "options": ["Comparison-based sorting", "External sorting", "In-place sorting", "All of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "merge-sort-mcqs", "topic": "merge-sort-mcqs", "question": "In Merge Sort, how are elements merged from the two halves?", "options": ["They are compared and added in order.", "They are merged randomly.", "They are sorted in descending order.", "They are swapped."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/merge-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What is a stack?", "options": ["A linear data structure that follows the Last In First Out (LIFO) principle", "A linear data structure that follows the First In First Out (FIFO) principle", "A non-linear data structure", "A type of queue"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What operation adds an element to the top of a stack?", "options": ["Enqueue", "Dequeue", "Push", "Pop"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What operation removes the top element from a stack?", "options": ["Enqueue", "Dequeue", "Push", "Pop"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What is the time complexity for the push operation in a stack?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What is the time complexity for the pop operation in a stack?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What is the main disadvantage of using an array to implement a stack?", "options": ["Fixed size", "Slow access", "Complexity in implementation", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": Which of the following is true about a stack?", "options": ["Elements can be accessed in any order", "The last element added is the first to be removed", "It supports random access", "It is a non-linear data structure"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What is the result of popping from an empty stack?", "options": ["It returns NULL", "It causes an underflow error", "It returns zero", "It returns the top element"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What is the main application of stacks in programming?", "options": ["Implementing queues", "Function call management", "Sorting data", "Storing data in arrays"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": Which of the following operations is NOT supported by a stack?", "options": ["Push", "Pop", "Peek", "Dequeue"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What does the peek operation do in a stack?", "options": ["Adds an element to the stack", "Removes the top element from the stack", "Returns the top element without removing it", "Clears the stack"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": How is a stack typically represented in memory?", "options": ["Using arrays only", "Using linked lists only", "Using both arrays and linked lists", "Using trees"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What happens to the stack pointer when an element is pushed onto the stack?", "options": ["It moves up", "It moves down", "It remains unchanged", "It points to NULL"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What is the maximum size of a stack implemented using an array?", "options": ["Dynamic, can grow indefinitely", "Limited by the memory available", "Fixed at the time of declaration", "Depends on the programming language"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What is the primary use of the stack data structure in recursion?", "options": ["To store global variables", "To keep track of function calls", "To sort data", "To manage memory"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What will happen if you try to push an element onto a full stack?", "options": ["The stack will resize", "It will overwrite the bottom element", "It causes an overflow error", "The element will be ignored"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": Which of the following scenarios can be solved using a stack?", "options": ["Balancing parentheses", "Reversing a string", "Depth-first search in graphs", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": In which data structure do you use a stack to evaluate expressions?", "options": ["Queue", "Array", "Linked List", "Binary Tree"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": Which of the following can cause a stack overflow?", "options": ["Using too much memory", "Too many recursive function calls", "Pushing elements onto a full stack", "Both B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What is the space complexity of a stack implemented with a linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": Which of the following best describes a stack underflow?", "options": ["Adding elements to a full stack", "Removing elements from an empty stack", "Trying to access the top element without removing it", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": How do you implement a stack using two queues?", "options": ["By using one queue for storing elements and the other for reversing the order", "By using one queue for pushing and one for popping", "By interleaving the two queues", "It cannot be done"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": Which of the following is an application of a stack?", "options": ["Undo functionality in applications", "Traversing a tree", "Implementing a binary search", "All of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What is the output of the following code if the stack is empty? stack.pop();", "options": ["It removes the last element", "It returns NULL", "It throws an error", "It does nothing"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What is the purpose of using a stack for parsing expressions?", "options": ["To evaluate expressions", "To store intermediate values", "To manage operator precedence", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": How does a stack implemented with a linked list grow?", "options": ["It grows only when elements are added", "It can grow and shrink dynamically", "It has a fixed size", "It cannot grow"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What is a common way to implement a stack using an array?", "options": ["Using a circular queue", "By maintaining a top index", "By using a fixed size", "Both B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": Which of the following statements is true about a stack?", "options": ["It allows random access to elements", "The first element added is the first to be removed", "It is a last-in-first-out data structure", "It does not support the peek operation"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": In a stack, what does it mean to “pop” an element?", "options": ["To remove the bottom element", "To remove the top element", "To view the top element", "To add a new element"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": Which data structure can be used to implement recursion?", "options": ["Array", "Stack", "Queue", "Tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What is the effect of using delete on a stack node in C++?", "options": ["It frees the memory allocated for that node", "It only removes the data", "It causes a memory leak", "It does nothing"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What is the primary characteristic of a stack’s push and pop operations?", "options": ["They are executed in constant time", "They are executed in linear time", "They require sorting", "They require additional memory"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What is the main function of the “top” operation in a stack?", "options": ["To add an element", "To remove an element", "To view the top element without removing it", "To check if the stack is empty"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": What is the relationship between stack and recursion?", "options": ["Stacks are not used in recursion", "Each function call in recursion uses a stack frame", "Recursion cannot be implemented using a stack", "Both are the same"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stacks Mcqs", "question": ": Which of the following describes the stack’s memory allocation?", "options": ["Stacks use dynamic memory allocation only", "Stacks can use both static and dynamic memory allocation", "Stacks use fixed memory allocation only", "Stacks do not require memory allocation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/stacks-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": What is the powerhouse of the cell?", "options": ["Golgi apparatus", "Nucleus", "Mitochondrion", "Ribosome"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": Which planet is known as the Red Planet?", "options": ["Venus", "Mars", "Jupiter", "Saturn"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": What is the chemical symbol for the element gold?", "options": ["Go", "Au", "Ag", "Gd"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": Which of the following is not a primary color of light?", "options": ["Red", "Green", "Yellow", "Blue"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": What is the largest organ in the human body?", "options": ["Liver", "Brain", "Skin", "Heart"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": Which scientist is credited with discovering the theory of relativity?", "options": ["Isaac Newton", "Albert Einstein", "Nikola Tesla", "Marie Curie"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": What is the chemical formula for water?", "options": ["H2O", "CO2", "NaCl", "CH4"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": Who wrote the famous play “Romeo and Juliet”?", "options": ["William Shakespeare", "Charles Dickens", "Jane Austen", "Mark Twain"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": What is the capital city of Australia?", "options": ["Melbourne", "Sydney", "Canberra", "Brisbane"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": Which continent is the largest by land area?", "options": ["Europe", "Africa", "Asia", "North America"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": Who painted the Mona Lisa?", "options": ["Michelangelo", "Leonardo da Vinci", "Vincent van Gogh", "Pablo Picasso"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": Which gas do plants absorb from the atmosphere during photosynthesis?", "options": ["Oxygen", "Nitrogen", "Carbon dioxide", "Hydrogen"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": What is the chemical symbol for the element iron?", "options": ["Ir", "Fe", "In", "Io"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": What is the longest river in the world?", "options": ["Amazon River", "Nile River", "Yangtze River", "Mississippi River"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": Which instrument is used to measure atmospheric pressure?", "options": ["Barometer", "Thermometer", "Hygrometer", "Anemometer"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": Who was the first person to set foot on the moon?", "options": ["Neil Armstrong", "Buzz Aldrin", "Yuri Gagarin", "Alan Shepard"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": Which of these is not a type of cloud?", "options": ["Cumulus", "Cirrus", "Stratus", "Richter"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": What is the chemical formula for methane?", "options": ["CH4", "CO2", "H2O", "NH3"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": Who wrote “To Kill a Mockingbird”?", "options": ["J.K. Rowling", "Harper Lee", "George Orwell", "J.D. Salinger"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "max-heap-mcqs", "topic": "max-heap-mcqs", "question": ": What is the smallest bone in the human body?", "options": ["Patella", "Tibia", "Stapes", "Femur"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/max-heap-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": Which data structure is typically used to implement a heap?", "options": ["Array", "Linked List", "Stack", "Queue"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": What is the time complexity of inserting an element into a heap of size 𝑛?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": In a max-heap, which element is at the root?", "options": ["Largest element", "Smallest element", "Median element", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": Which operation is used to maintain the heap property after an element is deleted from the heap?", "options": ["Heapify", "Merge", "Sort", "Search"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": Which of the following is true about a min-heap?", "options": ["The smallest element is at the root.", "The largest element is at the root.", "It is not possible to have duplicate elements.", "Elements are not stored in any specific order."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": When inserting an element into a heap, which operation ensures that the heap property is maintained?", "options": ["Bubble up", "Bubble down", "Swap with parent", "Swap with child"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": What is the worst-case time complexity of deleting the root element from a heap of size 𝑛?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": Which type of heap is more commonly used in priority queue implementations?", "options": ["Max-heap", "Min-heap", "Binary search heap", "Fibonacci heap"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": What is the primary advantage of using a heap over a sorted array for implementing priority queues?", "options": ["Faster search operations", "Guaranteed constant-time insertion", "Efficient removal of the maximum element", "Ability to store duplicate elements"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": Which operation is used to convert an unordered array into a heap?", "options": ["Insertion", "Deletion", "Heapify", "Merge"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": What happens to the heap structure if an element is inserted into an already max-heap?", "options": ["It remains unchanged.", "It becomes a min-heap.", "It gets sorted.", "It might violate the heap property."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": Which condition is necessary to maintain during the heapify process?", "options": ["Parent node should be greater than both child nodes.", "Parent node should be less than both child nodes.", "Parent node should be equal to both child nodes.", "Parent node should be greater than or equal to both child nodes."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": What is the time complexity of building a heap from an array of 𝑛 elements?", "options": ["O(n)", "O(log n)", "O(n log n)", "O(n^2)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": Which operation is used to remove an arbitrary element from a heap?", "options": ["Bubble up", "Bubble down", "Heapify", "Extract min/max"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": In a max-heap, what does the delete operation typically involve?", "options": ["Deleting the root and replacing it with the smallest element", "Deleting the root and replacing it with the largest element", "Deleting the smallest element in the heap", "Deleting the largest element in the heap"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": Which data structure can efficiently implement both insertion and deletion operations in a heap?", "options": ["Queue", "Stack", "Binary Tree", "Priority Queue"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": What is the index of the parent node of any node 𝑖 in a heap?", "options": ["𝑖/2", "2*𝑖", "𝑖−1", "𝑖+1"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": Which property ensures that a heap is a complete binary tree?", "options": ["All levels are completely filled except possibly the last level, which is filled from left to right.", "All levels are completely filled, regardless of the order.", "All nodes have exactly two children.", "All nodes are connected directly to the root."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "heap-operations-insertion-deletion-heapify-mcqs", "topic": "heap-operations-insertion-deletion-heapify-mcqs", "question": ": When deleting an element from a heap, what is the process used to maintain the heap property?", "options": ["Bubble up", "Bubble down", "Swap with parent", "Swap with child"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/heap-operations-insertion-deletion-heapify-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": Which data structure is primarily used to implement a priority queue?", "options": ["Array", "Linked List", "Stack", "Heap"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": What is the time complexity of inserting an element into a priority queue implemented using a heap of size 𝑛?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": Which sorting algorithm uses a heap as its data structure?", "options": ["Merge sort", "Quick sort", "Bubble sort", "Heap sort"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": What is the worst-case time complexity of heap sort for sorting 𝑛 elements?", "options": ["O(n)", "O(log n)", "O(n log n)", "O(n^2)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": In heap sort, what is the process used to build a max-heap from an array?", "options": ["Bubble up", "Bubble down", "Heapify", "Merge"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": Which of the following is a primary advantage of using a priority queue?", "options": ["Faster deletion operations", "Guaranteed constant-time access", "Efficient retrieval of the maximum element", "Ability to store elements in any order"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": Which operation is typically used to remove the maximum element from a max-heap in a priority queue?", "options": ["Extract min", "Extract max", "Delete", "Remove"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": In a min-heap-based priority queue, what operation retrieves the minimum element without removing it?", "options": ["Peek", "Poll", "Pop", "Remove"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": Which sorting algorithm exhibits a stable behavior (preserves the relative order of equal elements)?", "options": ["Quick sort", "Heap sort", "Merge sort", "Bubble sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": Which property of heap sort makes it suitable for applications requiring in-place sorting?", "options": ["Stable sorting", "Adaptive sorting", "Recursive sorting", "In-place sorting"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": Which operation is used to convert an unordered array into a heap in heap sort?", "options": ["Insertion", "Deletion", "Heapify", "Merge"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": What is the main disadvantage of using a heap-based priority queue compared to other data structures?", "options": ["Slower insertion operations", "Limited to fixed-size elements", "Unstable retrieval of maximum element", "Higher memory usage"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": Which application often requires efficient priority queue operations?", "options": ["Sorting names alphabetically", "Implementing a scheduler for tasks", "Counting occurrences of elements", "Finding shortest paths in a graph"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": In a priority queue implemented using a min-heap, what is the root element?", "options": ["Smallest element", "Largest element", "Median element", "Arbitrary element"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": Which data structure does not use a heap for its implementation?", "options": ["Binary Search Tree", "AVL Tree", "Red-Black Tree", "Heap Tree"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": What is the primary benefit of using heap sort over other sorting algorithms?", "options": ["Stable sorting", "Adaptive sorting", "Worst-case time complexity", "Ease of implementation"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": Which operation in a priority queue is similar to removing the root in a heap?", "options": ["Peek", "Poll", "Push", "Pop"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": Which property must be maintained during the heapify process in heap sort?", "options": ["Parent node should be greater than both child nodes.", "Parent node should be less than both child nodes.", "Parent node should be equal to both child nodes.", "Parent node should be greater than or equal to both child nodes."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": Which operation is not typically supported directly by a heap-based priority queue?", "options": ["Insertion", "Deletion of arbitrary elements", "Merge of two priority queues", "Extracting the minimum element"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Heaps Priority Queues Heap Sort Mcqs", "question": ": Which sorting algorithm is generally preferred when stable sorting is not a requirement?", "options": ["Merge sort", "Heap sort", "Bubble sort", "Insertion sort"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-heaps-priority-queues-heap-sort-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": What is the primary function of Interpolation Search?", "options": ["To find the maximum element in an array", "To search for a specific element in a sorted array", "To sort an array", "To merge two arrays"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": Which type of data structure is required for Interpolation Search to work effectively?", "options": ["Unsorted array", "Linked list", "Sorted array", "Stack"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": What is the time complexity of Interpolation Search in the average case?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": In which scenario is Interpolation Search most efficient?", "options": ["When the data is uniformly distributed", "When the data is randomly distributed", "When the data is completely sorted", "When the data contains many duplicates"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": What is the worst-case time complexity of Interpolation Search?", "options": ["O(log n)", "O(n)", "O(n log n)", "O(1)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": What method does Interpolation Search use to estimate the position of the target element?", "options": ["Random selection", "Linear estimation based on values", "Binary division", "Merging sorted arrays"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": What type of search algorithm is Interpolation Search?", "options": ["Iterative", "Recursive", "Both iterative and recursive", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": What happens if the target value is outside the range of the elements in the array?", "options": ["The search will continue indefinitely", "The search will return the nearest element", "The search will return -1", "An error will be thrown"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": Which of the following is a key advantage of Interpolation Search over Binary Search?", "options": ["It is simpler to implement", "It can handle unsorted data", "It has a better average-case performance on uniformly distributed data", "It requires less memory"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": Which factor can significantly degrade the performance of Interpolation Search?", "options": ["Uniform distribution of data", "Sorted data", "Non-uniform distribution of data", "High number of elements"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": How does Interpolation Search determine the next index to check?", "options": ["By taking the average of low and high", "By using a formula based on the values of the array", "By checking the midpoint", "By incrementing the index linearly"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": In which situation is it recommended to use Interpolation Search?", "options": ["When the array is small", "When the array is sorted and uniformly distributed", "When the data is linked", "When there are many duplicate values"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": What is the space complexity of Interpolation Search?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": Which of the following is true about Interpolation Search?", "options": ["It is faster than Binary Search in all cases", "It is slower than Linear Search in all cases", "It can perform better than Binary Search under certain conditions", "It is only applicable for integer arrays"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": What should be true about the array for Interpolation Search to function correctly?", "options": ["The array must be sorted", "The array must contain unique elements", "The array must be in descending order", "The array can be in any order"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": How does the performance of Interpolation Search compare to Binary Search?", "options": ["Always better", "Always worse", "Better for uniformly distributed data, worse for non-uniform data", "Identical in all cases"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": What is the average case time complexity of Interpolation Search when the data is uniformly distributed?", "options": ["O(log n)", "O(n)", "O(n log n)", "O(1)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": What can result in an unsuccessful search in Interpolation Search?", "options": ["Target element not present in the array", "Array not sorted", "Array containing duplicates", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": What is the main computational strategy of Interpolation Search?", "options": ["Merging", "Estimating the target’s position", "Dividing the array into equal halves", "Incrementing through the array"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": Which condition is NOT a requirement for using Interpolation Search?", "options": ["The array must be sorted", "The array must contain unique values", "The array must be accessible in constant time", "The array should ideally have uniformly distributed values"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": How does Interpolation Search handle duplicates?", "options": ["It skips duplicates", "It can find the first occurrence", "It can find the last occurrence", "It performs poorly"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": What is the purpose of the “low” and “high” indices in Interpolation Search?", "options": ["To define the current search range", "To sort the array", "To find the maximum element", "To calculate the median"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": Which statement about the efficiency of Interpolation Search is true?", "options": ["It is inefficient for small arrays.", "It is always more efficient than Binary Search.", "It can be less efficient for arrays with a large variance.", "It can only be used with integer values."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": What happens during the first iteration of an Interpolation Search?", "options": ["The algorithm calculates the middle index.", "The algorithm calculates a new index based on value estimates.", "The search is terminated.", "The entire array is traversed."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": How does the choice of a pivot affect the performance of Interpolation Search?", "options": ["It has no effect.", "A poor choice can lead to worst-case scenarios.", "It always optimizes performance.", "It only affects space complexity."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": Which of the following algorithms is similar in nature to Interpolation Search?", "options": ["Linear Search", "Binary Search", "Exponential Search", "Jump Search"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": What is the main drawback of using Interpolation Search?", "options": ["It cannot find the target element.", "It may perform poorly on non-uniformly distributed data.", "It requires more memory.", "It is less accurate than Linear Search."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": What is the best-case time complexity for Interpolation Search?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": Which technique does Interpolation Search use to estimate the position of the target element?", "options": ["Statistical estimation", "Random sampling", "Linear interpolation", "Polynomial interpolation"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": What is the effect of the number of elements on the efficiency of Interpolation Search?", "options": ["It is directly proportional.", "It is inversely proportional.", "It has no effect.", "It increases complexity exponentially."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": What does Interpolation Search do when the target is found?", "options": ["It returns the index of the target.", "It returns the value of the target.", "It continues searching.", "It resets the search."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "interpolation-search-mcqs", "topic": "interpolation-search-mcqs", "question": ": Which of the following conditions can make Interpolation Search ineffective?", "options": ["Data being sorted", "Data being uniformly distributed", "Data having many duplicates", "Data being small"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interpolation-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What is the primary purpose of a data structure?", "options": ["To store data", "To organize data", "To retrieve data efficiently", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "Which of the following is a linear data structure?", "options": ["Tree", "Graph", "Array", "Hash Table"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What type of data structure uses a Last In First Out (LIFO) order?", "options": ["Queue", "Stack", "Linked List", "Array"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "Which operation is NOT typically performed on a queue?", "options": ["Enqueue", "Dequeue", "Push", "Peek"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What is the time complexity of accessing an element in an array?", "options": ["O(1)", "O(n)", "O(log n)", "O(n^2)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "Which data structure is used for implementing recursion?", "options": ["Queue", "Stack", "Array", "Linked List"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What is the worst-case time complexity of searching in a binary search tree?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "Which of the following is a non-linear data structure?", "options": ["Array", "Linked List", "Stack", "Tree"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "In which data structure are elements added and removed from the same end?", "options": ["Queue", "Stack", "Deque", "Array"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What is a key characteristic of a doubly linked list?", "options": ["Each node has one pointer", "Nodes can only be traversed forward", "Nodes can be traversed in both directions", "It requires more memory than a singly linked list"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What type of search algorithm uses a divide and conquer approach?", "options": ["Linear Search", "Binary Search", "Breadth-First Search", "Depth-First Search"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "Which data structure is best suited for implementing a priority queue?", "options": ["Array", "Linked List", "Heap", "Stack"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What is the main advantage of using a hash table?", "options": ["Fast search times", "Ordered data", "Less memory usage", "Easy implementation"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "Which of the following traversals is not applicable to a binary tree?", "options": ["Inorder", "Preorder", "Postorder", "Level-order"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What is the average-case time complexity for inserting an element in a hash table?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "Which data structure is used to implement recursion?", "options": ["Queue", "Stack", "Array", "Tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What is a common application of a graph data structure?", "options": ["Representing hierarchical data", "Storing data in tables", "Network routing", "Managing tasks in a to-do list"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "Which of the following is a characteristic of a circular linked list?", "options": ["The last node points to NULL", "It can be traversed in one direction only", "The last node points to the first node", "It has a fixed size"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What is the primary disadvantage of using a linked list compared to an array?", "options": ["Memory overhead", "Easier insertion", "Better performance", "Faster access time"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "Which data structure is used for breadth-first traversal?", "options": ["Stack", "Queue", "Array", "Linked List"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What is the time complexity for searching an element in a balanced binary search tree?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "Which of the following data structures is used to implement a backtracking algorithm?", "options": ["Stack", "Queue", "Hash Table", "Tree"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "In a binary search tree, which of the following is true about the left and right subtrees?", "options": ["The left subtree contains only nodes with values greater than the root", "The right subtree contains only nodes with values less than the root", "The left subtree contains only nodes with values less than the root", "The right subtree contains only nodes with values greater than the root"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "Which of the following is NOT a valid operation for a stack?", "options": ["Push", "Pop", "Enqueue", "Peek"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What is the time complexity of deleting an element from a singly linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "Which data structure allows for the insertion and deletion of elements from both ends?", "options": ["Stack", "Queue", "Deque", "Linked List"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What is the primary use of a trie data structure?", "options": ["Implementing a priority queue", "Storing strings", "Performing quick searches", "Storing integers"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "In which data structure is the first element to be inserted the first one to be removed?", "options": ["Stack", "Queue", "Array", "Linked List"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What is the main characteristic of a red-black tree?", "options": ["Every node is red", "It is always balanced", "It has a maximum height of 2 log(n)", "It is a complete binary tree"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "Which of the following is NOT a valid tree traversal method?", "options": ["Inorder", "Preorder", "Postorder", "Crossorder"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What is the worst-case time complexity for inserting an element into a hash table?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "Which of the following data structures is used to implement a priority queue?", "options": ["Array", "Stack", "Binary Heap", "Linked List"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What type of data structure is a binary tree?", "options": ["Linear", "Non-linear", "Hash-based", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "Which of the following is true about a binary search tree?", "options": ["All nodes are filled from left to right", "Each node has at most two children", "The left child is always smaller than the parent", "Both B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What is the main disadvantage of a hash table?", "options": ["It is slow", "It uses more memory", "It has poor average-case time complexity", "It is not flexible"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "Which data structure is best suited for implementing an undo feature in applications?", "options": ["Stack", "Queue", "Linked List", "Array"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What is the purpose of a sentinel node in a linked list?", "options": ["To mark the end of the list", "To simplify insertion and deletion", "To hold the value of the list", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "Which of the following is a property of a B-tree?", "options": ["It is a binary tree", "It is balanced", "It allows for faster searches than a binary search tree", "Both B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Structures Mcqs", "question": "What is the main advantage of using an array over a linked list?", "options": ["Dynamic sizing", "Ease of implementation", "Better memory locality", "Flexibility"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-structures-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What is the primary purpose of a Minimum Spanning Tree (MST)?", "options": ["To find the longest path in a graph", "To connect all vertices with the minimum total edge weight", "To find the shortest path between two vertices", "To detect cycles in a graph"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "Which algorithm is based on the greedy method and uses edge weights?", "options": ["Dijkstra’s algorithm", "Bellman-Ford algorithm", "Kruskal’s algorithm", "Floyd-Warshall algorithm"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What is the key data structure used in Kruskal’s algorithm to manage sets of vertices?", "options": ["Array", "Stack", "Priority queue", "Disjoint-set (Union-Find)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "In Prim’s algorithm, which data structure is typically used to select the next vertex?", "options": ["Stack", "Queue", "Priority queue", "Array"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What is the time complexity of Kruskal’s algorithm using a union-find structure?", "options": ["O(E log E)", "O(V + E)", "O(E + V log V)", "O(V²)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What is the time complexity of Prim’s algorithm using a binary heap?", "options": ["O(E)", "O(E + V log V)", "O(V²)", "O(V log V)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What is a key characteristic of Kruskal’s algorithm?", "options": ["It always starts from a specific vertex", "It grows the MST by adding edges one by one", "It considers all vertices at the same time", "It cannot handle disconnected graphs"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "In Prim’s algorithm, how is the next vertex chosen to add to the MST?", "options": ["The vertex with the least number of edges", "The vertex with the minimum edge weight connected to the MST", "The vertex with the maximum edge weight", "The vertex farthest from the current tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "Which algorithm is better for dense graphs?", "options": ["Kruskal’s algorithm", "Prim’s algorithm", "Both are equally efficient", "Neither is efficient for dense graphs"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What happens if there is a cycle formed while adding edges in Kruskal’s algorithm?", "options": ["The cycle is accepted", "The edge causing the cycle is discarded", "The algorithm restarts", "The edge is added anyway"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "Which of the following is true about the Minimum Spanning Tree?", "options": ["It can have cycles", "It includes all vertices", "It can be disconnected", "It must include the heaviest edge"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What is the role of the union operation in Kruskal’s algorithm?", "options": ["To merge two different trees", "To find the shortest path", "To create new edges", "To delete edges"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "Which algorithm can be more efficient when the graph is represented as an adjacency matrix?", "options": ["Kruskal’s algorithm", "Prim’s algorithm", "Both algorithms perform equally", "Neither algorithm is suitable"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What will happen if Kruskal’s algorithm is applied to a graph with only one vertex?", "options": ["It will return an empty tree", "It will return the vertex itself", "It will return an error", "It will form a cycle"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "Which of the following statements is true about Prim’s algorithm?", "options": ["It can start from any vertex", "It requires all edges to be sorted", "It always produces the same MST", "It cannot handle weighted graphs"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What type of graphs can both Kruskal’s and Prim’s algorithms be applied to?", "options": ["Only directed graphs", "Only undirected graphs", "Both directed and undirected graphs", "Only graphs with no cycles"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What is the maximum number of edges in a Minimum Spanning Tree for a graph with V vertices?", "options": ["V", "V-1", "V+1", "2V"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What does the “cut property” of MST state?", "options": ["Any edge can be included in the MST", "The minimum edge crossing any cut must be in the MST", "No edge can be included in the MST", "The cut must include all edges"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "Which of the following is a disadvantage of Prim’s algorithm?", "options": ["It cannot find the MST", "It is slower for sparse graphs", "It requires sorting edges", "It cannot handle negative weights"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "In Kruskal’s algorithm, how are edges sorted?", "options": ["By their vertices", "By their weights", "By their colors", "By their lengths"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What is the primary advantage of using a priority queue in Prim’s algorithm?", "options": ["It makes the algorithm simpler", "It reduces the overall time complexity", "It handles negative weights", "It guarantees a minimum spanning tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What does the term “MST” stand for?", "options": ["Minimum Spanning Tree", "Maximum Spanning Tree", "Minimum Shortest Tree", "Maximum Shortest Tree"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "Which of the following can affect the performance of Kruskal’s algorithm?", "options": ["The number of vertices", "The number of edges", "The weight distribution of edges", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What is the relationship between MST and total edge weight?", "options": ["MST has the maximum total edge weight", "MST has the minimum total edge weight", "MST’s weight is irrelevant", "MST cannot be computed without edge weights"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "Which algorithm is more suitable for finding an MST in a graph with many edges?", "options": ["Kruskal’s algorithm", "Prim’s algorithm", "Both algorithms are equally suitable", "Neither algorithm is suitable"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "How many times can an edge be added in Kruskal’s algorithm?", "options": ["Once", "Multiple times", "As many as needed", "It depends on the graph"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What will be the result if the graph is not connected when applying Kruskal’s algorithm?", "options": ["It will return an empty tree", "It will return a spanning forest", "It will fail", "It will include all vertices"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What is the main function of the find operation in the union-find structure?", "options": ["To add edges", "To find the root of a set", "To sort edges", "To merge two sets"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "Which algorithm would you use if you want to ensure that the MST includes the smallest edge at every step?", "options": ["Dijkstra’s algorithm", "Kruskal’s algorithm", "Prim’s algorithm", "Bellman-Ford algorithm"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What is the result of executing Kruskal’s algorithm on a fully connected graph?", "options": ["It will create a cycle", "It will form a tree", "It will include all vertices without edges", "It cannot be executed"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "How does Prim’s algorithm initially choose edges?", "options": ["By weight", "By random selection", "By input order", "By vertex degree"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "Which of the following statements about the union-find structure is true?", "options": ["It is used to manage a list of vertices", "It keeps track of the connected components", "It can only handle undirected graphs", "It is not necessary for Kruskal’s algorithm"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "minimum-spanning-tree-kruskals-prims-mcqs", "topic": "minimum-spanning-tree-kruskals-prims-mcqs", "question": "What will happen to the minimum spanning tree if an edge with a smaller weight than those already included is found?", "options": ["It is added to the MST", "The algorithm restarts", "It is ignored", "The existing edges are replaced"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/minimum-spanning-tree-kruskals-prims-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": What is traversal in the context of data structures?", "options": ["Adding an element to the data structure", "Removing an element from the data structure", "Accessing and processing each element of the data structure", "Sorting the elements of the data structure"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": Which traversal technique visits the left subtree, then the root, and finally the right subtree in a binary tree?", "options": ["Preorder traversal", "Inorder traversal", "Postorder traversal", "Level order traversal"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": Which traversal method is used in depth-first search (DFS) of a graph?", "options": ["Inorder traversal", "Preorder traversal", "Postorder traversal", "Any of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": In a linked list, which operation requires traversal to reach the desired position?", "options": ["Insertion at the head", "Deletion at the head", "Insertion at the tail", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": What is the time complexity of traversing an array of size n?", "options": ["O(1)", "O(log n)", "O(n)", "O(n^2)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": In an array, what is the time complexity of inserting an element at the end?", "options": ["O(1)", "O(n)", "O(log n)", "O(n^2)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": What is the time complexity of inserting an element at a specific position in an array of size n?", "options": ["O(1)", "O(log n)", "O(n)", "O(n^2)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": In a binary search tree (BST), what is the average time complexity of inserting an element?", "options": ["O(1)", "O(log n)", "O(n)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": In a heap, what is the time complexity of inserting an element?", "options": ["O(1)", "O(log n)", "O(n)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": In an array, what is the time complexity of deleting an element from a specific position?", "options": ["O(1)", "O(log n)", "O(n)", "O(n^2)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": What is the time complexity of deleting an element from the end of an array of size n?", "options": ["O(1)", "O(n)", "O(log n)", "O(n^2)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": In a binary search tree (BST), what is the average time complexity of deleting an element?", "options": ["O(1)", "O(log n)", "O(n)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": What is the time complexity of deleting the root element in a max heap?", "options": ["O(1)", "O(log n)", "O(n)", "O(n^2)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": Which data structure allows insertion, deletion, and traversal in O(1) time complexity?", "options": ["Array", "Singly linked list", "Doubly linked list", "None of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": Which of the following data structures supports O(1) time complexity for both insertion and deletion at the beginning?", "options": ["Array", "Stack", "Queue", "Singly linked list"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": Which traversal method is typically used to display elements of a binary search tree in ascending order?", "options": ["Preorder", "Inorder", "Postorder", "Level order"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": In which data structure does insertion and deletion take O(1) time but traversal takes O(n) time?", "options": ["Stack", "Queue", "Linked list", "Binary search tree"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "operations-traversal-insertion-deletion-mcqs", "topic": "operations-traversal-insertion-deletion-mcqs", "question": ": What is the time complexity of inserting an element in the middle of a linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/operations-traversal-insertion-deletion-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": What is the primary purpose of the Binary Search algorithm?", "options": ["To find the maximum element in an array", "To search for a specific element in a sorted array", "To sort an array", "To merge two arrays"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": What is the time complexity of Binary Search in the worst case?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": Which of the following conditions must be met for Binary Search to work?", "options": ["The array must be unsorted", "The array must be sorted", "The array must contain unique elements", "The array must be in ascending order only"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": What is the best-case time complexity for Binary Search?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": Which algorithm would typically be slower than Binary Search for large datasets?", "options": ["Linear Search", "Quick Sort", "Merge Sort", "Heap Sort"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": How does Binary Search determine the next step in the search process?", "options": ["By dividing the array into halves", "By sorting the array", "By searching in a linear manner", "By checking every element"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": In Binary Search, what happens if the middle element is less than the target?", "options": ["Search continues in the left half", "Search continues in the right half", "Search ends", "An error is thrown"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": What is the space complexity of Binary Search when implemented iteratively?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": What is the main advantage of Binary Search over Linear Search?", "options": ["It requires less memory.", "It works on unsorted arrays.", "It is faster for large datasets.", "It is easier to implement."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": How many comparisons can Binary Search make in the worst case for an array of size n?", "options": ["n", "log n", "n/2", "n^2"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": Which of the following is a disadvantage of Binary Search?", "options": ["Requires a sorted array", "More complex than Linear Search", "Both A and B", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": What is the result of a Binary Search if the target element is found?", "options": ["The index of the element", "The value of the element", "An error message", "The middle index of the array"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": How is the middle index calculated in Binary Search?", "options": ["(low + high) / 2", "(low + high)", "(high – low) / 2", "(low + high + 1) / 2"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": What will Binary Search return if the target element is not found?", "options": ["0", "-1", "The index of the last element", "An error message"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": In which scenario is Binary Search most effective?", "options": ["When the data is unsorted", "When the dataset is small", "When searching in large, sorted datasets", "When looking for multiple occurrences"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": What happens if the array is empty when performing Binary Search?", "options": ["It returns the first index.", "It returns -1.", "It throws an exception.", "It searches indefinitely."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": What type of search does Binary Search use?", "options": ["Iterative", "Recursive", "Both iterative and recursive", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": How does Binary Search perform when dealing with duplicates?", "options": ["It finds the first occurrence only.", "It finds all occurrences.", "It cannot handle duplicates.", "It finds the last occurrence only."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": What is the typical use case for Binary Search?", "options": ["Searching for an element in a large unsorted list", "Searching for an element in a sorted array", "Sorting a list", "Merging two sorted lists"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": Which of the following is true about Binary Search?", "options": ["It can only be implemented recursively.", "It can be implemented with a linked list.", "It requires random access to the array elements.", "It is always faster than Linear Search."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": What is the worst-case scenario for Binary Search?", "options": ["The target is the first element.", "The target is the last element.", "The target is not in the array.", "The target is in the middle."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": What is a practical application of Binary Search?", "options": ["Searching in a phone book", "Finding a book in a library", "Checking availability in an inventory", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": What modification can be made to Binary Search to find the first occurrence of a target?", "options": ["Change the middle calculation.", "Continue searching in the left half even after finding the target.", "Ignore duplicates.", "Start from the end of the array."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": Which of the following is not a prerequisite for Binary Search?", "options": ["The data must be sorted.", "The data must be in an array.", "The data must support random access.", "The data can be of any type."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": What can be concluded about the efficiency of Binary Search compared to Linear Search?", "options": ["Binary Search is always more efficient.", "Binary Search is more efficient for larger datasets.", "Both have the same efficiency.", "Linear Search is more efficient for sorted data."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": How does the performance of Binary Search degrade?", "options": ["With smaller datasets", "With sorted arrays", "With larger datasets", "With unsorted arrays"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": What must be true about the elements in the array for Binary Search to function correctly?", "options": ["They must be unique.", "They must be in ascending order.", "They can be in any order.", "They must be in descending order."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": What is the primary disadvantage of Binary Search?", "options": ["It requires a sorted array.", "It is slower than Linear Search.", "It consumes more memory.", "It can only find unique elements."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Mcqs", "question": ": Which of the following statements about Binary Search is false?", "options": ["It can be implemented recursively.", "It can be used on linked lists.", "It has a logarithmic time complexity.", "It works only on sorted arrays."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": What is the main purpose of the Knuth-Morris-Pratt (KMP) algorithm?", "options": ["To sort an array", "To find a substring within a string", "To merge two sorted arrays", "To compute the longest common subsequence"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": Which of the following best describes the Rabin-Karp algorithm?", "options": ["A linear time pattern matching algorithm", "A brute-force string matching algorithm", "A hashing-based pattern matching algorithm", "A divide-and-conquer algorithm"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": What is the worst-case time complexity of the KMP algorithm?", "options": ["O(n)", "O(m)", "O(n + m)", "O(n * m)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": In the KMP algorithm, what does the “partial match table” help to achieve?", "options": ["To optimize the search time", "To store hash values of the pattern", "To keep track of the indices of matches", "To sort the input strings"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": What is the main advantage of using the Rabin-Karp algorithm?", "options": ["Simplicity of implementation", "Use of a single hash function for all comparisons", "Constant time complexity", "Works better with small alphabets"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": Which of the following is true about the Rabin-Karp algorithm?", "options": ["It can only match fixed-length patterns", "It uses rolling hash for efficiency", "It has no risk of hash collisions", "It is not suitable for large texts"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": What is the space complexity of the KMP algorithm?", "options": ["O(1)", "O(n)", "O(m)", "O(n + m)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": What is a hash collision in the context of the Rabin-Karp algorithm?", "options": ["When two different patterns produce the same hash value", "When the search time increases", "When the algorithm fails to find a match", "When the input strings are too long"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": Which of the following algorithms guarantees a worst-case linear time complexity?", "options": ["Brute-force string matching", "KMP algorithm", "Rabin-Karp algorithm", "Naive string matching"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": How does the KMP algorithm avoid unnecessary comparisons?", "options": ["By hashing the pattern", "By using a queue", "By utilizing the partial match table", "By sorting the pattern"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": In Rabin-Karp, how is the new hash value computed from the previous hash value?", "options": ["By incrementing the previous value", "By adding the new character’s value", "By using a rolling hash technique", "By hashing the entire substring again"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": What is the main disadvantage of the Rabin-Karp algorithm?", "options": ["High space complexity", "Difficulty in handling long patterns", "Possibility of hash collisions", "Lack of optimization for small alphabets"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": Which of the following is a key feature of the KMP algorithm?", "options": ["It only works with lowercase letters", "It preprocesses the pattern before searching", "It requires additional memory for the text", "It can only be used for fixed-length patterns"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": In the context of the KMP algorithm, what does the term “backtracking” refer to?", "options": ["Moving back to a previous character", "Using previously computed information to skip unnecessary comparisons", "Resetting the entire search process", "Repeating the search for the entire text"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": What is the time complexity of the Rabin-Karp algorithm in the average case?", "options": ["O(n)", "O(n * m)", "O(n + m)", "O(m)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": Which pattern matching algorithm is more efficient for multiple pattern matching?", "options": ["KMP", "Rabin-Karp", "Naive string matching", "Boyer-Moore"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": What type of algorithm is KMP classified as?", "options": ["Brute force", "Greedy", "Dynamic programming", "String matching"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": What is the length of the partial match table in KMP?", "options": ["Equal to the length of the text", "Equal to the length of the pattern", "Twice the length of the pattern", "Variable depending on input"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": Which of the following statements is true regarding the rolling hash in Rabin-Karp?", "options": ["It calculates a hash value from scratch each time", "It allows quick re-calculation of hash values for overlapping substrings", "It is not suitable for dynamic patterns", "It requires additional libraries to implement"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": In KMP, when a mismatch occurs after some matches, what does the algorithm utilize?", "options": ["A new search", "The length of the longest prefix which is also a suffix", "A different pattern", "A random character"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": What is the primary goal of pattern matching algorithms?", "options": ["To sort data", "To find occurrences of a substring within a larger string", "To manipulate string data", "To encode data efficiently"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": Which algorithm would likely perform better on very large texts with many potential matches?", "options": ["KMP", "Rabin-Karp", "Naive search", "Boyer-Moore"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": How is the hash function chosen in the Rabin-Karp algorithm?", "options": ["It must be a prime number", "It can be any arbitrary function", "It is predefined in the algorithm", "It is a constant value"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": What happens if a hash collision occurs in Rabin-Karp?", "options": ["The algorithm stops", "The algorithm re-calculates the hash", "The algorithm verifies characters to check for a match", "The hash value is discarded"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": In the KMP algorithm, how are the values in the partial match table calculated?", "options": ["Randomly", "Based on the text", "From the pattern itself", "By a brute-force comparison"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": What does the term “substring” refer to in string algorithms?", "options": ["A larger string containing another", "A sequence of characters within a string", "A fixed-length segment of memory", "A collection of characters"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": Which of the following is a benefit of using KMP over brute-force methods?", "options": ["It requires less memory", "It avoids unnecessary comparisons", "It is simpler to understand", "It can only be used for fixed-length patterns"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": How does Rabin-Karp handle varying pattern lengths?", "options": ["It only works for fixed lengths", "It computes different hash functions", "It adjusts the hash value dynamically", "It cannot handle varying lengths"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": What is the primary drawback of KMP in practical applications?", "options": ["High space complexity", "Slow performance on small texts", "Complexity of implementation", "Inefficiency in multiple pattern searches"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": Which of the following scenarios is most suitable for the Rabin-Karp algorithm?", "options": ["Searching for a single short pattern", "Searching for multiple patterns simultaneously", "Sorting a list of strings", "Reversing a string"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "pattern-matching-kmp-rabin-karp-mcqs", "topic": "pattern-matching-kmp-rabin-karp-mcqs", "question": ": What is the typical use case for the KMP algorithm?", "options": ["Sorting data", "Searching for a single substring in a long text", "Encrypting data", "Compressing strings"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pattern-matching-kmp-rabin-karp-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": What is a Binary Search Tree (BST)?", "options": ["A tree where each node has exactly one child", "A tree where each node has at most two children", "A tree where the left subtree is greater than the root and the right subtree is less than the root", "A tree where the left subtree is less than the root and the right subtree is greater than the root"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": Which property of Binary Search Trees allows for efficient searching, insertion, and deletion operations?", "options": ["Complete binary structure", "Balanced height", "Symmetric nodes", "Binary search property"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": What is the time complexity of searching for an element in a Binary Search Tree (BST) with n nodes, assuming the tree is balanced?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": Which traversal of a Binary Search Tree (BST) visits nodes in non-decreasing order?", "options": ["Preorder", "Inorder", "Postorder", "Level order"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": In a Binary Search Tree (BST), which operation is used to find the minimum element?", "options": ["minElement()", "findMin()", "getMinimum()", "minimum()"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": What is the worst-case time complexity of inserting an element into a Binary Search Tree (BST) of height h?", "options": ["O(1)", "O(h)", "O(log h)", "O(n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": Which traversal of a Binary Search Tree (BST) starts from the root, visits the left subtree, and then visits the right subtree?", "options": ["Preorder", "Inorder", "Postorder", "Level order"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": Which of the following statements is true about all Binary Search Trees (BST)?", "options": ["They are complete binary trees", "They have symmetric nodes", "They have a unique binary search property", "They have nodes arranged in a specific order"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": Which operation of a Binary Search Tree (BST) deletes a node with two children?", "options": ["deleteNode()", "remove()", "erase()", "delete()"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": In a Binary Search Tree (BST), which operation is used to find the successor of a given node?", "options": ["findSuccessor()", "successor()", "next()", "nextNode()"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": Which of the following operations requires the worst-case time complexity in a Binary Search Tree (BST)?", "options": ["Searching", "Insertion", "Deletion", "Traversal"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": Which traversal of a Binary Search Tree (BST) visits nodes in descending order of their values?", "options": ["Preorder", "Inorder", "Postorder", "Reverse Inorder"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": In a Binary Search Tree (BST), what is the height of a tree with n nodes in the worst case?", "options": ["log n", "n", "n", "n log n"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": Which traversal of a Binary Search Tree (BST) can be used to print the elements in sorted order?", "options": ["Preorder", "Inorder", "Postorder", "Level order"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": Which operation of a Binary Search Tree (BST) returns the maximum element?", "options": ["maxElement()", "findMax()", "getMaximum()", "maximum()"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": Which of the following is NOT a valid property of Binary Search Trees (BST)?", "options": ["All nodes in the left subtree are less than the root", "All nodes in the right subtree are greater than the root", "There can be duplicate nodes", "Inorder traversal visits nodes in non-decreasing order"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": Which traversal of a Binary Search Tree (BST) visits nodes level by level?", "options": ["Preorder", "Inorder", "Postorder", "Level order"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Binary Search Trees Bst Mcqs", "question": ": Which of the following statements is true about Binary Search Trees (BST)?", "options": ["They can have nodes with only one child", "They have nodes arranged in a specific order", "They require nodes to be symmetric", "They support only recursive operations"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/binary-search-trees-bst-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What is the primary purpose of memory management in data structures?", "options": ["To store data permanently", "To efficiently allocate and deallocate memory", "To increase processing speed", "To compress data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": Which of the following is a type of memory allocation?", "options": ["Static allocation", "Dynamic allocation", "Both A and B", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What is static memory allocation?", "options": ["Memory is allocated at runtime", "Memory is allocated at compile time", "Memory is allocated using pointers", "Memory is allocated in heap"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What happens if memory allocated using malloc() is not freed?", "options": ["Memory leak occurs", "The program runs faster", "No effect", "The program terminates"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": Which function is used to deallocate memory in C?", "options": ["free()", "delete", "release()", "dealloc()"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": Which of the following is a disadvantage of dynamic memory allocation?", "options": ["Flexibility", "Fragmentation", "Easy to implement", "Efficient memory usage"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What is fragmentation in memory management?", "options": ["Allocation of memory in large blocks", "Inefficient use of memory due to allocation and deallocation", "Memory being accessed by multiple programs", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What is the purpose of the ‘sizeof’ operator in C/C++?", "options": ["To determine the size of a variable in bytes", "To allocate memory dynamically", "To free allocated memory", "To copy data from one variable to another"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What type of memory allocation does the ‘new’ keyword perform in C++?", "options": ["Static allocation", "Dynamic allocation", "Stack allocation", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": Which operator is used to deallocate memory allocated with ‘new’ in C++?", "options": ["delete", "free", "dealloc", "release"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What can cause a dangling pointer?", "options": ["Allocating memory correctly", "Freeing memory that is still in use", "Using static memory", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": Which of the following methods can help prevent memory leaks?", "options": ["Using static memory only", "Properly freeing all allocated memory", "Allocating large chunks of memory", "Using global variables"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": In which scenario would you prefer dynamic memory allocation?", "options": ["When the size of data is known at compile time", "When data size may vary during execution", "When you want to optimize execution time", "When you want to minimize memory usage"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": Which of the following is NOT a memory management technique?", "options": ["Paging", "Segmentation", "Compiling", "Fragmentation"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What is a memory pool?", "options": ["A single large block of memory", "A collection of fixed-size memory blocks", "A way to allocate stack memory", "A method to sort memory addresses"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What is the purpose of garbage collection?", "options": ["To improve program execution speed", "To automatically free unused memory", "To allocate more memory", "To manage static memory"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What is the impact of not managing memory properly in a program?", "options": ["Increased performance", "Reduced memory consumption", "Crashes and unpredictable behavior", "Simplified code structure"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": In what situation would stack memory be preferred over heap memory?", "options": ["When the size of data is unknown", "When data needs to be persistent", "When speed is critical and size is fixed", "When data needs to be shared"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": Which of the following is a common method to detect memory leaks?", "options": ["Code reviews", "Memory profiling tools", "Reducing the number of variables", "Using static memory"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What does the term ‘stack overflow’ refer to?", "options": ["Excessive allocation of heap memory", "The stack exceeding its size limit", "Memory being allocated incorrectly", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What is a sentinel value in memory management?", "options": ["A value that indicates the end of a data structure", "A type of memory allocation", "A pointer to a memory address", "A method of freeing memory"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What is the primary function of the operating system in memory management?", "options": ["To allocate memory to running programs", "To compile programs", "To monitor program execution", "To free unused memory"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": How does segmentation differ from paging?", "options": ["Segmentation is based on variable-size blocks, while paging is fixed-size", "Segmentation is faster than paging", "Paging uses less memory than segmentation", "There is no difference"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What is ‘thrashing’ in the context of memory management?", "options": ["Excessive swapping of data between memory and disk", "An efficient use of memory", "An increase in memory speed", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What is an object in memory management?", "options": ["A pointer to a memory address", "A block of memory that has a specific type", "A variable", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What is the main disadvantage of static memory allocation?", "options": ["It is faster", "It is less flexible", "It requires more coding", "It is not portable"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": Which of the following best describes a heap?", "options": ["A specific area of memory used for stack allocation", "A memory area for dynamic allocation", "A method of memory management", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What are memory addresses?", "options": ["Locations in the CPU", "Locations in the RAM", "The speed of memory", "The data types of variables"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": How can memory fragmentation be reduced?", "options": ["By using dynamic allocation only", "By using fixed-size memory blocks", "By allocating all memory at once", "By increasing memory size"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What does a pointer represent in memory management?", "options": ["A variable", "An address in memory", "A type of allocation", "A memory error"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memory Management In Data Structures Mcqs", "question": ": What type of memory is automatically managed by the compiler?", "options": ["Heap memory", "Stack memory", "Global memory", "Static memory"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memory-management-in-data-structures-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the time complexity of accessing an element in an array by index?", "options": ["O(n)", "O(log n)", "O(1)", "O(n²)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the time complexity of inserting an element at the beginning of a linked list?", "options": ["O(n)", "O(log n)", "O(1)", "O(n²)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the best-case time complexity of quicksort?", "options": ["O(n)", "O(n log n)", "O(n²)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the worst-case time complexity of quicksort?", "options": ["O(n log n)", "O(n)", "O(n²)", "O(log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the time complexity of searching for an element in a balanced binary search tree (BST)?", "options": ["O(n)", "O(log n)", "O(1)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the time complexity of merging two sorted arrays of size n?", "options": ["O(n log n)", "O(n)", "O(log n)", "O(n²)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the time complexity of deleting an element from a linked list given a pointer to that element?", "options": ["O(1)", "O(n)", "O(log n)", "O(n²)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the average-case time complexity of binary search?", "options": ["O(n)", "O(log n)", "O(1)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the time complexity of finding the maximum element in an unsorted array?", "options": ["O(n log n)", "O(n)", "O(log n)", "O(1)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the time complexity of the bubble sort algorithm in the worst case?", "options": ["O(n)", "O(n log n)", "O(n²)", "O(log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the time complexity of inserting an element into a max-heap?", "options": ["O(n)", "O(log n)", "O(1)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the time complexity of deleting the minimum element from a min-heap?", "options": ["O(n)", "O(log n)", "O(1)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the time complexity of traversing a binary tree?", "options": ["O(n log n)", "O(n)", "O(log n)", "O(n²)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the time complexity of the merge sort algorithm?", "options": ["O(n log n)", "O(n)", "O(log n)", "O(n²)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the time complexity of the selection sort algorithm?", "options": ["O(n log n)", "O(n)", "O(log n)", "O(n²)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the time complexity of searching for an element in an unbalanced binary search tree (BST)?", "options": ["O(n)", "O(log n)", "O(1)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the time complexity of checking if an element exists in a hash table with n elements?", "options": ["O(n)", "O(log n)", "O(1)", "O(n²)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the time complexity of the insertion sort algorithm in the best case?", "options": ["O(n log n)", "O(n)", "O(log n)", "O(n²)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the time complexity of deleting an element from an array, given its index?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "time-complexity-mcqs", "topic": "time-complexity-mcqs", "question": "What is the time complexity of the Fibonacci sequence using dynamic programming?", "options": ["O(n)", "O(log n)", "O(1)", "O(n²)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-mcqs/"}
{"subject": "quick-sort-mcqs", "topic": "quick-sort-mcqs", "question": "What is the primary purpose of Quick Sort?", "options": ["To search for an element", "To sort an array", "To merge two arrays", "To partition data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/quick-sort-mcqs/"}
{"subject": "quick-sort-mcqs", "topic": "quick-sort-mcqs", "question": "What is the average-case time complexity of Quick Sort?", "options": ["O(n)", "O(n log n)", "O(n²)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/quick-sort-mcqs/"}
{"subject": "quick-sort-mcqs", "topic": "quick-sort-mcqs", "question": "What is the worst-case time complexity of Quick Sort?", "options": ["O(n)", "O(n log n)", "O(n²)", "O(log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/quick-sort-mcqs/"}
{"subject": "quick-sort-mcqs", "topic": "quick-sort-mcqs", "question": "Which of the following is a common method for choosing a pivot in Quick Sort?", "options": ["First element", "Last element", "Median of three", "Random element"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/quick-sort-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": What is a B-tree?", "options": ["A balanced search tree with multiple keys per node", "A binary search tree", "A tree with only two children per node", "A linear data structure"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": What is the main purpose of B-trees?", "options": ["To perform in-memory sorting", "To provide efficient access to disk-based data", "To store data in a linear fashion", "To represent hierarchical data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": What property defines a B-tree?", "options": ["All leaf nodes are at the same level", "Each node has at most two children", "All keys are stored in the leaf nodes", "The tree is unbalanced"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": In a B-tree, what is the maximum number of children a node can have?", "options": ["2", "m (where m is the order of the tree)", "3", "4"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": What is a B+ tree?", "options": ["A variation of a B-tree that stores data only in leaf nodes", "A binary search tree", "A tree where each internal node can store only one key", "A tree with only one child per node"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": How are B-trees and B+ trees different in terms of storage?", "options": ["B-trees store keys in all nodes, while B+ trees store keys only in leaves", "B+ trees can have fewer keys than B-trees", "B-trees do not allow duplicate keys, while B+ trees do", "B+ trees are always deeper than B-trees"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": What is the height of a B-tree with a large number of keys?", "options": ["Very high", "Constant", "Logarithmic", "Linear"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": What happens to a B-tree when it becomes full?", "options": ["It cannot store any more data", "A new level is created", "It merges with a sibling", "It converts to a binary tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": Which of the following operations is more efficient in a B+ tree compared to a B-tree?", "options": ["Searching", "Insertion", "Deletion", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": What is the minimum degree of a B-tree?", "options": ["1", "2", "3", "m/2, where m is the order of the tree"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": How does a B+ tree ensure that all leaf nodes are at the same level?", "options": ["By balancing during insertion", "By allowing only one key in internal nodes", "By deleting excess nodes", "By not allowing duplicates"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": What is a significant advantage of B+ trees over B-trees?", "options": ["More efficient use of disk space", "Faster search times due to linked leaves", "Simplicity in implementation", "Fewer nodes needed"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": In a B-tree, how are keys organized within a node?", "options": ["In random order", "In a circular manner", "In sorted order", "In reverse order"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": What does the “order” of a B-tree refer to?", "options": ["The number of keys in each node", "The maximum number of children each node can have", "The total number of nodes", "The height of the tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": Which operation can cause a B-tree to split?", "options": ["Searching", "Inserting a key into a full node", "Deleting a key", "Balancing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": How is data retrieved from a B+ tree?", "options": ["By searching the internal nodes only", "By traversing leaf nodes in a linked manner", "By searching all nodes", "By using a binary search"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": What is the maximum number of keys in a B-tree node with order m?", "options": ["m", "m – 1", "m + 1", "2m"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": Which type of tree is best suited for databases?", "options": ["Binary trees", "B-trees and B+ trees", "AVL trees", "Red-black trees"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": In a B+ tree, how are the leaf nodes linked?", "options": ["Randomly", "By pointers", "By their parent nodes", "There is no linking"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "b-trees-and-b-trees-mcqs", "topic": "b-trees-and-b-trees-mcqs", "question": ": Which operation is typically faster in a B+ tree compared to a B-tree?", "options": ["Insertion", "Deletion", "Searching for a range of values", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/b-trees-and-b-trees-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". Which deletion can be insertion take place only at the other end (rear) and done from one end (front)?", "options": ["Linked list", "Stack", "Tree", "Queue"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". For Breadth-First Traversal on a graph, which data structure is required?", "options": ["Stack", "Queue", "Array", "Tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". Queue follows __________", "options": ["FIFO (First In First Out) principle", "LIFO (Last In First Out) principle", "Linear tree", "Ordered array"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". Circular Queue is also called ________", "options": ["Square Buffer", "Ring Buffer", "Rectangle Buffer", "Curve Buffer"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". In what order will they be removed if the elements “A”, “B”, “C” and “D” are placed in a queue and are deleted one at a time?", "options": ["ABCD", "DCAB", "DCBA", "ABDC"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". Which elements are not in the middle but can be inserted or deleted at/from both ends?", "options": ["Circular queue", "Priority queue", "Queue", "DE queue"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". If implemented using an array of size MAX_SIZE, a queue gets full when", "options": ["Front = (rear + 1) mod MAX_SIZE", "Front = rear + 1", "Rear = MAX_SIZE – 1", "Rear = front"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". Major role of a queue server is in ______________", "options": ["Simulation of heapsort", "Simulation of arbitrary linked list", "Simulation of limited resource allocation", "Simulation of recursion"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". Which is not a type of queue?", "options": ["Single ended queue", "Ordinary queue", "Circular queue", "Priority queue"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". ……… form of access is used to add and remove nodes from a queue.", "options": ["LIFO, Last In First Out", "FIFO, First In First Out", "Both A and B", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". Which field holds the elements of the stack?", "options": ["INFO", "TOP", "LINK", "NULL"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". Which form of access is used to add/remove nodes from a stack?", "options": ["LIFO", "FIFO", "Both A and B", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". Which pointer behaves as the top pointer variable of the stack?", "options": ["Stop pointer", "Begin pointer", "Avail pointer", "Start pointer"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". ……… of the queue adds a new node.", "options": ["Front", "Middle", "Back", "Both A and B"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". A null pointer of the last node in the list signals ………", "options": ["Beginning of the stack", "Bottom of the stack", "Middle of the stack", "In between some value"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". The queue is a ………", "options": ["FIFO", "LIFO", "LOFI", "FILO"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". Which name does not relate to stacks?", "options": ["FIFO lists", "LIFO lists", "Push down lists", "Piles"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Queues Mcqs Questions Answers Data Structures", "question": ". Operation for retrieval of items in a stack is ……………", "options": ["Access", "Pop", "Retrieval", "Push"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/queues-mcqs-questions-answers-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": What is the primary goal of sorting algorithms?", "options": ["To compress data", "To organize data in a specific order", "To search for elements", "To encrypt data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": Which sorting algorithm has the best average-case time complexity?", "options": ["Bubble Sort", "Quick Sort", "Insertion Sort", "Selection Sort"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": Which sorting algorithm is based on the divide-and-conquer strategy?", "options": ["Selection Sort", "Merge Sort", "Insertion Sort", "Heap Sort"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": In which sorting algorithm is the largest element repeatedly swapped to the end of the list?", "options": ["Selection Sort", "Insertion Sort", "Quick Sort", "Bubble Sort"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": What is the time complexity of Merge Sort in the worst case?", "options": ["O(n)", "O(n log n)", "O(n²)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": Which sorting algorithm is generally the fastest for large datasets?", "options": ["Insertion Sort", "Merge Sort", "Quick Sort", "Bubble Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": What is the primary disadvantage of using Selection Sort?", "options": ["High memory usage", "Poor performance on large lists", "Complexity of implementation", "It is unstable"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": Which sorting algorithm maintains the relative order of equal elements?", "options": ["Quick Sort", "Selection Sort", "Merge Sort", "Heap Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": What is the space complexity of Merge Sort?", "options": ["O(1)", "O(n)", "O(n log n)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": In which algorithm does the pivot element play a critical role?", "options": ["Bubble Sort", "Quick Sort", "Selection Sort", "Merge Sort"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": Which sorting algorithm is the most efficient for nearly sorted data?", "options": ["Quick Sort", "Bubble Sort", "Insertion Sort", "Heap Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": What is the average-case time complexity of Insertion Sort?", "options": ["O(n log n)", "O(n²)", "O(n)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": Which of the following sorting algorithms is in-place?", "options": ["Merge Sort", "Quick Sort", "Bubble Sort", "All of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": What type of sorting algorithm is Heap Sort?", "options": ["Comparison-based", "Non-comparison-based", "Stable", "Adaptive"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": In Quick Sort, what is the role of the pivot?", "options": ["To partition the array", "To sort the array", "To merge two arrays", "To perform linear searches"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": What is the best-case time complexity of Insertion Sort?", "options": ["O(n²)", "O(n log n)", "O(n)", "O(log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": Which sorting algorithm is characterized by dividing the array into subarrays and sorting them independently?", "options": ["Quick Sort", "Merge Sort", "Bubble Sort", "Selection Sort"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": What is the primary advantage of Heap Sort?", "options": ["It is stable", "It uses less memory", "It is an in-place algorithm", "It is easy to implement"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": Which algorithm is not a comparison-based sorting algorithm?", "options": ["Radix Sort", "Quick Sort", "Merge Sort", "Bubble Sort"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": In which scenario is Selection Sort most efficient?", "options": ["When the dataset is small", "When the dataset is large", "When the dataset is mostly sorted", "When the dataset contains many duplicates"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": What is the worst-case time complexity of Quick Sort?", "options": ["O(n log n)", "O(n²)", "O(n)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": Which sorting algorithm is known for its simplicity and ease of implementation?", "options": ["Merge Sort", "Quick Sort", "Bubble Sort", "Heap Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": What is the time complexity of Counting Sort?", "options": ["O(n²)", "O(n log n)", "O(n)", "O(log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": Which algorithm is not stable?", "options": ["Insertion Sort", "Merge Sort", "Quick Sort", "Bubble Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": What is the main disadvantage of Bubble Sort?", "options": ["It is difficult to implement", "It has a high time complexity", "It requires extra memory", "It is not stable"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": What type of data does Radix Sort operate on?", "options": ["Integer data", "Character data", "Floating-point data", "All of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": Which sorting algorithm divides the data into buckets and sorts them individually?", "options": ["Radix Sort", "Merge Sort", "Heap Sort", "Quick Sort"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": In which sorting algorithm is the data divided into halves recursively?", "options": ["Insertion Sort", "Quick Sort", "Merge Sort", "Selection Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": What is the key advantage of Merge Sort over Quick Sort?", "options": ["Faster execution time", "Lower space complexity", "It is always stable", "It has a better average-case performance"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": Which sorting algorithm repeatedly selects the smallest element from an unsorted portion?", "options": ["Bubble Sort", "Insertion Sort", "Selection Sort", "Quick Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": What is the time complexity of Shell Sort?", "options": ["O(n log n)", "O(n²)", "O(n^(3/2))", "O(log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": Which of the following is a characteristic of Heap Sort?", "options": ["It is not an in-place algorithm", "It is stable", "It uses a binary heap data structure", "It is based on the divide-and-conquer strategy"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": What is the primary purpose of the partitioning step in Quick Sort?", "options": ["To combine sorted arrays", "To rearrange elements around a pivot", "To select the next pivot", "To merge two halves"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": Which of the following algorithms has a time complexity of O(n²) in the worst case?", "options": ["Merge Sort", "Heap Sort", "Quick Sort", "Selection Sort"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": What is the primary advantage of using Counting Sort?", "options": ["It works on any data type", "It is a non-comparison-based algorithm", "It is stable", "It has low memory requirements"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": In which sorting algorithm does the input size significantly affect the time complexity?", "options": ["Merge Sort", "Quick Sort", "Insertion Sort", "Bubble Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting Algorithms Mcqs", "question": ": Which sorting algorithm is best suited for sorting linked lists?", "options": ["Merge Sort", "Quick Sort", "Bubble Sort", "Heap Sort"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sorting-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": What is a stack in data structures?", "options": ["A data structure that allows random access", "A data structure that follows LIFO (Last In, First Out) principle", "A data structure that allows traversal from both ends", "A data structure that requires sorting before access"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": Which operation adds an element to the top of the stack?", "options": ["Pop", "Peek", "Push", "Insert"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": What happens when you pop an element from an empty stack?", "options": ["Stack becomes undefined", "Stack becomes null", "An error occurs", "Nothing happens"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": What is the time complexity of the push operation in a stack implemented using an array with sufficient capacity?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": Which operation removes and returns the top element of the stack?", "options": ["Push", "Pop", "Peek", "Remove"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": What is the time complexity of the pop operation in a stack implemented using a linked list?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": Which operation returns the top element of the stack without removing it? (A) Push", "options": ["Pop", "Peek", "Top", "Peek"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": What happens when you peek an element from an empty stack?", "options": ["Stack becomes undefined", "Stack becomes null", "An error occurs", "Nothing happens"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": What is the time complexity of the peek operation in a stack?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": Which of the following statements is true about stack operations?", "options": ["Push and pop can be performed simultaneously", "Pop removes the bottom element of the stack", "Peek changes the stack size", "Push can be performed only once"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": Which data structure is commonly used to implement a stack?", "options": ["Queue", "Array", "Linked list", "Tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": In a stack, which operation modifies the size of the stack?", "options": ["Push", "Pop", "Peek", "None of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": What happens if you try to push an element onto a full stack (using an array implementation)? (A) The element is added at the top", "options": ["Stack becomes undefined", "An error occurs", "Nothing happens", "An error occurs"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": Which operation is used to check if a stack is empty?", "options": ["isEmpty", "isFull", "size", "length"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": What is the space complexity of a stack operation?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": Which of the following statements is true about the stack data structure? (A) It allows elements to be accessed randomly", "options": ["It follows FIFO (First In, First Out) principle", "It is used for breadth-first search algorithms", "It is used for depth-first search algorithms", "It is used for depth-first search algorithms"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": What is the primary limitation of using an array to implement a stack? (A) Limited capacity", "options": ["Slow access time", "Inefficient insertion and deletion", "Inability to perform push operation", "Limited capacity"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": Which stack operation is responsible for decreasing the size of the stack? (A) Push", "options": ["Pop", "Peek", "None of the above", "Pop"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": Which stack operation can be used to reverse the order of elements?", "options": ["Push", "Pop", "Peek", "None of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Stack Operations Push Pop Peek Mcqs", "question": ": In stack operations, what does the term “top” refer to?", "options": ["The element at the bottom of the stack", "The size of the stack", "The element at the top of the stack", "The middle element of the stack"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/stack-operations-push-pop-peek-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Science Test Mcqs Data Structures", "question": ". The main measure of the efficiency of the algorithm", "options": ["Process and memory", "Time and space", "Date and space", "Complexity and capacity"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/computer-science-test-mcqs-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Science Test Mcqs Data Structures", "question": ". Big-oh allows the possibility the growth rates are the", "options": ["Different", "Same", "Greater", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/computer-science-test-mcqs-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Science Test Mcqs Data Structures", "question": ". Which symbol tells us logarithms grow very slowly?", "options": ["logkN = O(N)", "Log(N)", "Log₂(N)", "Nlog(N)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/computer-science-test-mcqs-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Science Test Mcqs Data Structures", "question": ". The relative growth rates of two functions f(N) and g(N) by limₙ→0 f(N)/g(N) then", "options": ["f(N) = o(g(N))", "f(N) + o(g(N))", "g(N) = o(f(N))", "g(N) = o(f(N))"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-science-test-mcqs-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Science Test Mcqs Data Structures", "question": ". If M > N then M mod N", "options": ["N < M/2", "N ≥ M/2", "N ≤ M/2", "N > M/2"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/computer-science-test-mcqs-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Science Test Mcqs Data Structures", "question": ". An online algorithm that runs in", "options": ["Binary search", "Fraction time", "Bubble search", "Linear search"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/computer-science-test-mcqs-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Science Test Mcqs Data Structures", "question": ". In maximum subsequence, the input size is N = 100,000 then O(N³)", "options": ["3.33", "86.67", "N/A", "0.03332"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-science-test-mcqs-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Science Test Mcqs Data Structures", "question": ". N² symbol is", "options": ["Quadratic", "Cubic", "Linear", "Constant"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/computer-science-test-mcqs-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Science Test Mcqs Data Structures", "question": ". log₂N symbol is", "options": ["Logarithm", "Long-square", "Exponent", "Linear"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/computer-science-test-mcqs-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Science Test Mcqs Data Structures", "question": ". Euclid’s algorithm is used for computing the", "options": ["The complexity of bubble sort", "Time complexity", "Common divisor", "The complexity of the binary search"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-science-test-mcqs-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Science Test Mcqs Data Structures", "question": ". The complexity of linear search algorithm", "options": ["C(n)", "O(log n)", "O(n²)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/computer-science-test-mcqs-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Science Test Mcqs Data Structures", "question": ". The complexity of bubble sort algorithm", "options": ["O(n)", "O(log n)", "O(n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/computer-science-test-mcqs-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Science Test Mcqs Data Structures", "question": ". The complexity of merge sort algorithm", "options": ["O(n)", "O(log n)", "O(n²)", "O(n log n)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/computer-science-test-mcqs-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Science Test Mcqs Data Structures", "question": ". Which of the following case does not exist in complexity theory?", "options": ["Best case", "Worst case", "Average case", "Null case"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/computer-science-test-mcqs-data-structures/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": What is a circular linked list?", "options": ["A list where each node points to the next node", "A list where each node points to the previous node", "A list where the last node points back to the first node", "A list where nodes are linked in a non-linear order"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": What is the key difference between a circular linked list and a singly linked list?", "options": ["A circular linked list has nodes pointing to both the next and previous nodes", "A circular linked list has the last node pointing to the first node", "A singly linked list allows traversal in both directions", "A singly linked list has nodes linked in a non-linear order"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": What is the time complexity of inserting an element at the beginning of a circular linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": Which of the following operations requires traversal in a circular linked list?", "options": ["Inserting at the beginning", "Deleting from the beginning", "Accessing the last element", "Accessing the first element"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": What is the time complexity of deleting the first element of a circular linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": In a circular linked list, each node contains:", "options": ["A data part and a pointer to the next node", "A data part and a pointer to the previous node", "A data part and pointers to both the previous and next nodes", "Only a data part"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": How do you traverse a circular linked list?", "options": ["By following the pointers from one node to the next until you return to the starting node", "By using an index", "By accessing elements directly", "By using a stack"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": Which of the following is the correct way to delete a node after a given node in a circular linked list?", "options": ["Adjust the pointer of the given node to skip the next node", "Adjust the pointer of the next node to point to the given node", "Delete the given node", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": What is the time complexity of searching for an element in a circular linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": How do you insert a new node after a given node in a circular linked list?", "options": ["Set the new node’s pointer to the next node, then adjust the given node’s pointer to the new node", "Set the given node’s pointer to the new node, then set the new node’s pointer to the next node", "Set the new node’s pointer to the previous node", "Set the new node’s pointer to the first node"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": Which of the following is true about the head node in a circular linked list?", "options": ["It contains the largest value in the list", "It points to the first node of the list", "It points to the last node of the list", "It is always null"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": What is the time complexity of inserting an element at the end of a circular linked list if the tail pointer is maintained?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": What is the key advantage of using a circular linked list over a singly linked list?", "options": ["It requires less memory", "It allows traversal starting from any node", "It is easier to implement", "It has faster access to elements"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": Which of the following operations is possible with a circular linked list but not with a singly linked list?", "options": ["Insertion at the beginning", "Deletion from the beginning", "Traversing in reverse order", "Traversing starting from any node"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": What is the time complexity of accessing the nth element in a circular linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": Which of the following statements is true about circular linked lists?", "options": ["They can be traversed in both directions", "They use more memory than doubly linked lists", "They allow efficient insertion and deletion from both ends", "They allow efficient traversal starting from any node"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": How do you find the length of a circular linked list?", "options": ["By traversing the list and counting the nodes until you return to the starting node", "By accessing the length property", "By using a counter variable during insertion and deletion", "Both A and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": In a circular linked list, what is the term used for the last node?", "options": ["Head", "Tail", "End", "Final"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": What happens if you try to delete a node from an empty circular linked list?", "options": ["The list becomes undefined", "The list becomes null", "An error occurs", "Nothing happens"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Circular Linked List Mcqs", "question": ": Which of the following best describes a node in a circular linked list?", "options": ["It contains a value and two pointers", "It contains a value and a pointer to the next node", "It contains only a value", "It contains a value and a pointer to the previous node"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/circular-linked-list-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the time complexity of accessing an element in an array?", "options": ["O(n)", "O(log n)", "O(1)", "O(n²)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": Which of the following represents the best case time complexity for bubble sort?", "options": ["O(n)", "O(n log n)", "O(n²)", "O(1)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the space complexity of a recursive algorithm that uses stack space?", "options": ["O(1)", "O(n)", "O(n²)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": Which of the following sorting algorithms has the worst case time complexity of O(n²)?", "options": ["Quick Sort", "Merge Sort", "Bubble Sort", "Heap Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": Which of the following algorithms has a time complexity of O(n log n) in the average case?", "options": ["Selection Sort", "Insertion Sort", "Merge Sort", "Bubble Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the time complexity of inserting an element into a binary heap?", "options": ["O(n)", "O(log n)", "O(1)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": In the context of complexity analysis, what does “big O” notation describe?", "options": ["Worst case scenario", "Average case scenario", "Best case scenario", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the time complexity of a linear search algorithm?", "options": ["O(1)", "O(log n)", "O(n)", "O(n²)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": Which of the following is true about the time complexity of merge sort?", "options": ["It is O(n) in all cases", "It is O(n²) in the worst case", "It is O(n log n) in all cases", "It is O(log n) in the worst case"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the average case time complexity of quicksort?", "options": ["O(n²)", "O(n log n)", "O(n)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the space complexity of an iterative algorithm?", "options": ["O(1)", "O(n)", "O(n²)", "O(log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": In which case is the time complexity of selection sort O(n²)?", "options": ["Best case", "Average case", "Worst case", "All cases"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the time complexity of an algorithm that performs n operations in each of n iterations?", "options": ["O(n)", "O(n log n)", "O(n²)", "O(n³)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": Which of the following represents the worst-case time complexity for a binary search?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the time complexity of inserting an element at the beginning of a linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": Which of the following is a characteristic of exponential time complexity?", "options": ["Grows linearly", "Grows quadratically", "Grows rapidly with input size", "Grows logarithmically"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the space complexity of depth-first search (DFS) in a graph?", "options": ["O(1)", "O(n)", "O(n²)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the time complexity of traversing a linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n²)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": In which scenario does a linear search perform better than a binary search?", "options": ["When the list is sorted", "When the list is unsorted", "When the list is very small", "Both B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the time complexity of deleting the minimum element from a binary heap?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": Which of the following is an example of a polynomial time complexity?", "options": ["O(n³)", "O(2ⁿ)", "O(log n)", "O(n!)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the average case time complexity for inserting an element in a hash table?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": Which sorting algorithm is generally not stable?", "options": ["Merge Sort", "Bubble Sort", "Quick Sort", "Insertion Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the time complexity of counting the number of elements in a linked list?", "options": ["O(1)", "O(n)", "O(log n)", "O(n²)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": Which of the following time complexities represents a linearithmic algorithm?", "options": ["O(n)", "O(n log n)", "O(log n)", "O(n²)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the space complexity of a binary search algorithm?", "options": ["O(1)", "O(n)", "O(log n)", "O(n²)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": Which algorithm has the best average-case time complexity?", "options": ["Bubble Sort", "Insertion Sort", "Merge Sort", "Quick Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the time complexity of the worst-case scenario for binary search?", "options": ["O(n)", "O(log n)", "O(n log n)", "O(n²)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": Which of the following statements about time complexity is true?", "options": ["It only considers the best case", "It can be expressed using big O notation", "It is always linear", "It does not consider the size of input"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the average case time complexity of heap sort?", "options": ["O(n)", "O(n log n)", "O(n²)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the time complexity of merging two sorted arrays of size n?", "options": ["O(1)", "O(n)", "O(log n)", "O(n²)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": Which of the following algorithms has the best worst-case time complexity?", "options": ["Quick Sort", "Merge Sort", "Bubble Sort", "Insertion Sort"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the time complexity for the Fibonacci sequence using dynamic programming?", "options": ["O(2ⁿ)", "O(n)", "O(n²)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": Which of the following is a characteristic of logarithmic time complexity?", "options": ["Reduces the size of the problem with each iteration", "Grows linearly with input size", "Is faster than polynomial time complexity", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": What is the time complexity of a binary search tree in the worst case?", "options": ["O(log n)", "O(n)", "O(n log n)", "O(n²)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "complexity-analysis-mcqs", "topic": "complexity-analysis-mcqs", "question": ": Which algorithm is considered optimal for sorting large datasets?", "options": ["Quick Sort", "Bubble Sort", "Insertion Sort", "Selection Sort"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/complexity-analysis-mcqs/"}
{"subject": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "topic": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "question": "What is an adjacency matrix?", "options": ["A 1D array representing graph edges", "A 2D array representing graph connections", "A list of edges", "A tree structure"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graph-representation-adjacency-matrix-adjacency-list-mcqs/"}
{"subject": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "topic": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "question": "Which representation is more space-efficient for sparse graphs?", "options": ["Adjacency matrix", "Adjacency list", "Both are equally efficient", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graph-representation-adjacency-matrix-adjacency-list-mcqs/"}
{"subject": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "topic": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "question": "In an adjacency matrix, what does a value of 1 indicate?", "options": ["No edge exists", "An edge exists", "The graph is directed", "The graph is weighted"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graph-representation-adjacency-matrix-adjacency-list-mcqs/"}
{"subject": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "topic": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "question": "What is the time complexity of checking for the existence of an edge using an adjacency matrix?", "options": ["O(1)", "O(n)", "O(n²)", "O(log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/graph-representation-adjacency-matrix-adjacency-list-mcqs/"}
{"subject": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "topic": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "question": "What is the primary disadvantage of using an adjacency matrix for graph representation?", "options": ["It is complex to implement", "It uses too much memory for sparse graphs", "It does not support weighted graphs", "It cannot represent directed graphs"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graph-representation-adjacency-matrix-adjacency-list-mcqs/"}
{"subject": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "topic": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "question": "Which of the following is true about adjacency lists?", "options": ["They require more memory than adjacency matrices", "They can represent both directed and undirected graphs", "They are slower for edge existence checks", "They cannot represent weighted graphs"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graph-representation-adjacency-matrix-adjacency-list-mcqs/"}
{"subject": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "topic": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "question": "For a complete graph with n vertices, what is the size of the adjacency matrix?", "options": ["n", "n²", "n(n−1)/2", "2n"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graph-representation-adjacency-matrix-adjacency-list-mcqs/"}
{"subject": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "topic": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "question": "How can you represent weights in an adjacency matrix?", "options": ["Use negative numbers", "Replace 1s with the weight values", "Add an extra row", "Use a separate array"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graph-representation-adjacency-matrix-adjacency-list-mcqs/"}
{"subject": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "topic": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "question": "What is the time complexity of traversing all vertices in an adjacency list?", "options": ["O(1)", "O(n)", "O(n + e) where e is the number of edges", "O(n²)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/graph-representation-adjacency-matrix-adjacency-list-mcqs/"}
{"subject": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "topic": "graph-representation-adjacency-matrix-adjacency-list-mcqs", "question": "Which representation is more suitable for dense graphs?", "options": ["Adjacency list", "Adjacency matrix", "Edge list", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graph-representation-adjacency-matrix-adjacency-list-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": What is a graph in data structures?", "options": ["A collection of nodes and edges", "A linear data structure", "A data structure that stores data in a sorted manner", "A type of tree"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": Which of the following represents a directed graph?", "options": ["A graph where edges have no direction", "A graph where edges point from one vertex to another", "A graph that forms a cycle", "A graph with weighted edges"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": What is an undirected graph?", "options": ["A graph with directed edges", "A graph where edges have no direction", "A graph with weighted edges", "A graph that contains cycles"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": What is the degree of a vertex in a graph?", "options": ["The number of edges connected to the vertex", "The number of vertices connected to the graph", "The length of the longest path", "The total number of vertices in the graph"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": What is a weighted graph?", "options": ["A graph with no edges", "A graph where edges have weights assigned to them", "A graph that only contains directed edges", "A graph that forms a cycle"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": What is the main purpose of a graph traversal algorithm?", "options": ["To find the shortest path", "To visit all the vertices in a graph", "To sort the vertices", "To remove edges"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": Which of the following algorithms is used for finding the shortest path in a graph?", "options": ["Depth-first search", "Breadth-first search", "Dijkstra’s algorithm", "Prim’s algorithm"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": What is a cycle in a graph?", "options": ["A path that visits each vertex exactly once", "A path that starts and ends at the same vertex", "A graph with no edges", "A directed graph"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": What is the time complexity of depth-first search (DFS) in a graph with V vertices and E edges?", "options": ["O(V)", "O(E)", "O(V + E)", "O(V * E)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": What is the time complexity of breadth-first search (BFS) in a graph with V vertices and E edges?", "options": ["O(V)", "O(E)", "O(V + E)", "O(V * E)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": What type of data structure is commonly used to implement a graph?", "options": ["Array", "Linked list", "Hash table", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": What is an adjacency matrix?", "options": ["A list of edges in a graph", "A 2D array representing the connection between vertices", "A list of vertices", "A representation of weights in a graph"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": What is an adjacency list?", "options": ["A 2D array representation of a graph", "A collection of lists where each list corresponds to a vertex", "A matrix representing the graph", "A table of edges"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": Which traversal algorithm would you use to find the shortest path in an unweighted graph?", "options": ["Depth-first search", "Breadth-first search", "Dijkstra’s algorithm", "A* search"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": What is a complete graph?", "options": ["A graph with no edges", "A graph where every pair of vertices is connected by an edge", "A directed graph", "A graph that forms a cycle"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": What is a bipartite graph?", "options": ["A graph with only two vertices", "A graph whose vertices can be divided into two disjoint sets", "A graph with cycles", "A graph where all edges are directed"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": What is a spanning tree?", "options": ["A tree that connects all vertices with minimum edges", "A tree that contains all edges of the graph", "A cycle that includes all vertices", "A disconnected subgraph"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": What algorithm is commonly used to find the minimum spanning tree?", "options": ["Dijkstra’s algorithm", "Prim’s algorithm", "Kruskal’s algorithm", "Both B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": In a graph, what is the difference between a path and a cycle?", "options": ["A path can have repeated vertices, while a cycle cannot", "A path cannot have repeated vertices, while a cycle can", "Both paths and cycles are the same", "A cycle is always longer than a path"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "graphs-mcqs", "topic": "graphs-mcqs", "question": ": What is the purpose of the Floyd-Warshall algorithm?", "options": ["To find the shortest path between two specific vertices", "To find the shortest path between all pairs of vertices", "To find the maximum flow in a network", "To detect cycles in a graph"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graphs-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": What is an AVL tree?", "options": ["A tree where each node has at most two children", "A self-balancing binary search tree with a balance factor", "A tree where the left subtree is greater than the root and the right subtree is less than the root", "A tree where the left subtree is less than the root and the right subtree is greater than the root"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": In an AVL tree, what is the maximum allowed height difference (balance factor) between the left and right subtrees of any node?", "options": ["0", "1", "2", "3"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": What is the worst-case time complexity for searching an element in an AVL tree with n nodes?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": Which operation in an AVL tree may require tree rotations to maintain balance?", "options": ["Insertion", "Deletion", "Searching", "Traversal"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": In an AVL tree, which rotation is used to restore balance when the tree becomes right-heavy?", "options": ["Left rotation", "Right rotation", "Double left rotation", "Double right rotation"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": Which of the following properties is NOT necessarily true for AVL trees?", "options": ["Binary search property", "Balanced height", "Complete binary structure", "Symmetric nodes"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": What is the time complexity of inserting an element into an AVL tree?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": Which traversal of an AVL tree visits nodes in non-decreasing order of their values?", "options": ["Preorder", "Inorder", "Postorder", "Level order"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": In an AVL tree, which operation is used to find the successor of a given node?", "options": ["findSuccessor()", "successor()", "next()", "nextNode()"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": Which rotation operation is used in AVL trees to restore balance after a double rotation is performed?", "options": ["Left rotation", "Right rotation", "Double left rotation", "Double right rotation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": What is the worst-case time complexity for deleting an element from an AVL tree?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": In an AVL tree, what is the minimum number of nodes at level k?", "options": ["2^k", "k", "k+1", "k-1"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": Which traversal of an AVL tree starts from the root, visits the left subtree, and then visits the right subtree?", "options": ["Preorder", "Inorder", "Postorder", "Level order"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": In an AVL tree, what is the maximum number of edges in a path from the root to a leaf node?", "options": ["log n", "n", "n", "n-1"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": Which rotation operation is used in AVL trees to restore balance after a double left rotation is performed?", "options": ["Left rotation", "Right rotation", "Double left rotation", "Double right rotation"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": Which traversal of an AVL tree visits nodes in descending order of their values?", "options": ["Preorder", "Inorder", "Postorder", "Reverse Inorder"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": In an AVL tree, what is the maximum number of nodes at height h?", "options": ["2^h", "2^(h+1) – 1", "h^2", "h"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "avl-trees-mcqs", "topic": "avl-trees-mcqs", "question": ": Which traversal of an AVL tree visits nodes level by level?", "options": ["Preorder", "Inorder", "Postorder", "Level order"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/avl-trees-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What is the primary purpose of string hashing?", "options": ["To sort strings", "To convert strings into fixed-size integers", "To compare strings directly", "To store strings in a database"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": Which of the following is a common use of string hashing?", "options": ["Data compression", "Pattern matching", "String sorting", "File encryption"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": Which property is crucial for a good hash function?", "options": ["It should be linear", "It should minimize collisions", "It should be easy to compute", "Both B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What is a collision in the context of hashing?", "options": ["When two strings hash to different values", "When two different strings hash to the same value", "When the hash function fails", "When a string is empty"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": Which of the following is a common approach to handle collisions?", "options": ["Deleting the entry", "Open addressing", "Ignoring the collision", "Using a longer string"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What is a rolling hash?", "options": ["A hash function that rehashes the entire string for each new substring", "A hash function that updates its value incrementally", "A hash function that uses random values", "A hash function used for encryption"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": In string hashing, what is the purpose of a modulus operation?", "options": ["To increase the hash value", "To reduce the hash value to fit within a certain range", "To sort the string", "To concatenate strings"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What is the time complexity of computing a hash for a string of length n using a simple polynomial hash function?", "options": ["O(1)", "O(n)", "O(n log n)", "O(n²)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What is one disadvantage of using a naive hash function?", "options": ["It is too complex to implement", "It may produce too many collisions", "It is inefficient for short strings", "It requires too much memory"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": Which of the following hash functions is commonly used for string hashing?", "options": ["SHA-256", "MD5", "Rabin-Karp hash", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": In the context of string hashing, what does “perfect hashing” mean?", "options": ["A hash function that uses no memory", "A hash function that never produces collisions", "A hash function that is always faster than others", "A hash function that sorts strings"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What is a common application of string hashing in databases?", "options": ["Data retrieval", "Data insertion", "Data sorting", "Data deletion"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What does the term “load factor” refer to in hashing?", "options": ["The ratio of stored entries to the total number of slots in a hash table", "The size of the input string", "The number of collisions in a hash table", "The efficiency of a hash function"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": How does a cryptographic hash function differ from a regular hash function?", "options": ["It is slower to compute", "It is not deterministic", "It is easier to reverse", "It is only used for strings"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What is the result of applying a hash function to an empty string?", "options": ["A random value", "A predefined constant", "Zero", "A null value"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": Which hashing technique would be most efficient for large datasets with frequent insertions and deletions?", "options": ["Separate chaining", "Open addressing", "Double hashing", "Perfect hashing"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What happens if two strings hash to the same value using a hash function?", "options": ["The hash function is ineffective", "A collision occurs", "The strings are identical", "The hash function is reset"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": Which of the following is a simple example of a hash function?", "options": ["Summing the ASCII values of characters", "Reversing the string", "Sorting the characters", "Finding the length of the string"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": In string hashing, what does a “hash table” refer to?", "options": ["A data structure that stores hash values", "A mapping of keys to values", "A fixed-size array used for storing hashed strings", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What is the primary benefit of using a hashing technique in programming?", "options": ["It simplifies data storage", "It improves data retrieval speed", "It increases memory usage", "It enhances data security"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What does it mean to “rehash” a hash table?", "options": ["To apply a new hash function to existing entries", "To increase the size of the hash table", "To delete all entries", "To compress the data"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": Which of the following is an example of a hash collision resolution technique?", "options": ["Chaining", "Appending", "Overwriting", "Sorting"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What is a disadvantage of separate chaining for collision resolution?", "options": ["Increased memory usage", "Slower performance", "Higher load factor", "Limited to fixed-size tables"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": How does a hash table maintain efficiency?", "options": ["By using a larger size than needed", "By keeping the load factor below a certain threshold", "By allowing dynamic resizing", "By using complex hash functions"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What is the time complexity of searching for an element in a well-distributed hash table?", "options": ["O(1)", "O(n)", "O(log n)", "O(n log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": Which hash function is based on polynomial rolling?", "options": ["MD5", "Rabin-Karp", "SHA-256", "Linear probing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What type of data structure is often used to implement separate chaining?", "options": ["Array", "Linked list", "Stack", "Queue"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What is a major disadvantage of open addressing?", "options": ["It uses too much memory", "It can lead to clustering", "It is slower than separate chaining", "It cannot handle collisions"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": In which scenario would you prefer string hashing?", "options": ["When exact string matching is required", "When sorting strings", "When counting distinct strings", "When concatenating strings"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What is the significance of the hash value?", "options": ["It uniquely identifies an entry in a hash table", "It determines the string length", "It specifies the original string", "It serves as an encrypted value"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": How does the choice of a hash function impact performance?", "options": ["It has no effect on performance", "A poor choice can lead to many collisions and slower performance", "A good choice guarantees constant time operations", "Both B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What would be an ideal characteristic of a hash function?", "options": ["It should be easy to reverse", "It should produce similar hash values for similar inputs", "It should spread out hash values uniformly", "It should depend heavily on the input format"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What is a potential issue with using a simple additive hash function?", "options": ["It can lead to poor distribution of hash values", "It is too complex to implement", "It is not deterministic", "It requires too much memory"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": In string hashing, what does “dynamic resizing” refer to?", "options": ["Adjusting the hash function", "Changing the size of the input strings", "Modifying the size of the hash table based on load factor", "Resizing strings to fit within the hash values"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What is a common method to enhance the efficiency of a hash table?", "options": ["Using a fixed hash function", "Ensuring a low load factor", "Ignoring collisions", "Using longer strings"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": Which of the following best describes “universal hashing”?", "options": ["A hash function that guarantees no collisions", "A family of hash functions from which one is chosen at random", "A hash function that is only applicable to integers", "A hash function that uses no randomness"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What is the effect of a high load factor on a hash table?", "options": ["Increased speed", "More collisions and slower performance", "Better memory utilization", "Increased size"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "string-hashing-mcqs", "topic": "string-hashing-mcqs", "question": ": What is a common application of rolling hash in algorithms?", "options": ["String sorting", "Text searching", "Data compression", "Data encryption"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/string-hashing-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "What does DFS stand for in graph theory?", "options": ["Depth First Search", "Depth Factor Search", "Depth Function Search", "Depth Following Search"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "Which data structure is primarily used in DFS?", "options": ["Queue", "Stack", "Array", "Linked list"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "What does BFS stand for in graph theory?", "options": ["Best First Search", "Breadth First Search", "Balanced First Search", "Broad First Search"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "Which data structure is primarily used in BFS?", "options": ["Stack", "Queue", "Array", "Linked list"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "What is the primary use of DFS?", "options": ["Finding the shortest path", "Traversing all vertices of a graph", "Finding connected components", "Searching for a specific vertex"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "In which traversal method is the root node processed before its children?", "options": ["BFS", "DFS", "Both BFS and DFS", "Neither BFS nor DFS"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "Which traversal method guarantees the shortest path in an unweighted graph?", "options": ["DFS", "BFS", "Both DFS and BFS", "Neither DFS nor BFS"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "What is a key characteristic of BFS?", "options": ["It explores all neighbors before going deeper", "It uses a stack for exploration", "It can get stuck in cycles", "It always finds the longest path"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "In which traversal method is backtracking often used?", "options": ["BFS", "DFS", "Both BFS and DFS", "Neither BFS nor DFS"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "How does BFS handle cycles in a graph?", "options": ["It ignores cycles", "It gets stuck in an infinite loop", "It marks visited nodes", "It does not work with cycles"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "What is the time complexity of BFS on a graph with V vertices and E edges?", "options": ["O(V)", "O(E)", "O(V + E)", "O(V * E)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "What is the time complexity of DFS on a graph with V vertices and E edges?", "options": ["O(V)", "O(E)", "O(V + E)", "O(V * E)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "Which traversal method is more memory-efficient for wide graphs?", "options": ["DFS", "BFS", "Both have the same efficiency", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "What is the space complexity of BFS?", "options": ["O(V)", "O(E)", "O(V + E)", "O(1)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "Which algorithm can be implemented using DFS?", "options": ["Topological sorting", "Prim’s algorithm", "Dijkstra’s algorithm", "Kruskal’s algorithm"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "Which algorithm can be implemented using BFS?", "options": ["Finding connected components", "Topological sorting", "Shortest path in unweighted graphs", "Minimum spanning tree"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "What is the initial step in a BFS traversal?", "options": ["Mark all nodes as unvisited", "Push the starting node onto the stack", "Enqueue the starting node", "Start from the deepest node"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "What is the initial step in a DFS traversal?", "options": ["Mark all nodes as unvisited", "Push the starting node onto the queue", "Enqueue the starting node", "Start from the root node"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "In DFS, what happens when a node has no unvisited neighbors?", "options": ["It stops traversing", "It backtracks to the last visited node", "It enqueues all neighbors", "It visits all nodes in the graph"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Graph Traversal Algorithms Dfs Bfs Mcqs", "question": "What is a possible output of BFS on a tree structure?", "options": ["Left-to-right traversal", "Top-to-bottom traversal", "Random order", "Depth-based traversal"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/graph-traversal-algorithms-dfs-bfs-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": What is a common application of hashing in data structures?", "options": ["Data encryption", "Implementing hash tables for fast data retrieval", "Sorting data", "Compressing files"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": Which of the following uses hashing for quick access to records?", "options": ["Linked lists", "Binary trees", "Hash tables", "Stacks"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": How is hashing used in password storage?", "options": ["By encrypting passwords", "By hashing passwords to store them securely", "By compressing passwords", "By sorting passwords alphabetically"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": What is the role of hashing in digital signatures?", "options": ["To encrypt the signature", "To ensure data integrity", "To compress the signature", "To make the signature reversible"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": In which application is hashing used for detecting duplicate files?", "options": ["File indexing", "Data compression", "File sharing", "Digital forensics"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": How does hashing contribute to cache systems?", "options": ["By reducing memory usage", "By enabling quick data retrieval using keys", "By sorting cache entries", "By compressing cache data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": Which of the following is an application of hashing in network security?", "options": ["Data encryption", "Packet routing", "Message authentication codes (MAC)", "File compression"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": What is the purpose of hashing in database indexing?", "options": ["To sort data", "To create unique identifiers for records", "To enable fast lookups", "To compress records"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": In version control systems, how is hashing utilized?", "options": ["To sort commits", "To uniquely identify each commit", "To compress files", "To encrypt sensitive data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": Which of the following applications uses hashing for data integrity verification?", "options": ["File compression", "Backup systems", "Digital certificates", "Memory management"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": How is hashing applied in cryptocurrency?", "options": ["To encrypt transactions", "To create unique transaction identifiers", "To verify transactions and maintain blockchain integrity", "To compress transaction data"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": What is the use of hashing in e-commerce transactions?", "options": ["To encrypt user data", "To securely store user passwords", "To quickly retrieve product information", "To compress transaction records"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": In data retrieval, how does hashing improve performance?", "options": ["By sorting data", "By reducing data redundancy", "By enabling constant time complexity for lookups", "By compressing data"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": Which data structure often uses hashing to speed up search operations?", "options": ["Trees", "Graphs", "Hash tables", "Arrays"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": How is hashing used in image processing?", "options": ["For image compression", "To verify image integrity", "For color sorting", "To resize images"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": What is the function of a hash function in online file storage services?", "options": ["To sort files", "To compress files", "To ensure data integrity and detect changes", "To encrypt files"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": In web caching, what role does hashing play?", "options": ["It compresses cached content", "It allows quick access to cached data", "It sorts cache entries", "It encrypts cached data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": Which hashing technique is often used in anti-virus software?", "options": ["Data encryption", "Duplicate file detection", "Signature-based scanning", "Sorting algorithms"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": What is a primary application of hashing in peer-to-peer networks?", "options": ["File compression", "Efficient data retrieval", "Data integrity verification", "User authentication"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": How does hashing assist in load balancing for web servers?", "options": ["By encrypting data", "By distributing requests evenly across servers", "By compressing data", "By caching responses"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": Which of the following uses hashing for tracking changes in files?", "options": ["Version control systems", "File compression tools", "Media players", "Database management systems"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": In data science, how is hashing applied?", "options": ["For sorting data", "For unique data identification", "For data compression", "For data visualization"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": What is the role of hashing in API request validation?", "options": ["To sort requests", "To ensure request integrity", "To compress request data", "To encrypt request data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": Which of the following is a benefit of using hashing in data security?", "options": ["It is easy to reverse", "It allows for data recovery", "It provides a unique representation of data", "It reduces data size"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": How is hashing utilized in mobile applications?", "options": ["For sorting user data", "For securely storing sensitive information", "For compressing media files", "For managing app updates"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": In social media applications, how does hashing help?", "options": ["For compressing images", "For user identification and login security", "For sorting posts", "For managing notifications"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": What role does hashing play in online voting systems?", "options": ["To encrypt votes", "To ensure vote integrity and anonymity", "To compress voting data", "To sort voters"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": Which hashing algorithm is commonly used for file integrity checks?", "options": ["SHA-256", "RSA", "AES", "DES"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": How does hashing facilitate efficient data retrieval in databases?", "options": ["By compressing data", "By providing a unique key for fast lookups", "By sorting data", "By encrypting data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": In cloud storage, what is the purpose of hashing?", "options": ["To compress files", "To verify file integrity", "To encrypt files", "To sort files"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": How does hashing improve the performance of web search engines?", "options": ["By sorting search results", "By indexing web pages", "By compressing web content", "By encrypting user queries"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": What is the main advantage of hashing in digital certificates?", "options": ["It simplifies the certificate structure", "It ensures the integrity and authenticity of the certificate", "It reduces certificate size", "It encrypts certificate data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": Which of the following applications benefits from using hash functions for quick access?", "options": ["Social media platforms", "Video streaming services", "Online gaming", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": What is the purpose of hashing in content delivery networks (CDNs)?", "options": ["To compress content", "To ensure data consistency across servers", "To encrypt user data", "To sort content"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "applications-of-hashing-mcqs", "topic": "applications-of-hashing-mcqs", "question": ": In what way does hashing assist with network traffic monitoring?", "options": ["By sorting network packets", "By providing unique identifiers for each packet", "By compressing traffic data", "By encrypting traffic"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-hashing-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "Which of the following is a characteristic of FPGA architecture?", "options": ["It has a fixed and unchangeable logic structure", "It relies solely on software for configuration", "It contains configurable logic blocks connected by a programmable interconnect", "It cannot be reprogrammed once configured"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "What is the advantage of using partial reconfiguration in FPGAs?", "options": ["It allows for changing the FPGA vendor", "It enables changing the logic of a portion of the FPGA without affecting the entire design", "It increases power consumption", "It decreases the flexibility of the FPGA"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "Which programming language is commonly used to describe the behavior of logic circuits in FPGAs?", "options": ["Java", "Python", "VHDL or Verilog", "C++"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "What is the function of the Configurable Logic Block (CLB) in an FPGA?", "options": ["To manage clock signals", "To handle input/output operations", "To perform logic functions based on the programming", "To store configuration data"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "What is the main disadvantage of using FPGAs compared to ASICs?", "options": ["Lower performance", "Higher cost", "Longer development time", "Higher power consumption"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "Which of the following is a benefit of using FPGA-based systems in prototyping?", "options": ["Lower flexibility compared to ASIC-based prototypes", "Reduced risk of errors in hardware design", "Limited debugging capabilities", "Inability to simulate complex logic circuits"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "What is the purpose of the routing resources in an FPGA?", "options": ["To store configuration data", "To perform arithmetic operations", "To connect the configurable logic blocks and I/O blocks", "To handle input/output operations"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "Which of the following is an advantage of using SRAM-based FPGAs?", "options": ["Lower power consumption", "Non-volatile configuration storage", "High resistance to configuration errors", "Frequent reprogramming capability"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "What is the purpose of the interconnect resources in an FPGA?", "options": ["To store configuration data", "To perform logic functions", "To connect the configurable logic blocks", "To manage power consumption"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "Which factor influences the logic capacity of an FPGA?", "options": ["Configuration speed", "Operating temperature", "Number of configurable logic blocks", "Availability of routing resources"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "What is the primary advantage of using FPGA-based systems for rapid prototyping?", "options": ["Reduced design flexibility", "High-cost savings", "Faster time to market", "Limited hardware compatibility"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "Which of the following is a common challenge in FPGA design?", "options": ["Limited reconfigurability", "Inflexible logic structures", "High power consumption", "Timing constraints and signal integrity"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "What is the primary advantage of using FPGAs in aerospace applications?", "options": ["Lower development cost", "Reduced design complexity", "High reliability and radiation tolerance", "Limited processing capabilities"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "What does FPGA stand for?", "options": ["Fully Programmable Gate Array", "Field Programmable Gate Array", "Fixed Programmable Gate Array", "Fast Programmable Gate Array"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "What is the primary advantage of FPGAs over ASICs (Application-Specific Integrated Circuits)?", "options": ["Higher performance", "Lower power consumption", "Lower cost", "Flexibility and reconfigurability"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "Which of the following is true about FPGAs?", "options": ["They are fixed-function devices", "They cannot be reprogrammed", "They allow for on-the-fly configuration changes", "They have a predefined logic structure"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "How are FPGAs typically programmed?", "options": ["Using assembly language", "Using C programming language", "Using hardware description languages like VHDL or Verilog", "Using machine code"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "Which of the following is not a component of an FPGA?", "options": ["Configurable Logic Blocks (CLBs)", "Look-Up Tables (LUTs)", "Hardwired connections", "I/O blocks"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "What is the function of Look-Up Tables (LUTs) in an FPGA?", "options": ["To store configuration data", "To perform logic functions", "To handle input/output operations", "To manage power distribution"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "Which of the following statements is true about FPGAs?", "options": ["They are typically used in applications with fixed and static requirements", "They offer lower performance compared to ASICs", "They are reprogrammable and offer flexibility in logic design", "They are manufactured as ready-to-use integrated circuits"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "What is the primary benefit of using an FPGA for prototyping a digital design?", "options": ["Lower cost compared to ASIC prototyping", "Faster development time", "Simpler design process", "Ability to reconfigure and modify the design easily"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "Which type of memory is typically used to store the configuration data of an FPGA?", "options": ["Flash memory", "SRAM", "DRAM", "ROM"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "What is the purpose of I/O blocks in an FPGA?", "options": ["To perform arithmetic operations", "To store configuration data", "To manage power distribution", "To handle input and output operations"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "Which of the following is a common application of FPGAs?", "options": ["High-speed data processing", "Long-term data storage", "Audio playback", "Optical disc reading"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "What is the typical power consumption of FPGAs compared to ASICs?", "options": ["Higher", "Lower", "About the same", "Variable, depending on the design"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "Which of the following is an advantage of using FPGA-based systems in prototyping and testing?", "options": ["Lower cost", "Slower development time", "Ability to emulate hardware accurately", "Fixed functionality"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "What is the main difference between SRAM-based FPGAs and flash-based FPGAs?", "options": ["SRAM-based FPGAs are non-volatile, while flash-based FPGAs are volatile", "SRAM-based FPGAs can be reprogrammed frequently, while flash-based FPGAs have limited reprogramming cycles", "SRAM-based FPGAs are slower than flash-based FPGAs", "SRAM-based FPGAs are smaller in size than flash-based FPGAs"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "What is the purpose of Clock Management Tiles (CMTs) in an FPGA?", "options": ["To manage power consumption", "To handle input/output operations", "To distribute clock signals and manage timing constraints", "To perform logic functions"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "field-programmable-gate-arrays-fpgas-mcqs", "topic": "field-programmable-gate-arrays-fpgas-mcqs", "question": "Which of the following statements is true about FPGA-based systems?", "options": ["They are not suitable for applications requiring high-performance processing", "They are typically used for fixed and static designs", "They can be dynamically reconfigured during runtime", "They offer lower flexibility compared to ASIC-based systems"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/field-programmable-gate-arrays-fpgas-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": What is the time complexity of bubble sort in the worst case?", "options": ["O(n)", "O(n log n)", "O(n²)", "O(log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": Which of the following sorting algorithms is based on the divide and conquer strategy?", "options": ["Bubble Sort", "Selection Sort", "Quick Sort", "Insertion Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": What is the main advantage of the merge sort algorithm?", "options": ["It is in-place", "It is stable", "It is faster than quick sort", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": Which searching algorithm is optimal for a sorted array?", "options": ["Linear Search", "Binary Search", "Jump Search", "Interpolation Search"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": What is the time complexity of insertion sort in the best case?", "options": ["O(n)", "O(n log n)", "O(n²)", "O(log n)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": Which of the following is a characteristic of selection sort?", "options": ["It is stable", "It requires additional memory", "It has a fixed number of comparisons", "It works well on large datasets"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": What is the average-case time complexity of quick sort?", "options": ["O(n)", "O(n log n)", "O(n²)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": Which of the following algorithms is the most efficient for large datasets?", "options": ["Bubble Sort", "Selection Sort", "Merge Sort", "Insertion Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": What is the main disadvantage of quick sort?", "options": ["It is slow", "It is not stable", "It uses extra memory", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": Which searching technique can be applied to both sorted and unsorted arrays?", "options": ["Linear Search", "Binary Search", "Exponential Search", "Interpolation Search"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": What is the time complexity of linear search?", "options": ["O(n)", "O(log n)", "O(n log n)", "O(1)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": Which of the following algorithms uses a pivot element for sorting?", "options": ["Bubble Sort", "Merge Sort", "Quick Sort", "Heap Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": What is the worst-case time complexity of merge sort?", "options": ["O(n)", "O(n log n)", "O(n²)", "O(log n)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": In which sorting algorithm does each element get compared to every other element?", "options": ["Quick Sort", "Bubble Sort", "Selection Sort", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": What is a key property of a stable sorting algorithm?", "options": ["It uses less memory", "It preserves the relative order of equal elements", "It runs in linear time", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": What is the primary use of interpolation search?", "options": ["Searching in a sorted array", "Searching in an unsorted array", "Sorting elements", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": What is the best-case scenario for quick sort?", "options": ["When the array is already sorted", "When the pivot divides the array into two equal halves", "When all elements are unique", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": Which of the following algorithms sorts in place?", "options": ["Merge Sort", "Quick Sort", "Heap Sort", "Both B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": What is the average-case time complexity of selection sort?", "options": ["O(n)", "O(n log n)", "O(n²)", "O(log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": Which of the following is true about binary search?", "options": ["It can be used on unsorted arrays", "It requires the array to be sorted", "It is always faster than linear search", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": In which algorithm do elements “bubble” to their correct position?", "options": ["Quick Sort", "Bubble Sort", "Insertion Sort", "Selection Sort"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": Which algorithm is typically faster for small datasets?", "options": ["Merge Sort", "Quick Sort", "Insertion Sort", "Selection Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": What is the primary characteristic of the counting sort algorithm?", "options": ["It is a comparison-based sort", "It sorts integers within a fixed range", "It works on linked lists", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": Which of the following is a divide and conquer algorithm?", "options": ["Insertion Sort", "Merge Sort", "Bubble Sort", "Selection Sort"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": Which sorting algorithm has the lowest worst-case time complexity?", "options": ["Quick Sort", "Merge Sort", "Heap Sort", "All have the same complexity"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": What is the main advantage of the binary search algorithm?", "options": ["It works with unsorted data", "It is always the fastest", "It reduces the search space by half each iteration", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": Which of the following sorting algorithms is not stable?", "options": ["Bubble Sort", "Merge Sort", "Quick Sort", "Insertion Sort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": What is the primary disadvantage of selection sort?", "options": ["It is not stable", "It is inefficient for large datasets", "It uses extra memory", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": Which of the following algorithms is considered the fastest for large datasets in practice?", "options": ["Merge Sort", "Quick Sort", "Heap Sort", "Insertion Sort"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": What is the worst-case time complexity of binary search?", "options": ["O(n)", "O(log n)", "O(n log n)", "O(1)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": Which of the following is a characteristic of the heap sort algorithm?", "options": ["It is a stable sort", "It uses a binary heap", "It is recursive", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": What is the primary purpose of sorting algorithms?", "options": ["To arrange data in a specific order", "To search for an element", "To compress data", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": Which sorting algorithm divides the array into subarrays to sort?", "options": ["Merge Sort", "Quick Sort", "Both A and B", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": What is the expected time complexity of searching for an element in a sorted array using binary search?", "options": ["O(n)", "O(log n)", "O(n log n)", "O(1)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sorting And Searching Algorithms Mcqs", "question": ": In the context of searching algorithms, what does “divide and conquer” mean?", "options": ["Splitting the problem into smaller subproblems", "Combining results from subproblems", "Both A and B", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sorting-and-searching-algorithms-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": What is the primary function of Insertion Sort?", "options": ["To search for an element", "To sort an array", "To merge two arrays", "To partition data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": What is the worst-case time complexity of Insertion Sort?", "options": ["O(n)", "O(n log n)", "O(n^2)", "O(log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": Which statement best describes how Insertion Sort works?", "options": ["It divides the array into sorted and unsorted portions and inserts elements into the sorted portion.", "It compares adjacent elements and swaps them.", "It selects the smallest element and places it at the beginning.", "It merges two sorted lists into one."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": Which of the following is true about the stability of Insertion Sort?", "options": ["It is a stable sorting algorithm.", "It is not a stable sorting algorithm.", "It can only sort numerical data.", "It requires additional memory for stability."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": In Insertion Sort, what happens to the elements in the sorted portion of the array?", "options": ["They are ignored until the next pass.", "They are rearranged randomly.", "They are compared and shifted as necessary.", "They are selected one by one to find the minimum."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": How many comparisons are made in the worst case during Insertion Sort?", "options": ["n", "n/2", "n^2", "n(n-1)/2"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": What is the space complexity of Insertion Sort?", "options": ["O(1)", "O(n)", "O(n log n)", "O(n^2)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": In which of the following scenarios is Insertion Sort particularly useful?", "options": ["Sorting large datasets", "Sorting small datasets", "Real-time data processing", "When memory usage is a concern"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": What is the effect of using Insertion Sort on an already sorted array?", "options": ["It sorts the array again.", "It remains unchanged.", "It becomes unstable.", "It reverses the array."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": How does Insertion Sort achieve its sorting?", "options": ["By merging elements", "By comparing and shifting", "By swapping elements", "By selecting elements randomly"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": Which algorithm is generally more efficient than Insertion Sort for larger datasets?", "options": ["Bubble Sort", "Merge Sort", "Quick Sort", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": What will be the result of applying Insertion Sort to the array [4, 3, 2, 1]?", "options": ["[1, 2, 3, 4]", "[4, 3, 2, 1]", "[2, 1, 3, 4]", "[3, 4, 1, 2]"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": What type of sorting is Insertion Sort classified as?", "options": ["In-place sorting", "External sorting", "Comparison-based sorting", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": Which characteristic of Insertion Sort makes it less suitable for large datasets?", "options": ["It requires too much memory.", "It makes too many comparisons.", "It requires multiple passes through the array.", "It is not adaptive."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": What is the output of Insertion Sort if the input array is [5, 2, 9, 1, 5, 6]?", "options": ["[1, 2, 5, 5, 6, 9]", "[5, 5, 6, 1, 2, 9]", "[2, 1, 5, 6, 9, 5]", "[9, 6, 5, 5, 2, 1]"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": How does Insertion Sort handle duplicate elements?", "options": ["It ignores them.", "It sorts them randomly.", "It maintains their relative order.", "It treats them as distinct values."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": What will be the result of applying Insertion Sort to the array [3, 1, 4, 1, 5, 9, 2, 6]?", "options": ["[1, 1, 2, 3, 4, 5, 6, 9]", "[4, 1, 3, 2, 5, 9, 6, 1]", "[3, 4, 1, 1, 2, 5, 6, 9]", "[9, 6, 5, 4, 3, 2, 1, 1]"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "insertion-sort-mcqs", "topic": "insertion-sort-mcqs", "question": ": What is the final position of the smallest element after one pass of Insertion Sort?", "options": ["It remains in its original position.", "It is placed at the end of the array.", "It is placed at the beginning of the sorted portion.", "It is moved to the middle of the array."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/insertion-sort-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": What is the primary goal of searching algorithms?", "options": ["To organize data", "To find a specific element within a dataset", "To sort data", "To compress data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": Which searching algorithm is used on sorted arrays?", "options": ["Linear Search", "Binary Search", "Jump Search", "Interpolation Search"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": Which searching algorithm has a time complexity of O(log n)?", "options": ["Linear Search", "Jump Search", "Binary Search", "Exponential Search"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": In which scenario is Binary Search the most efficient?", "options": ["Unsorted data", "Large datasets with a sorted array", "Small datasets", "Data with many duplicates"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": What is the best-case time complexity of Binary Search?", "options": ["O(n)", "O(log n)", "O(1)", "O(n log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": Which searching algorithm is more efficient than Linear Search but requires sorted data?", "options": ["Linear Search", "Binary Search", "Interpolation Search", "All of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": What is the primary advantage of Jump Search over Linear Search?", "options": ["It requires less memory", "It is faster for large sorted arrays", "It is simpler to implement", "It works on unsorted data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": Which searching algorithm works on both sorted and unsorted arrays?", "options": ["Linear Search", "Binary Search", "Jump Search", "Interpolation Search"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": In what type of data is Exponential Search particularly useful?", "options": ["Random data", "Large sorted arrays", "Small datasets", "Unsorted data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": Which searching technique uses a midpoint to divide the dataset?", "options": ["Linear Search", "Binary Search", "Interpolation Search", "Jump Search"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": What is the time complexity of Jump Search?", "options": ["O(n)", "O(log n)", "O(√n)", "O(n log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": Which searching algorithm is best suited for uniformly distributed data?", "options": ["Linear Search", "Jump Search", "Interpolation Search", "Binary Search"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": In Binary Search, what is the process of narrowing down the search space called?", "options": ["Partitioning", "Traversing", "Splitting", "Halving"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": Which searching algorithm does not require the data to be sorted?", "options": ["Binary Search", "Jump Search", "Linear Search", "Interpolation Search"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": Which searching algorithm is not effective for small datasets?", "options": ["Linear Search", "Binary Search", "Jump Search", "All are effective"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": What type of search does a hash table use?", "options": ["Linear Search", "Binary Search", "Hashing Search", "Interpolation Search"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": What is the main disadvantage of Binary Search?", "options": ["It requires sorted data", "It is slower than Linear Search", "It is complex to implement", "It requires extra memory"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": In Linear Search, how many comparisons are needed in the worst case?", "options": ["n/2", "n", "log n", "1"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": What is the average case time complexity of Linear Search?", "options": ["O(1)", "O(log n)", "O(n)", "O(n log n)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": Which of the following searching methods is adaptive?", "options": ["Binary Search", "Jump Search", "Interpolation Search", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": In Exponential Search, what does the algorithm first find?", "options": ["The target element", "The range where the target element may exist", "The maximum element", "The minimum element"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": Which searching algorithm can be applied to linked lists?", "options": ["Linear Search", "Binary Search", "Jump Search", "All of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": What is the process of finding an element’s position in a sorted array called?", "options": ["Searching", "Sorting", "Indexing", "Partitioning"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": What is the best scenario for using Jump Search?", "options": ["Large sorted arrays", "Small datasets", "Unsorted data", "Duplicate data"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": Which of the following algorithms is best for real-time applications?", "options": ["Linear Search", "Binary Search", "Jump Search", "Hashing"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": In which case does Interpolation Search outperform Binary Search?", "options": ["Small datasets", "Sorted and uniformly distributed datasets", "Large datasets", "Unsorted datasets"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": What type of searching algorithm is Depth First Search (DFS)?", "options": ["Linear Search", "Tree/Graph Search", "Binary Search", "Hashing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": Which searching technique is the most efficient for finding an element in a large database?", "options": ["Linear Search", "Hashing", "Binary Search", "Jump Search"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": Which of the following searches works by jumping ahead a fixed number of steps?", "options": ["Jump Search", "Linear Search", "Binary Search", "Interpolation Search"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": What type of data structure is typically used in Binary Search?", "options": ["Array", "Linked List", "Tree", "Hash Table"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": In which scenario is Binary Search not applicable?", "options": ["When data is sorted", "When data is unsorted", "For large datasets", "For small datasets"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": What is the primary operation used in all searching algorithms?", "options": ["Comparing elements", "Sorting elements", "Dividing elements", "Merging elements"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Searching Algorithms Mcqs", "question": ": What does a search algorithm return if the element is not found?", "options": ["The next element", "An error message", "A special value (like -1)", "Nothing"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/searching-algorithms-mcqs/"}
{"subject": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": One kWh is equal to how many kcal?", "options": ["863", "800", "860", "816"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": The Scott connection is used for converting:", "options": ["Single phase to two-phase", "Three phase to single phase", "Single phase to three phase", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": In LEDs, the material used is:", "options": ["Gallium Arsenide", "Germanium", "Silicon", "Silicon and Germanium"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": The phase difference between two consecutive coils in a three-phase transformer is:", "options": ["120°", "130°", "140°", "50°"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": Which of the following materials is not used to make strain gauges?", "options": ["Bronze", "Pure platinum", "Plastic", "Copper"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": Which type of motor is used in refrigerators?", "options": ["Capacitor induction motor", "Split phase induction motor", "Shaded pole induction motor", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": A device that converts fixed DC input to a variable DC output voltage is called a:", "options": ["Converter", "Chopper", "Regulator", "Stabilizer"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": The circulating current should not exceed:", "options": ["10% of normal current", "70% of normal current", "130% of normal current", "75% of normal current"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": The response of a linear interpolator is a _____ pulse.", "options": ["Triangular", "Rectangular", "Linear ramp", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": The test that is also known as a back-to-back test is:", "options": ["Sumpner test", "Radiation test", "Field test", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electrical-machine-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": What is the typical value of SCR for a modern alternator?", "options": ["0.5", "1.5", "1.0", "1.2"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/power-electronics-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": If the input voltage is 110 V and the output voltage is 150 V of a step-up chopper, what is the value of duty cycle?", "options": ["0.45", "0.27", "0.32", "0.67"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/power-electronics-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": During the forward blocking mode of a thyristor, which junction is in reverse bias?", "options": ["Junction J3 is forward biased and J1, J2 are reverse biased", "Junction J2 is in reverse bias and J1, J3 are forward biased", "Junction J1 and J2 are forward biased and J3 is reverse biased", "Junction J1, J3 are reverse biased and J2 is forward biased"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/power-electronics-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": Which of the following devices does not belong to the transistor family?", "options": ["MOSFET", "IGBT", "BJT", "GTO"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/power-electronics-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": A power transistor is a ____ device.", "options": ["Three-layer, three-junction device", "Two-layer, one-junction device", "Three-layer, two-junction device", "Four-layer, three-junction device"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/power-electronics-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": In a power transistor, which parameter is controlled?", "options": ["IC", "IB", "VCE", "VBE"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/power-electronics-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": A power transistor is a device which is:", "options": ["Two-terminal, bipolar, voltage-controlled", "Three-terminal, bipolar, current-controlled", "Three-terminal, unipolar, voltage-controlled", "Two-terminal, unipolar, current-controlled"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/power-electronics-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": The IB vs VBE curve of a power transistor is:", "options": ["Resembling the diode curve", "An exponentially decaying curve", "A parabolic curve", "A straight line Y = IB"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/power-electronics-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": The forward current gain α is given by:", "options": ["IC / IB", "IE / IB", "IE / IC", "IC / IE"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/power-electronics-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": Power loss will be maximum when:", "options": ["Both V and I are minimum", "Only V is maximum", "Both V and I are maximum", "Only I is maximum"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/power-electronics-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": In an AC-DC converter, a diode might be used as:", "options": ["A freewheeling diode", "A filter", "A voltage source", "A phase-angle controller"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/power-electronics-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "power-electronics-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": A p-n junction diode is forward biased when the width of the depletion region:", "options": ["Remains constant", "Increases", "Decreases", "First increases then decreases"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/power-electronics-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": The output of a multiplexer depends on:", "options": ["Select inputs", "Data inputs", "Select outputs", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": CMRR stands for:", "options": ["Common mode rejection ratio", "Common module rejection ratio", "Common method rejection ratio", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": Enable input is:", "options": ["Select input", "Decoded input", "Strobe", "Sink"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": The pioneer of radio development was:", "options": ["Lee Forest", "Graham Bell", "Newton", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": ____ is more economical.", "options": ["RAM", "ROM", "PPROM", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": The smallest particle of an element is called:", "options": ["Atom", "Element", "Electron", "Proton"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": CD-ROM is a type of ____ memory.", "options": ["Memory register", "Non-volatile", "Semiconductor", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": VHDL stands for:", "options": ["Very High Definition Language", "Very High Distributed Language", "Variable Definition Language", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": _____ is not a primary storage device.", "options": ["Optical disk", "Hard disk", "RAM", "None of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "topic": "electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers", "question": ": In a 1-to-8 multiplexer, how many AND gates are required?", "options": ["4", "8", "4", "3"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electronic-circuit-design-mcqs-quizlet-bank-of-solved-questions-answers/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Who is the detective in The Body in the Library?", "options": ["Hercule Poirot", "Miss Marple", "Inspector Japp", "Tommy Beresford"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Where is the first body found?", "options": ["A hotel room", "A car trunk", "The library at Gossington Hall", "A seaside villa"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Who discovers the body?", "options": ["Miss Marple", "Colonel and Mrs. Bantry", "Inspector Slack", "Conway Jefferson"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Who is the first victim?", "options": ["Pamela Reeves", "Ruby Keene", "Josie Turner", "Adelaide Jefferson"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What is Ruby Keene’s profession?", "options": ["Nurse", "Dancer/hostess at the Majestic Hotel", "Teacher", "Governess"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Who is Conway Jefferson?", "options": ["Ruby’s father", "A wealthy crippled man at the Majestic Hotel", "The local police inspector", "The Bantrys’ neighbor"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What had Conway Jefferson planned to do for Ruby?", "options": ["Marry her", "Adopt her and leave her money", "Send her abroad", "Give her a job"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Who are Conway Jefferson’s main heirs before Ruby?", "options": ["His children", "His in-laws, Mark and Adelaide", "His brother", "Miss Marple"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Who is Josie Turner?", "options": ["Ruby’s cousin and co-worker", "Conway Jefferson’s nurse", "Adelaide’s friend", "Miss Marple’s maid"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Why would Mark Gaskell and Adelaide Jefferson object to Ruby’s adoption?", "options": ["They disliked her personally", "They would lose their inheritance", "Ruby threatened them", "Ruby accused them of fraud"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Who is the second victim in the story?", "options": ["Adelaide Jefferson", "Josie Turner", "Pamela Reeves", "Colonel Bantry"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What is Pamela Reeves’ connection to Ruby?", "options": ["She was her friend", "She was a random girl used to disguise Ruby’s body", "She was Ruby’s cousin", "She worked at the hotel"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Where is Pamela’s body found?", "options": ["In a quarry inside a burned-out car", "In the Bantrys’ garden", "At the Majestic Hotel", "In a lake"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Who is Inspector Slack?", "options": ["The police officer investigating the case", "Ruby’s relative", "A guest at the hotel", "Colonel Bantry’s friend"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Why is Mrs. Bantry eager for Miss Marple’s help?", "options": ["To prove her husband’s innocence", "To protect the Bantrys’ reputation", "To solve the crime faster than the police", "She mistrusts Inspector Slack"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What role does Miss Marple play in the investigation?", "options": ["She is an official detective", "She quietly observes and offers insights", "She interrogates all suspects", "She disguises herself"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What trick was used with Ruby’s body?", "options": ["It was dressed in Pamela’s clothes and placed in the Bantrys’ library", "It was drowned to remove evidence", "It was buried in the garden", "It was posed as an accident"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Who are ultimately revealed as the murderers?", "options": ["Adelaide and Mark", "Colonel Bantry and his wife", "Mark Gaskell and Josie Turner", "Conway Jefferson and Ruby"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Why was Pamela killed?", "options": ["She witnessed the crime", "To use her clothing to disguise Ruby’s death time", "She blackmailed the killers", "She loved Ruby’s fiancé"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What theme does the novel emphasize?", "options": ["Greed and inheritance", "War and peace", "Politics and betrayal", "Love and forgiveness"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "How does Miss Marple identify the killers?", "options": ["By fingerprints", "By noticing human behavior patterns", "By handwriting analysis", "By bribing suspects"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What is Miss Marple’s method of deduction often based on?", "options": ["Comparing suspects to people she knows in St. Mary Mead", "Forensic science", "Following footprints", "Consulting books"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Who was Ruby romantically linked to?", "options": ["Conway Jefferson", "A young man at the hotel", "Colonel Bantry", "Inspector Slack"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Why was Ruby attractive to Jefferson?", "options": ["She reminded him of his late daughter", "She was a trained nurse", "She was highly educated", "She was wealthy"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "How does Miss Marple outwit the murderers?", "options": ["She predicts their lies and sets traps", "She follows them secretly", "She forges a will", "She bribes Josie Turner"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What type of novel is The Body in the Library?", "options": ["Spy thriller", "Country house murder mystery", "Legal drama", "Adventure romance"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What is Colonel Bantry’s biggest fear?", "options": ["Being accused of murder", "Losing his estate", "His wife leaving him", "Miss Marple’s disapproval"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What does the placement of the body in the library symbolize?", "options": ["A deliberate attempt to shock and mislead", "A coincidence", "A ritual killing", "Random chance"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What quality of Miss Marple helps her succeed where police fail?", "options": ["Her knowledge of poisons", "Her understanding of human nature", "Her wealth", "Her official power"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What is Adelaide Jefferson’s relation to Conway Jefferson?", "options": ["His daughter-in-law", "His niece", "His sister", "His secretary"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What is Mark Gaskell’s relation to Conway Jefferson?", "options": ["His son-in-law", "His nephew", "His brother-in-law", "His cousin"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Why did Mark Gaskell conspire in the murder?", "options": ["He wanted Jefferson’s fortune", "He loved Josie", "He feared exposure", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "How does Josie Turner benefit from Ruby’s death?", "options": ["She inherits Jefferson’s fortune indirectly", "She gains control at the hotel", "She hides her jealousy of Ruby", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What was Ruby’s personality described as?", "options": ["Shy and quiet", "Pretty but shallow", "Ambitious and charming", "Strict and serious"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "How did the killers attempt to confuse the time of death?", "options": ["By using Pamela’s clothes on Ruby’s body", "By moving the clock", "By bribing the doctor", "By burning the body"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What kind of village is St. Mary Mead?", "options": ["A small quiet village", "A bustling city", "A seaside town", "A mountain village"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Why is Mrs. Bantry socially worried about the murder?", "options": ["People will gossip about a body in her house", "She may be accused", "She dislikes the police", "She is friends with Ruby"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "How does Inspector Slack feel about Miss Marple?", "options": ["He admires her", "He dismisses her as an old woman", "He is afraid of her", "He hires her officially"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What proves Miss Marple right in the end?", "options": ["The killers’ confession", "Evidence aligning with her deductions", "A written diary", "A witness"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Which motif is central in the novel?", "options": ["Class differences", "Female intuition versus official authority", "War memories", "Rural nostalgia"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What genre is Christie most associated with?", "options": ["Gothic horror", "Detective/mystery fiction", "Romance", "Fantasy"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What does the case highlight about greed?", "options": ["It drives people to kill for money", "It is less dangerous than jealousy", "It is forgivable", "It only affects the poor"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Which pair forms the criminal duo in the story?", "options": ["Adelaide and Josie", "Mark and Josie", "Ruby and Pamela", "Bantry and Jefferson"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What does Miss Marple’s success say about appearances?", "options": ["Elderly women are underestimated", "Rich people are always guilty", "Hotels are dangerous", "Beauty equals innocence"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What method does Christie use to mislead readers?", "options": ["False clues and red herrings", "Detailed police reports", "Direct confessions", "Simplistic storytelling"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "Who provides comic relief in the novel?", "options": ["Colonel Bantry", "Inspector Slack", "Pamela Reeves", "Ruby Keene"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What is the narrative perspective of the novel?", "options": ["First person", "Third person omniscient", "Poirot’s diary", "Police records"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "How does Miss Marple earn respect in the end?", "options": ["She explains the case clearly and proves the police wrong", "She arrests the killers herself", "She testifies in court", "She takes Jefferson’s inheritance"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What is the symbolic role of the library?", "options": ["A place of knowledge ironically hiding a crime", "A random background", "A family secret room", "A hotel lounge"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "the-body-in-the-library-1942-mcqs-summary", "topic": "the-body-in-the-library-1942-mcqs-summary", "question": "What is the ultimate resolution of the story?", "options": ["The killers are exposed and arrested thanks to Miss Marple", "Jefferson disinherits everyone", "Colonel Bantry sells his estate", "Ruby is proven alive"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-body-in-the-library-1942-mcqs-summary/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is a primary function of a library?", "options": ["Lending and providing access to information", "Selling books", "Organizing events only", "Archiving newspapers"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Who is considered the father of library science?", "options": ["S.R. Ranganathan", "Melvil Dewey", "Paul Otlet", "Charles Cutter"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The first step in library classification is:", "options": ["Cataloging", "Analysis of the subject", "Notation", "Indexing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following classification systems is most widely used in public libraries worldwide?", "options": ["Dewey Decimal Classification", "Colon Classification", "Library of Congress Classification", "Universal Decimal Classification"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "MARC in library science stands for:", "options": ["Modern Academic Research Catalog", "Manual Reference Catalog", "Metadata Retrieval Code", "Machine-Readable Cataloging"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Bibliography refers to:", "options": ["Study of library staff", "List of books and references", "Arrangement of furniture in a library", "Book lending process"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is a type of indexing?", "options": ["Author indexing", "Keyword indexing", "Subject indexing", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "A special library is one that:", "options": ["Serves the general public", "Focuses only on children’s books", "Serves a specific organization or institution", "Stores rare manuscripts"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "In library science, CCF stands for:", "options": ["Central Cataloging Facility", "Classified Cataloging File", "Colon Classification Format", "Comprehensive Collection Framework"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which law of Ranganathan states, \"Save the time of the reader\"?", "options": ["First Law", "Second Law", "Third Law", "Fifth Law"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The Dewey Decimal Classification for Philosophy and Psychology is:", "options": ["100", "200", "300", "400"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is NOT a type of library?", "options": ["National Library", "Public Library", "School Library", "Bookstore"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which type of catalog lists books alphabetically by subject?", "options": ["Author catalog", "Title catalog", "Subject catalog", "Keyword catalog"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The full form of UDC is:", "options": ["Universal Data Catalog", "Universal Decimal Classification", "United Documentation Center", "Unified Database Catalog"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The term “circulation” in a library refers to:", "options": ["Book lending and returning", "Library cataloging", "Staff training", "Newspaper subscriptions"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is a non-book material?", "options": ["Maps", "Manuscripts", "DVDs", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is a primary source of information?", "options": ["Textbooks", "Original research articles", "Encyclopedias", "Bibliographies"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which classification system uses a notation of numbers and dots to represent subjects?", "options": ["Colon Classification", "Dewey Decimal Classification", "Library of Congress Classification", "Bliss Classification"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "In a library, a union catalog:", "options": ["Lists holdings of multiple libraries", "Provides book prices", "Catalogs rare manuscripts only", "Tracks library staff"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Reference service in a library includes:", "options": ["Lending books without return", "Answering queries and guiding research", "Arranging chairs and tables", "Writing library rules"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is an essential element of a library catalog?", "options": ["Author", "Title", "Subject", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The Library of Congress Classification system is mainly used in:", "options": ["Public libraries", "Academic and research libraries", "School libraries", "Personal libraries"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Cataloging is defined as:", "options": ["Borrowing books from the library", "Process of describing and creating entries for library resources", "Arranging furniture in a library", "Training library staff"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Who introduced the 5 Laws of Library Science?", "options": ["Melvil Dewey", "Paul Otlet", "S.R. Ranganathan", "Charles Cutter"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "A serial publication is one that:", "options": ["Is published only once", "Appears at regular intervals", "Contains only fiction", "Is exclusively digital"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The main purpose of interlibrary loan is:", "options": ["To sell books", "To borrow books from another library for users", "To classify books", "To archive newspapers"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is a digital library initiative in India?", "options": ["DELNET", "NDL", "Both A and B", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Indexing helps in:", "options": ["Quick retrieval of information", "Bookbinding", "Maintaining library finances", "Organizing events"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is considered a secondary source of information?", "options": ["Research articles", "Encyclopedias", "Original manuscripts", "Patents"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The first public library in the world was established in:", "options": ["Alexandria", "London", "Boston", "Paris"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The term “catalog card” refers to:", "options": ["Book lending record", "Physical card containing bibliographic details of a book", "Fine receipt", "Membership card"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is a form of subject access point in a catalog?", "options": ["Author", "Keyword", "Subject heading", "Publisher"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Bibliographic description includes:", "options": ["Author, title, edition", "Place of publication, publisher, date", "Physical description of the book", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The term “OPAC” stands for:", "options": ["Online Public Access Catalog", "Open Private Academic Catalog", "Official Public Academic Collection", "Organized Print Access Catalog"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Library classification provides:", "options": ["Systematic arrangement of books", "Increase in library fines", "Entertainment to readers", "Collection of newspapers"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is a method of physical book arrangement in a library?", "options": ["Alphabetical", "Numerical", "Classified", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The U.S. Library of Congress has its headquarters in:", "options": ["New York", "Washington D.C.", "Boston", "Chicago"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is a major function of a national library?", "options": ["Lending books to students", "Collection and preservation of national publications", "Organizing book fairs", "Selling old books"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which classification system uses letters and numbers in its notation?", "options": ["Dewey Decimal Classification", "Colon Classification", "Library of Congress Classification", "Bliss Classification"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is NOT a type of reference service?", "options": ["Bibliographic instruction", "Current awareness service", "Book lending", "Abstracting service"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "In Ranganathan’s Colon Classification, the main facets are:", "options": ["Personality, Matter, Energy", "Title, Author, Publisher", "Subject, Index, Bibliography", "Genre, Topic, Author"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The purpose of a union list of periodicals is to:", "options": ["Track books", "Show serials held by different libraries", "Arrange furniture", "Manage staff"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is a type of library catalog?", "options": ["Dictionary catalog", "Classified catalog", "Alphabetical catalog", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Microform is used for:", "options": ["Storage of compact digital files", "Preservation of documents in miniature", "Lending books", "Binding journals"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Cataloging rules are designed to:", "options": ["Standardize bibliographic records", "Classify books by price", "Sell old books", "Track library staff"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is a major digital library in Pakistan?", "options": ["Higher Education Commission Digital Library", "National Library of Pakistan Digital Collections", "Pakistan Research Repository", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Bibliometrics is:", "options": ["Study of library staff performance", "Statistical analysis of publications", "Book lending procedure", "Furniture arrangement in library"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Classification helps in:", "options": ["Quick retrieval of information", "Library budgeting", "Staff recruitment", "Organizing events"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is an example of an academic library?", "options": ["Public library in Lahore", "Punjab University Library", "Local community library", "School library in Islamabad"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is NOT a library service?", "options": ["Reference service", "Lending service", "Cataloging service", "Selling tickets"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The main objective of a school library is to:", "options": ["Support the curriculum and student learning", "Provide public access to books", "Sell textbooks to students", "Conduct national research projects"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Who is known as the father of modern library science?", "options": ["Charles Cutter", "Melvil Dewey", "S.R. Ranganathan", "Paul Otlet"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The term “serials” in libraries refers to:", "options": ["Newspapers and magazines", "Only books", "Manuscripts", "Audio-visual materials"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "A bibliographic record contains:", "options": ["Author, title, edition", "Publisher, date, place of publication", "Physical description", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The main aim of abstracting services is:", "options": ["To provide a detailed analysis of full-text", "To provide concise summaries of documents", "To classify books", "To arrange journals"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is an example of open access resources?", "options": ["JSTOR (paid)", "IEEE Xplore", "DOAJ (Directory of Open Access Journals)", "SpringerLink"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The principal law in S.R. Ranganathan’s Five Laws of Library Science is:", "options": ["Books are for use", "Every reader his/her book", "Save the time of the reader", "Library is a growing organism"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The purpose of a reference librarian is to:", "options": ["Provide reading recommendations and research guidance", "Repair library furniture", "Manage accounts", "Sell books"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which classification system is based on facets?", "options": ["Dewey Decimal Classification", "Colon Classification", "Library of Congress", "Universal Decimal Classification"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The main advantage of OPAC is:", "options": ["Quick search and retrieval of library items", "Reduces staff workload", "Eliminates the need for books", "Tracks library fines"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Indexing and abstracting help in:", "options": ["Book lending", "Quick retrieval of information", "Furniture arrangement", "Staff recruitment"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is NOT part of a library classification system?", "options": ["Notation", "Class number", "Cataloging rules", "Color coding of furniture"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Bibliotherapy refers to:", "options": ["Therapy using books", "Book repair technique", "Library security system", "Book sale promotion"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The HEC Digital Library in Pakistan provides access to:", "options": ["National newspapers", "International research journals and e-books", "Fiction books only", "Government forms"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Abstracting differs from indexing because it:", "options": ["Provides only keywords", "Provides a summary of content", "Classifies books", "Arranges periodicals"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Classification is necessary because:", "options": ["It arranges documents systematically", "It reduces the cost of books", "It increases staff workload", "It replaces cataloging"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is an example of non-book material in libraries?", "options": ["Audio CDs", "DVDs", "E-books", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The first step in cataloging a book is:", "options": ["Assigning a call number", "Determining authorship and title", "Shelving the book", "Lending to a reader"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The function of a union catalog is:", "options": ["Listing resources held by multiple libraries", "Classifying books", "Lending books to students", "Conducting bibliometric analysis"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is a popular library classification system?", "options": ["Dewey Decimal Classification", "Colon Classification", "Library of Congress Classification", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following refers to the process of arranging books according to their subject?", "options": ["Cataloging", "Classification", "Indexing", "Abstracting"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The main goal of a public library is:", "options": ["Support general public education and reading habits", "Publish research journals", "Conduct national exams", "Maintain private collections"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is an example of a digital library?", "options": ["HathiTrust", "National Digital Library of India", "Internet Archive", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Bibliometrics can be used to:", "options": ["Measure the impact of research publications", "Repair books", "Arrange furniture", "Maintain library staff"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The term “metadata” in libraries refers to:", "options": ["Library furniture layout", "Information about books, such as title, author, and subject", "Library rules", "Membership forms"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The main difference between primary and secondary sources is:", "options": ["Primary sources are original, secondary sources are interpretations", "Primary sources are encyclopedias", "Secondary sources are fiction books", "Primary sources are online only"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The process of organizing, storing, and retrieving information is called:", "options": ["Cataloging", "Librarianship", "Information management", "Indexing"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is NOT a type of periodical?", "options": ["Journals", "Magazines", "Newspapers", "Encyclopedias"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is a national library of Pakistan?", "options": ["Punjab University Library", "National Library of Pakistan", "Islamabad Public Library", "Karachi University Library"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Microfiche and microfilm are used for:", "options": ["Storing large volumes of documents in miniature form", "Shelving books", "Cataloging new books", "Lending services"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The purpose of a subject heading is to:", "options": ["Provide a standardized term for retrieval of documents", "Classify books alphabetically", "Record library fines", "Label furniture"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is a key principle of reference service?", "options": ["Conduct meetings", "Sell books efficiently", "Arrange chairs", "Save the time of the reader"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The Dewey Decimal Classification system is divided into:", "options": ["10 main classes", "50 main classes", "100 main classes", "26 main classes"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "In a library, the term “circulation” refers to:", "options": ["Cataloging books", "Lending and returning of library materials", "Classifying books", "Archiving old newspapers"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "“Library Science” is also known as:", "options": ["Literary Criticism", "Bookkeeping", "Information Science", "Publication Management"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is an example of an e-resource?", "options": ["E-journal", "E-book", "Online database", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is NOT a function of a library?", "options": ["Preservation of knowledge", "Lending books", "Organizing reading programs", "Conducting political campaigns"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The primary function of cataloging is to:", "options": ["Describe and record library materials", "Classify books by price", "Sell old books", "Arrange furniture"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Reference books include:", "options": ["Dictionaries, Encyclopedias, Directories", "Novels", "Magazines", "Comic books"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Interlibrary loan allows:", "options": ["Borrowing from the same library only", "Sale of old books", "Libraries to lend materials to each other", "Bookbinding services"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The primary purpose of abstracting journals is:", "options": ["Summarize articles for quick review", "Provide full text", "Lend books", "Index books alphabetically"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Which of the following is a library service to students?", "options": ["Bibliographic instruction", "Reference service", "Lending service", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The main aim of a digital library is:", "options": ["Archive furniture", "Replace physical libraries completely", "Sell books online", "Provide online access to resources"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The term “circulation desk” refers to:", "options": ["Place where books are borrowed and returned", "Library administration office", "Reading room", "Bookbinding area"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Classification schemes are designed to:", "options": ["Organize furniture", "Organize materials for easy retrieval", "Sell books efficiently", "Track library fines"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The main difference between OPAC and card catalog is:", "options": ["OPAC is digital, card catalog is physical", "OPAC is for staff only", "Card catalog is online", "OPAC is slower than card catalog"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "Metadata in digital libraries includes:", "options": ["Staff schedule", "Furniture layout", "Author, title, date, keywords", "Fine collection"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-past-papers-mcqs", "topic": "library-science-past-papers-mcqs", "question": "The main role of a library is to:", "options": ["Conduct political campaigns", "Preserve knowledge and facilitate access to information", "Sell publications", "Organize sports events"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-past-papers-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "In library science, what does the term “bibliography” refer to?", "options": ["A list of library fines", "A list of works on a particular subject or by a particular author", "A catalog of library materials", "A report on library usage"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "In library science, what does the term “cataloging” refer to?", "options": ["A list of library fines", "The process of creating bibliographic records for library materials", "A catalog of library events", "A report on library usage"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "In library science, what does the term “circulation” refer to?", "options": ["Shelving books", "Checking out and returning library materials", "Library events and programs", "Cataloging new acquisitions"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "In library science, what does the term “embedded librarian” mean?", "options": ["A librarian who is integrated into a specific academic department or course", "A librarian who specializes in cataloging", "A librarian who works in the library basement", "A librarian who manages library events"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "In library science, what is the purpose of a call number?", "options": ["To indicate the location of a book on the shelves", "To track library fines", "To identify the library branch", "To catalog new acquisitions"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "In library science, what is the purpose of a patron database?", "options": ["To manage information about library users and their borrowing history", "To provide reference services", "To organize library events", "To catalog new acquisitions"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "In library science, what is the purpose of a vertical file?", "options": ["To store oversized books", "To collect and organize pamphlets, clippings, and other materials on a specific topic", "To manage library finances", "To organize library events"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "In library science, what is the purpose of an abstracting and indexing service?", "options": ["To manage library finances", "To check out and return library materials", "To organize library events", "To provide a brief description of an article or resource"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What does the acronym ISBN stand for in library science?", "options": ["International Standard Book Number", "Integrated System for Book Navigation", "Indexing and Sorting of Books Network", "Interlibrary System for Book Notation"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What does the term “ILLiad” refer to in library science?", "options": ["A famous library", "A library advocacy group", "A type of library classification", "An interlibrary loan management system"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What does the term “open access” mean in the context of library science?", "options": ["Library hours are extended to the public", "Only specific individuals can access library resources", "Materials are freely accessible to the public online", "The library is temporarily closed"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What does the term “periodical” refer to in library science?", "options": ["A daily newspaper", "A reference book", "A magazine or journal published at regular intervals", "A rare book"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What does the term “weeding” mean in library science?", "options": ["Watering library plants", "Cataloging new acquisitions", "Removing outdated or damaged materials from the collection", "Providing reference services"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the primary function of a library’s acquisitions department?", "options": ["To organize library events", "To manage library collections", "To provide reference services", "To select and purchase new materials for the library"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the primary function of a library’s collection development policy?", "options": ["To organize library events", "To guide the selection and acquisition of library materials", "To provide reference services", "To manage library finances"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the primary function of a library’s information literacy program?", "options": ["To organize library events", "To provide reference services", "To teach users how to find, evaluate, and use information effectively", "To manage library finances"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the primary function of a library’s interlibrary loan department?", "options": ["To facilitate borrowing materials from other libraries", "To catalog new acquisitions", "To provide readers' advisory services", "To organize library events"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the primary function of a library’s makerspace?", "options": ["To organize library events", "To provide reference services", "To manage library finances", "To offer a collaborative space for creating, learning, and innovating"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the primary function of a library’s marketing and promotion efforts?", "options": ["To organize library events", "To provide reference services", "To manage library finances", "To raise awareness of library services and resources"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the primary function of a library’s outreach librarian?", "options": ["To organize library events", "To provide reference services", "To manage library finances", "To connect with and serve the community beyond the library walls"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the primary function of a library’s preservation department?", "options": ["To repair and protect library materials", "To provide reference services", "To organize library events", "To select and purchase new materials for the library"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the primary function of an interlibrary loan service?", "options": ["Organizing library events", "Managing library collections", "Sharing resources among different libraries", "Cataloging new acquisitions"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the primary goal of library outreach programs?", "options": ["To manage library finances", "To provide readers' advisory services", "To organize library events", "To connect with and serve the community beyond the library walls"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the primary purpose of a library catalog?", "options": ["To facilitate access to library materials", "To organize library events", "To check out books", "To collect fines"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the primary purpose of a library circulation desk?", "options": ["To manage library finances", "To provide readers' advisory services", "To check out and return library materials", "To catalog new acquisitions"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the primary purpose of a library consortium?", "options": ["To organize library events", "To facilitate collaboration and resource-sharing among libraries", "To create a classification system", "To manage library finances"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the primary purpose of a library’s archives?", "options": ["To organize library events", "To provide reference services", "To collect and preserve historical documents and records", "To manage library finances"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the purpose of a library’s censorship policy?", "options": ["To organize library events", "To establish guidelines for handling challenges to library materials", "To provide reference services", "To manage library finances"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the purpose of a library’s digital preservation program?", "options": ["To organize library events", "To provide reference services", "To ensure the long-term access and usability of digital materials", "To manage library finances"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the purpose of a library’s disaster recovery plan?", "options": ["To organize library events", "To provide reference services", "To manage library finances", "To outline procedures for responding to and recovering from emergencies or disasters"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the purpose of a library’s privacy policy?", "options": ["To organize library events", "To provide reference services", "To manage library finances", "To outline how the library protects the confidentiality of user information"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the purpose of a library’s reserve collection?", "options": ["To store rare books", "To organize library events", "To manage library finances", "To provide study materials for specific courses"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the purpose of a library’s spatial planning and design?", "options": ["To organize library events", "To create an inviting and functional physical space for library users", "To provide reference services", "To manage library finances"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the purpose of a library’s strategic plan?", "options": ["To organize library events", "To provide reference services", "To manage library finances", "To outline long-term goals and priorities for the library"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the purpose of a library’s summer reading program?", "options": ["To organize library events", "To provide reference services", "To manage library finances", "To promote reading and prevent the \"summer slide\" in literacy skills"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the purpose of a library’s weeding policy?", "options": ["To organize library events", "To establish guidelines for removing outdated or damaged materials from the collection", "To provide reference services", "To manage library finances"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the purpose of a reference librarian in a library?", "options": ["To provide readers' advisory services", "To manage library finances", "To assist users in finding information", "To maintain the library's physical space"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the purpose of an abstract in library databases?", "options": ["To summarize the main ideas of a book", "To create an index of library materials", "To organize library collections", "To provide a brief description of an article or resource"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the purpose of the ALA Code of Ethics in library science?", "options": ["To organize library events", "To provide reference services", "To manage library finances", "To guide the professional conduct of librarians"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "What is the purpose of the Library Bill of Rights in library science?", "options": ["To organize library events", "To provide reference services", "To manage library finances", "To assert the rights of library users and the responsibilities of librarians"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "Which cataloging standard is commonly used for describing electronic resources?", "options": ["AACR2 (Anglo-American Cataloging Rules, 2nd edition)", "MARC (Machine-Readable Cataloging)", "Dublin Core", "RDA (Resource Description and Access)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "Which classification system is widely used for organizing library collections?", "options": ["Library of Congress Classification", "Dewey Decimal Classification", "Universal Decimal Classification", "Colon Classification"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "Which library professional organization advocates for intellectual freedom?", "options": ["ALA (American Library Association)", "OCLC (Online Computer Library Center)", "IFLA (International Federation of Library Associations and Institutions)", "ACRL (Association of College and Research Libraries)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "Which library service allows users to access digital books and materials remotely?", "options": ["Circulation", "Interlibrary loan", "E-resources", "Reference services"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "Which organization is responsible for assigning International Standard Serial Numbers (ISSN)?", "options": ["OCLC (Online Computer Library Center)", "ALA (American Library Association)", "ISSN International Centre", "LC (Library of Congress)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "Which organization provides the Dewey Decimal Classification system?", "options": ["DDC (Decimal Classification Division)", "ALA (American Library Association)", "LC (Library of Congress)", "OCLC (Online Computer Library Center)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "library-science-mcqs", "topic": "library-science-mcqs", "question": "Which type of library primarily serves the needs of a specific institution or organization?", "options": ["Special library", "Public library", "Academic library", "National library"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/library-science-mcqs/"}
{"subject": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "topic": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "question": ": The ripple factor of a power supply is:", "options": ["Diode rating", "Filter efficiency", "Power output", "Voltage regulation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-multiple-choice-questions-mcqs-questions-answers/"}
{"subject": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "topic": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "question": ": LED stands for:", "options": ["Light Energy Display", "Light Emitting Display", "Light Emitting Detector", "Light Emitting Diode"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-multiple-choice-questions-mcqs-questions-answers/"}
{"subject": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "topic": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "question": ": The multimeter is an instrument that measures:", "options": ["Resistance", "Voltage", "Current", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-multiple-choice-questions-mcqs-questions-answers/"}
{"subject": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "topic": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "question": ": When the temperature of the semiconductor is increased, the conductivity will:", "options": ["Decrease", "Increase", "Same every time", "All of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-multiple-choice-questions-mcqs-questions-answers/"}
{"subject": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "topic": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "question": ": Electrons emitted from hot metal surfaces is a process of:", "options": ["Static emission of electrons", "Current emission of electrons", "Thermionic emission of electrons", "All of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-multiple-choice-questions-mcqs-questions-answers/"}
{"subject": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "topic": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "question": ": Common transistor has three leads named as:", "options": ["Common emitter bias", "Emitter collector case", "Collector base emitter", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-multiple-choice-questions-mcqs-questions-answers/"}
{"subject": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "topic": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "question": ": The function of a zener diode is:", "options": ["Current amplifier", "Voltage amplifier", "Regulators", "All of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-multiple-choice-questions-mcqs-questions-answers/"}
{"subject": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "topic": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "question": ": DSC means:", "options": ["Digital Server Omitter", "Digital Storage Oscilloscope", "Device Storage Omitter", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-multiple-choice-questions-mcqs-questions-answers/"}
{"subject": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "topic": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "question": ": The total number of electrons in an atom is termed as:", "options": ["Atomic radius", "Atomic weight", "Atomic size", "Atomic number"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-multiple-choice-questions-mcqs-questions-answers/"}
{"subject": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "topic": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "question": ": Which of the following logic gates are known as universal gates?", "options": ["NOR, NAND, XNOR", "XOR, NOR, NAND", "NOT, AND, OR", "NOR, NAND"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-multiple-choice-questions-mcqs-questions-answers/"}
{"subject": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "topic": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "question": ": To store one BCD digit, how many bits are needed?", "options": ["1", "2", "3", "4"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-multiple-choice-questions-mcqs-questions-answers/"}
{"subject": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "topic": "basic-electronics-multiple-choice-questions-mcqs-questions-answers", "question": ": What is Avalanche breakdown in a zener diode?", "options": ["Voltage multiplication", "Electric current multiplication", "Electrons are decelerated", "Rise in voltage"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/basic-electronics-multiple-choice-questions-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Programming Solved Mcqs With Answer", "question": "______ are the advantages of hierarchical routing.", "options": ["Flexibility", "Reliability", "Scalability", "Portability"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/networking-programming-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Programming Solved Mcqs With Answer", "question": "One of the following the java.net Net Address class represents.", "options": ["Socket", "Protocol", "IP Address", "MAC Address"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/networking-programming-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Programming Solved Mcqs With Answer", "question": "______is the Central Computer powerful than other computers in the network.", "options": ["Server", "Hub", "Client", "Switch"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/networking-programming-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Programming Solved Mcqs With Answer", "question": "TCP groups a number of bytes together______in a packets.", "options": ["user datagram", "datagram", "segment", "packet"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/networking-programming-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Programming Solved Mcqs With Answer", "question": "One of the following classes are used for connection-less socket programming?", "options": ["Datagram Socket", "Datagram Packet", "Both Datagram Socket", "Datagram Packet"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/networking-programming-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Programming Solved Mcqs With Answer", "question": "One of the following is a path vector routing?", "options": ["exterior gateway protocol", "inter-domain routing", "network routing protocol", "All of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/networking-programming-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Programming Solved Mcqs With Answer", "question": "_______is the Machine that places the request to access the data", "options": ["Client Machine", "Server Machine", "Request Machine", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/networking-programming-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Programming Solved Mcqs With Answer", "question": "______is the default port of SMTP.", "options": ["25", "70", "80", "85"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/networking-programming-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Programming Solved Mcqs With Answer", "question": "______ Net Ware protocol provides link-state routing.", "options": ["SAP", "RIP", "NLSP", "NCP"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/networking-programming-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Programming Solved Mcqs With Answer", "question": "One of the following applications of the Client and Server Model?", "options": ["Email", "Network Printing", "World Wide Web", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/networking-programming-solved-mcqs-with-answer/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "What is a virtual-memory miss called?", "options": ["Hit miss", "Page hit", "Page miss", "Page fault"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "When a process is copied into the main memory from the secondary memory, what is this operation called?", "options": ["Swapping", "Paging", "Segmentation", "Demand paging"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "What is the term for a process that spends more time paging than executing?", "options": ["It spends more time paging than executing", "It spends less time paging than executing", "Page fault occurs", "Swapping cannot take place"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "Where does swap space exist?", "options": ["CPU", "Primary memory", "Secondary memory", "None of the mentioned"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "What occurs when a program tries to access a page that is mapped in address space but not loaded in physical memory?", "options": ["Page fault occurs", "Fatal error occurs", "Segmentation fault occurs", "No error occurs"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "Effective access time is directly proportional to:", "options": ["Memory access time", "Page-fault rate", "Hit ratio", "None of the mentioned"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "In the FIFO page replacement algorithm, when a page must be replaced, which page is chosen?", "options": ["Oldest page is chosen", "Newest page is chosen", "Median page is chosen", "None of the mentioned"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "Which algorithm chooses the page that has not been used for the longest period of time when a page needs to be replaced?", "options": ["Additional reference bit algorithm", "Least recently used algorithm", "Counting based page replacement algorithm", "First in first out algorithm"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "The pager concerns with the:", "options": ["Entire thread", "First page of a process", "Individual page of a process", "Entire process"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "The working set model for page replacement is based on the assumption of:", "options": ["Globalization", "Random access", "Modularity", "Locality"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "What is the term for the separation of user logical memory and physical memory?", "options": ["Memory sharing", "Virtual memory", "Memory management", "Memory control"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "Is logical address space larger than physical address space?", "options": ["True", "False", "True"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "Virtual memory can be implemented via:", "options": ["Simple division", "Logical paging", "Demand paging", "Complex division"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "What does COW stand for in memory management?", "options": ["Convert overwrite", "Copy overwrite", "Cut overwrite", "Copy on write"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "What does LRU stand for in page replacement algorithms?", "options": ["Less Recently used", "Least Recurrently used", "Least Randomly used", "Least Recently used"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "Which allocation uses a proportional allocation scheme using priorities rather than size?", "options": ["Simple allocation", "File allocation", "Priority allocation", "Preference allocation"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "Which replacement strategy selects a replacement frame from the set of all frames?", "options": ["Global replacement", "Local replacement", "Module replacement", "Block replacement"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "When any program, no matter how small, occupies an entire partition, this is known as:", "options": ["Fragmentation", "External fragmentation", "Internal fragmentation", "Prior fragmentation"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "Which term describes a process that is busy swapping pages in and out?", "options": ["Division", "External fragmentation", "Thrashing", "Compaction"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "Select the most appropriate term for one or more physically contiguous pages.", "options": ["Allocator", "Object", "Slab", "Cache"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "Which technique is implemented by magnetic disks for secondary memory?", "options": ["Main memory", "Cache", "Buffer", "Virtual memory"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Operating Systems", "topic": "T4Tutorials Virtual Memory Mcqs Questions Answers In Operating Systems", "question": "Because of virtual memory, memory can be shared among:", "options": ["Threads", "Processes", "Instructions", "None of the mentioned"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-memory-mcqs-questions-answers-in-operating-systems/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Who is considered the father of Virtual Reality technology?", "options": ["Jaron Lanier", "Ivan Sutherland", "Mark Zuckerberg", "Steve Mann"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which device is primarily used to immerse users into a virtual reality environment?", "options": ["Smartwatch", "VR Headset", "Projector", "Webcam"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which of the following is an example of an augmented reality application?", "options": ["Google Earth", "Pokémon Go", "Microsoft Excel", "VLC Media Player"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which technology overlays computer-generated images onto the real world?", "options": ["Virtual Reality", "Augmented Reality", "Mixed Reality", "Artificial Intelligence"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "What is the term for combining real-world and virtual elements interactively?", "options": ["Simulation Reality", "Mixed Reality", "Blended Reality", "Hyper Reality"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which company developed the HoloLens AR headset?", "options": ["Google", "Apple", "Microsoft", "Sony"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which VR headset is produced by Meta (formerly Facebook)?", "options": ["Oculus Quest", "Vive Cosmos", "PS VR2", "Magic Leap"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which component is essential for tracking head movement in VR?", "options": ["Gyroscope", "Speaker", "Microphone", "Cooling Fan"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which of the following is NOT a type of AR?", "options": ["Marker-based AR", "Location-based AR", "Projection-based AR", "Telepathic-based AR"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "What does FOV stand for in VR devices?", "options": ["Frame of Video", "Field of View", "Focus on Vision", "Frequency of View"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which technology requires a fully immersive simulated environment?", "options": ["Virtual Reality", "Augmented Reality", "Artificial Intelligence", "Cloud Computing"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which AR framework is developed by Apple for iOS devices?", "options": ["ARCore", "ARKit", "HoloKit", "RealityKit"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which AR framework is developed by Google?", "options": ["ARKit", "ARCore", "Unity AR", "Unreal AR"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which company produces the Vive VR headsets?", "options": ["HTC", "Meta", "Microsoft", "Sony"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "What does “6DoF” stand for in VR and AR systems?", "options": ["Six Degrees of Freedom", "Six Dimensions of Focus", "Six Data Operations Framework", "Six Digital Optical Functions"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which of the following is NOT a VR application area?", "options": ["Medical training", "Gaming", "Tourism simulation", "Baking bread"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which term describes the delay between user action and system response in VR?", "options": ["Bandwidth", "Latency", "Frame Rate", "Resolution"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "What does the term “presence” refer to in VR?", "options": ["Physical body location", "Feeling of being inside the virtual environment", "The number of users connected", "Device battery status"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which VR headset is compatible with PlayStation consoles?", "options": ["HTC Vive", "PS VR", "Oculus Rift", "Meta Quest Pro"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which of these is an example of projection-based AR?", "options": ["Pokémon Go", "Google Maps AR", "Interactive museum displays", "Snapchat filters"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which input device is most commonly used with VR headsets for interaction?", "options": ["Mouse", "Game Controller", "VR Motion Controller", "Keyboard"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "What is the typical refresh rate for a smooth VR experience?", "options": ["30 Hz", "60 Hz", "90 Hz or higher", "120 Hz minimum"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which AR device was developed by Google but discontinued for consumers in 2015?", "options": ["Google Cardboard", "Google Glass", "Google ARKit", "Google Lens"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "What is the process of merging multiple sensor inputs in AR/VR called?", "options": ["Sensor Fusion", "Data Mapping", "Input Merging", "Signal Blending"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which VR display type offers each eye a separate image for depth perception?", "options": ["Monoscopic", "Stereoscopic", "Panoramic", "Flat-screen"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "What is the main difference between AR and VR?", "options": ["VR replaces the real world; AR enhances it", "VR enhances the real world; AR replaces it", "Both replace the real world", "Both only use headsets"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which of the following is a popular VR content development platform?", "options": ["Unity", "Photoshop", "AutoCAD", "MS Word"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which type of AR uses GPS and compass data?", "options": ["Marker-based AR", "Location-based AR", "Projection-based AR", "Gesture-based AR"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which of these is a challenge in VR development?", "options": ["Low latency", "High frame rate", "Motion sickness", "High immersion"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which VR headset was among the first consumer models released in 2016?", "options": ["Oculus Rift CV1", "PS VR2", "Meta Quest 3", "HTC Vive Pro 2"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "What does MR stand for in immersive technologies?", "options": ["Mobile Reality", "Mixed Reality", "Machine Recognition", "Motion Rendering"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which AR application helps furniture placement by overlaying 3D models in real space?", "options": ["IKEA Place", "Google Docs", "Zoom", "Sketch AR"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which sensor is used to detect orientation in VR headsets?", "options": ["Accelerometer", "Barometer", "Thermometer", "Hygrometer"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which field uses VR for simulated surgeries?", "options": ["Education", "Healthcare", "Architecture", "Marketing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which of these is a major benefit of AR in retail?", "options": ["Increased production speed", "Virtual product try-ons", "Faster internet browsing", "Cheaper raw materials"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which VR headset does not require a PC or console to operate?", "options": ["Oculus Quest", "HTC Vive Pro", "PS VR", "Valve Index"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which of the following can cause motion sickness in VR?", "options": ["Low resolution", "High latency", "Low FOV", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "What is the use of haptic feedback in VR?", "options": ["To track motion", "To provide tactile sensations", "To increase visual quality", "To store VR content"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which industry uses AR for maintenance and repair tasks?", "options": ["Oil and Gas", "Banking", "Agriculture", "Literature"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which VR headset is developed by Valve?", "options": ["Oculus Rift", "HTC Vive", "Valve Index", "Meta Quest Pro"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which type of AR uses a physical image or object as a reference point?", "options": ["Marker-based AR", "Projection-based AR", "Location-based AR", "Sensor-based AR"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which VR display method provides a 360-degree environment?", "options": ["Flat Display", "Curved Monitor", "Panoramic Display", "Immersive Head-Mounted Display"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which company introduced the concept of Google Cardboard for low-cost VR?", "options": ["Apple", "Google", "Microsoft", "Sony"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which AR technology projects holograms visible without a headset?", "options": ["Holographic Display", "Projection AR", "Transparent Display", "Immersive Glass"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which field uses AR for battlefield visualization?", "options": ["Military", "Sports", "Education", "Healthcare"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "What is the term for rendering images at different resolutions in VR to improve performance?", "options": ["Pixel Scaling", "Foveated Rendering", "Image Smoothing", "Resolution Blending"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which VR term refers to the number of frames displayed per second?", "options": ["FPS", "FOV", "DoF", "HzR"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Virtual Augmented Reality Mcqs Multimedia System Mcqs", "question": "Which of these platforms is specifically designed for VR meetings?", "options": ["Zoom", "Horizon Workrooms", "Microsoft Excel", "Skype"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtual-augmented-reality-mcqs-multimedia-system-mcqs/"}
{"subject": "social-studies-mcqs", "topic": "social-studies-mcqs", "question": "Which region is considered by historians as the most ancient part of the world?", "options": ["The southern part of Vindhya Mountain", "Gangetic Valley", "North Western Indian Valley", "North Eastern part of India"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/social-studies-mcqs/"}
{"subject": "social-studies-mcqs", "topic": "social-studies-mcqs", "question": "Which Indian state has the most number of Buddhist Viharas?", "options": ["Karnataka", "Jharkhand", "Bihar", "Odisha"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/social-studies-mcqs/"}
{"subject": "social-studies-mcqs", "topic": "social-studies-mcqs", "question": "Which was one of the official languages of the Pallavas?", "options": ["Pali", "Tamil", "Sanskrit", "Kharosti"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/social-studies-mcqs/"}
{"subject": "social-studies-mcqs", "topic": "social-studies-mcqs", "question": "Who established British rule in India?", "options": ["Duplex", "Mir Jafar", "Robert Clive", "Hastings"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/social-studies-mcqs/"}
{"subject": "social-studies-mcqs", "topic": "social-studies-mcqs", "question": "What are lines that join places of equal pressure called?", "options": ["Hythergraph", "Isotherm", "Contour", "Isobar"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/social-studies-mcqs/"}
{"subject": "social-studies-mcqs", "topic": "social-studies-mcqs", "question": "In which year was the National Human Rights Commission of India established?", "options": ["1993", "1992", "1991", "1994"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/social-studies-mcqs/"}
{"subject": "social-studies-mcqs", "topic": "social-studies-mcqs", "question": "What is the universally accepted colour for mountains on maps?", "options": ["Gray", "Snow White", "Dark Green", "Brown"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/social-studies-mcqs/"}
{"subject": "social-studies-mcqs", "topic": "social-studies-mcqs", "question": "What does ‘Siravasthi’ mean?", "options": ["Holy Book", "Temple", "River", "Town"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/social-studies-mcqs/"}
{"subject": "social-studies-mcqs", "topic": "social-studies-mcqs", "question": "Which ocean has one-third of the world’s land surface surrounding it?", "options": ["Atlantic Ocean", "Arctic Ocean", "Indian Ocean", "Pacific Ocean"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/social-studies-mcqs/"}
{"subject": "social-studies-mcqs", "topic": "social-studies-mcqs", "question": "What is the science of constructing maps called?", "options": ["Cartography", "Demography", "Topography", "Geography"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/social-studies-mcqs/"}
{"subject": "social-studies-mcqs", "topic": "social-studies-mcqs", "question": "‘Doldrums’ lie roughly between which latitudes?", "options": ["30° and 40° N & S latitude", "35° and 60° N & S latitude", "5° and 30° N & S latitude", "5° and 50° N & S latitude"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/social-studies-mcqs/"}
{"subject": "social-studies-mcqs", "topic": "social-studies-mcqs", "question": "Who is known as the Father of Economics?", "options": ["Adam Smith", "John Marshall", "Malthus", "Karl Marx"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/social-studies-mcqs/"}
{"subject": "mcqs-of-social-study", "topic": "mcqs-of-social-study", "question": "Who translated the first Holy Quran in Persian?(E) None of these", "options": ["Shah Waliullah", "Shaikh Ahmad Sirhindi", "Shah Ismail Shaheed", "Shah Alam"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-social-study/"}
{"subject": "mcqs-of-social-study", "topic": "mcqs-of-social-study", "question": "The first President of the Muslim League is(E) None of these", "options": ["Nawab Mohsin-ul-Mulk", "Nawab Viqar-ul-Mulk", "Nawab Shah", "Nawab Saleem Ullah"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-social-study/"}
{"subject": "mcqs-of-social-study", "topic": "mcqs-of-social-study", "question": "In July 1905, who divided Bengal into East and West?", "options": ["Lord Morley", "Lord Minto", "Lord Curzon", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-social-study/"}
{"subject": "mcqs-of-social-study", "topic": "mcqs-of-social-study", "question": "In which Act was Diarchy introduced first?(E) None of these", "options": ["1935", "1915", "1919", "1909"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-social-study/"}
{"subject": "mcqs-of-social-study", "topic": "mcqs-of-social-study", "question": "The Simon Commission arrived in India on(E) None of these", "options": ["3rd February, 1927", "3rd February, 1927", "3rd February, 1929", "3rd February, 1928"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-social-study/"}
{"subject": "mcqs-of-social-study", "topic": "mcqs-of-social-study", "question": "From the following, choose the largest map scale(E) 1:50,000(F) None of these", "options": ["1:100,000", "1:60,000", "1:250,000", "1:70,000"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-social-study/"}
{"subject": "mcqs-of-social-study", "topic": "mcqs-of-social-study", "question": "Which King was praised as ‘LakBaksha’?(E) None of these", "options": ["Balban", "Iltumish", "Qut-bu-din Ibek", "Nasurudeen"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-social-study/"}
{"subject": "mcqs-of-social-study", "topic": "mcqs-of-social-study", "question": "The nurturing field is the social progress of(E) School(F) None of these", "options": ["Society", "Family", "House", "Man"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-social-study/"}
{"subject": "mcqs-of-social-study", "topic": "mcqs-of-social-study", "question": "The summer season of India is(E) None of these", "options": ["Middle of June to October", "February to March", "April to August", "March to June"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-social-study/"}
{"subject": "mcqs-of-social-study", "topic": "mcqs-of-social-study", "question": "Official language of Pallavas(E) Sanskrit(F) None of these", "options": ["Tamil", "Grantham", "Hindi", "Pali"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-social-study/"}
{"subject": "mcqs-of-social-study", "topic": "mcqs-of-social-study", "question": "In which city is the highest temperature found in India?(E) Jaisalmer(F) None of these", "options": ["Ajmer", "Jammu", "Bikaner", "Sri Ganganagar"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-social-study/"}
{"subject": "mcqs-of-social-study", "topic": "mcqs-of-social-study", "question": "From the following, which is a peninsula?(E) Arabia(F) None of these", "options": ["Australia", "Japan", "Africa", "Iceland"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-social-study/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which syntax is used to declare a CSS custom property (variable)?", "options": ["$main-color: #ff0000;", "main-color: #ff0000;", "var(–main-color: #ff0000);", "@variable main-color: #ff0000;"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which CSS at-rule allows you to define a property with syntax, initial value, and inheritance?", "options": ["@custom-property", "@variable", "@define", "@property"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which CSS property makes an element include padding and border in its total width?", "options": ["box-sizing: content-box;", "box-sizing: border-box;", "box-sizing: padding-box;", "box-sizing: full-box;"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which box-sizing value makes the width and height apply only to content, excluding padding and border?", "options": ["content-box", "border-box", "padding-box", "inner-box"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which CSS at-rule is used to apply styles based on screen size or device type?", "options": ["@screen", "@responsive", "@media", "@query"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which media feature applies styles only for devices with a minimum width of 1024px?", "options": ["@media (min-width: 1024px) { … }", "and (C)')\" /> (B) @media (width >= 1024px) { … }", "@media screen and (min-width: 1024px) { … }", "Both (A) and (C)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "How can a CSS variable be scoped globally?", "options": ["By declaring it inside body", "By declaring it inside :root", "By declaring it inside html", "By declaring it inside any element"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which property allows smooth animation when using a custom property defined with @property?", "options": ["transform", "animation", "transition", "keyframes"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which @property attribute determines if a property is inherited?", "options": ["inheritable", "inherit", "inherits", "inheritance"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which box-sizing value is recommended to avoid layout issues when using padding and borders?", "options": ["padding-box", "content-box", "border-box", "full-box"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which @property attribute sets the default value for the custom property?", "options": ["start-value", "default", "value", "initial-value"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which CSS property defines a flex container?", "options": ["flex-container: true;", "display: flex;", "display: block;", "flex: container;"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which property sets the direction of flex items in a container?", "options": ["direction", "flex-order", "flex-direction", "item-direction"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which property allows flex items to wrap onto multiple lines?", "options": ["flex-wrap", "wrap-items", "flex-flow", "line-wrap"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which shorthand property sets both flex-direction and flex-wrap?", "options": ["flex-set", "flex", "flex-style", "flex-flow"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which property controls the alignment of flex items along the main axis?", "options": ["justify-content", "align-items", "align-content", "flex-align"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which property controls the alignment of flex items along the cross axis?", "options": ["justify-content", "align-items", "flex-align", "align-self"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which property allows individual flex items to override the container’s cross-axis alignment?", "options": ["align-self", "justify-self", "flex-order", "flex-item-align"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which property controls the order of flex items in a container?", "options": ["item-order", "flex-order", "order", "position"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which property specifies how much a flex item will grow relative to others?", "options": ["flex-grow", "flex-shrink", "flex-basis", "flex-size"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which property specifies the initial main size of a flex item before free space is distributed?", "options": ["flex-grow", "flex-basis", "flex-shrink", "flex-size"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which property allows a flex item to shrink if necessary?", "options": ["flex-grow", "flex-shrink", "flex-basis", "flex-wrap"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which CSS technique allows layouts to adapt to different viewport sizes?", "options": ["Responsive Web Design (RWD)", "Fixed Layout", "Absolute Positioning", "Static Layout"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which unit is relative to the viewport width?", "options": ["em", "px", "vw", "%"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which unit is relative to the viewport height?", "options": ["rem", "%", "px", "vh"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which RWD technique uses CSS Grid to adapt layouts for different screens?", "options": ["RWD Grid View", "Flexbox Layout", "Absolute Positioning", "Table Layout"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which at-rule applies different styles for different devices or screen widths?", "options": ["@responsive", "@viewport", "@media", "@screen"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which technique ensures images scale correctly on different screen sizes?", "options": ["max-width: 100%; height: auto;", "width: fixed; height: fixed;", "width: auto; height: 100%;", "img-responsive: true;"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which technique ensures videos scale correctly on different screen sizes?", "options": ["width: 100%; height: auto;", "width: fixed; height: fixed;", "video-responsive: true;", "height: 100%; width: auto;"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which is a popular CSS framework for building responsive websites?", "options": ["React", "jQuery", "Bootstrap", "Node.js"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which feature in RWD templates ensures layouts adjust automatically across devices?", "options": ["Fluid grids", "Fixed-width grids", "Absolute positioning", "Table-based layouts"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which CSS property makes a navigation bar responsive on small screens?", "options": ["position: absolute;", "display: block;", "float: left;", "display: flex;"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which CSS property allows a navigation bar to wrap menu items on smaller screens?", "options": ["flex-wrap: wrap;", "overflow: hidden;", "white-space: nowrap;", "display: block;"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which property is used to evenly space items in a responsive flex container?", "options": ["justify-content: space-between;", "align-items: space-between;", "flex: space-between;", "order: space-between;"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which property ensures buttons scale properly in RWD layouts?", "options": ["width: fixed;", "width: 100%; max-width: 200px;", "height: fixed;", "float: left;"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which property ensures form inputs adjust their width based on screen size?", "options": ["width: 100%;", "width: auto;", "max-width: 50px;", "flex-basis: fixed;"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which CSS Grid property defines the number of columns in a responsive layout?", "options": ["grid-count", "grid-columns", "grid-template-columns", "grid-width"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which CSS Grid property defines the spacing between grid items?", "options": ["gap", "spacing", "grid-gap", "margin"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which CSS property allows a grid item to span multiple columns?", "options": ["column-span: 2;", "grid-span: 2;", "grid-width: 2;", "grid-column: span 2;"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which technique ensures responsive images maintain their aspect ratio?", "options": ["height: auto; width: 100%;", "width: auto; height: 100%;", "height: fixed; width: fixed;", "object-fit: none;"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which CSS property ensures responsive videos fill their container while keeping aspect ratio?", "options": ["object-fit: fill;", "object-fit: contain;", "width: fixed; height: fixed;", "float: left;"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which RWD template technique allows a flexible and adaptive layout for all devices?", "options": ["Table-based layouts", "Fixed-width layouts", "Fluid grids", "Absolute positioning"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which CSS property allows flex items to grow and shrink automatically based on available space in RWD layouts?", "options": ["flex: 1;", "flex: 0;", "flex-grow: 0;", "flex-basis: auto;"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which property allows a grid container to automatically adjust rows for responsive layouts?", "options": ["auto-rows", "grid-rows", "grid-row-size", "grid-auto-rows"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which RWD framework uses a 12-column grid system by default?", "options": ["Bootstrap", "Tailwind", "Foundation", "Materialize"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which CSS property ensures elements do not overflow their container in responsive designs?", "options": ["overflow: auto;", "overflow: hidden;", "overflow: visible;", "overflow: scroll;"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which property allows a grid item to span multiple rows in a responsive layout?", "options": ["grid-row: span 2;", "grid-span-row: 2;", "row-span: 2;", "grid-row-start: 2;"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which technique allows embedding responsive templates in a website?", "options": ["Using CSS classes and fluid layouts", "Using fixed tables", "Using absolute positioning", "Using static divs"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which property ensures buttons scale proportionally on different devices?", "options": ["height: 50px;", "width: fixed;", "max-width: 100%;", "float: left;"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Developer Mcqs Css", "question": "Which property ensures forms and inputs adjust for responsive layouts?", "options": ["flex-basis: fixed;", "width: 300px;", "width: 100%;", "height: 50px;"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/web-developer-mcqs-css/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Windows Mcqs Quizlet Bank", "question": ": Windowing and graphics system implements the…", "options": ["computer Interface", "graphical User Interface", "resource Manager", "user Interface"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-windows-mcqs-quizlet-bank/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Windows Mcqs Quizlet Bank", "question": ": In which year was the first operating system developed?", "options": ["1940", "1980", "1910", "1950"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-windows-mcqs-quizlet-bank/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Windows Mcqs Quizlet Bank", "question": ": Which of the following environment subsystems provide different operating systems?", "options": ["services", "responsibilities", "applications", "functions"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-windows-mcqs-quizlet-bank/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Windows Mcqs Quizlet Bank", "question": ": In which year was MS-DOS developed?", "options": ["1984", "1961", "1991", "none of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-windows-mcqs-quizlet-bank/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Windows Mcqs Quizlet Bank", "question": ": Cache manager is responsible for improving the performance of…", "options": ["I/O device", "I/O modules", "programmed I/O", "all of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-windows-mcqs-quizlet-bank/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Windows Mcqs Quizlet Bank", "question": ": In which of the following views are headers and footers visible?", "options": ["draft view", "print layout view", "normal view", "page layout view"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-windows-mcqs-quizlet-bank/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Windows Mcqs Quizlet Bank", "question": ": Which of the following command is used to clear the screen?", "options": ["clear", "clscreen", "cls", "all of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-windows-mcqs-quizlet-bank/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Windows Mcqs Quizlet Bank", "question": ": What is the process of removing the unwanted part of an image?", "options": ["cropping", "hiding", "cutting", "bordering"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-windows-mcqs-quizlet-bank/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Windows Mcqs Quizlet Bank", "question": ": A window displays various options for shutdown, but which of the following is suitable at the end of the day?", "options": ["hibernate", "shut down", "restart", "sleep"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-windows-mcqs-quizlet-bank/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Windows Mcqs Quizlet Bank", "question": ": Which of the following internal commands are used in DOS?", "options": ["dir, ren, sys", "del, disk copy, label", "cls, rd, label", "time, type, dir"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-windows-mcqs-quizlet-bank/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Windows Mcqs Quizlet Bank", "question": ": What is the text-styling feature of MS Word?", "options": ["word art", "word fill", "word font", "word color"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-windows-mcqs-quizlet-bank/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Windows Mcqs Quizlet Bank", "question": ": What is suitable after you install new drivers?", "options": ["sleep", "hibernate", "restart", "shut down"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-windows-mcqs-quizlet-bank/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Windows Mcqs Quizlet Bank", "question": ": Which of the following items are placed at the end of a document?", "options": ["end note", "footer", "header", "foot note"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-windows-mcqs-quizlet-bank/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where is “Add Hyperlink” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where is “Wrap Text” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where are “Symbols and Watermark” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where is “Merge & Centre” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where is “Conditional Formatting” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where is “Insert Sheet Rows” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where is “Inserting Margin on Page” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where are “Cell Styles” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where is “Insert Theme” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where is “Format a Table” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where is “Delete Sheet Column” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where are “Charts” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where is “Insert Sheet Column” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where is “Delete Sheet Rows” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where is “Find and Select” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where is “Pivot Table” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where is “Insert Color on Page” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Office Word And Excel Important Mcqs", "question": ": Where is “Slicer” located in MS Excel 2013?", "options": ["Home", "Insert", "Page Layout", "Data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-office-word-and-excel-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Excel Mcqs", "question": ": Which of the following key is used for help in MS Excel?", "options": ["F5", "F7", "F3", "F1"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Excel Mcqs", "question": ": Which of the following keys are used to Open tab in MS Excel?", "options": ["Ctrl+u", "Ctrl+p", "Ctrl+p", "Ctrl+o"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Excel Mcqs", "question": ": Which of the following key is used to “Goto” tab in MS Excel?", "options": ["F9", "F7", "F6", "F5"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Excel Mcqs", "question": ": Which of the following keys are used to save data in MS Excel?", "options": ["Ctrl+s", "Ctrl+p", "Ctrl+o", "Ctrl+p"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Excel Mcqs", "question": ": Which of the following key is used to edit in MS Excel?", "options": ["F1", "F6", "F3", "F2"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Excel Mcqs", "question": ": Which of the following key is used to repeat the last action in MS Excel?", "options": ["F9", "F4", "F5", "F9"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Excel Mcqs", "question": ": Which of the following key underlines the text in MS Excel?", "options": ["Ctrl+o", "Ctrl+p", "Ctrl+u", "Ctrl+s"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Excel Mcqs", "question": ": Which of the following key copies the text in MS Excel?", "options": ["Ctrl+u", "Ctrl+c", "Ctrl+o", "Ctrl+v"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Excel Mcqs", "question": ": Which of the following key closes the workbook in MS Excel?", "options": ["Ctrl+w", "Ctrl+v", "Ctrl+c", "Ctrl+k"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Excel Mcqs", "question": ": Which of the following key cuts the text in MS Excel?", "options": ["Ctrl+k", "Ctrl+v", "Ctrl+w", "Ctrl+x"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Ms Word Mcqs", "question": "Which of the following is inserted in a crossword?", "options": ["Word fields", "Bookmarks", "Placeholders", "Both A and B"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-ms-word-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Ms Word Mcqs", "question": "What is the Text-styling feature of MS-Word?", "options": ["WordArt", "WordFont", "WordColor", "All of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-ms-word-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Ms Word Mcqs", "question": "Where is the Ctrl + N shortcut used?", "options": ["Save Document", "New Document", "Open Document", "All of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-ms-word-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Ms Word Mcqs", "question": "Which of the following items are placed at the end of a document?", "options": ["Footer", "Foot Note", "Header", "End note"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-ms-word-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Ms Word Mcqs", "question": "Where can we insert a Page Number?", "options": ["Header", "Footer", "Length", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-ms-word-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Ms Word Mcqs", "question": "Which of the following is referred to as Line Spacing?", "options": ["The length of the line", "The height of the line", "The space between the lines of text", "A and B"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-ms-word-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Ms Word Mcqs", "question": "How can we remove or hide the border of a shape by selecting?", "options": ["No Line", "No Outline", "White Line", "No Border"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-ms-word-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Ms Word Mcqs", "question": "Where do the Footnotes appear in a document?", "options": ["End of document", "Bottom line", "End of Heading", "Bottom of a Page"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-ms-word-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Ms Word Mcqs", "question": "Which of the following items is printed at the bottom of each page?", "options": ["Footer", "Foot Note", "Title", "Header"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-ms-word-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Ms Word Mcqs", "question": "How can we change the thickness of a line from?", "options": ["Line width", "Line Height", "Line Style", "All of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-ms-word-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Ms Word Mcqs", "question": "Select the view in which headers and footers are visible:", "options": ["Print Layout View", "Page Layout View", "Normal View", "Draft View"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-ms-word-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Ms Word Mcqs", "question": "MS Word minimum and maximum font size support?", "options": ["1 and 138", "1 and 638", "1 and 138", "1 and 1638"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-ms-word-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Ms Word Mcqs", "question": "The smallest font size available on the interface in MS-Word is?", "options": ["5", "6", "7", "8"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-ms-word-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Ms Word Mcqs", "question": "The largest font size available on the interface in MS-Word is?", "options": ["72", "73", "74", "86"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-ms-word-mcqs/"}
{"subject": "ms-access-mcqs", "topic": "ms-access-mcqs", "question": ": What are columns called in a Microsoft Access table?", "options": ["fields", "rows", "columns", "records"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ms-access-mcqs/"}
{"subject": "ms-access-mcqs", "topic": "ms-access-mcqs", "question": ": Select the name of the following that is not a field type in Microsoft Access?", "options": ["hyperlink", "lookup wizard", "memo", "ole Object"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ms-access-mcqs/"}
{"subject": "ms-access-mcqs", "topic": "ms-access-mcqs", "question": ": Suggest the name of the feature used to duplicate a control’s formatting?", "options": ["wizard", "control", "manager", "painter"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/ms-access-mcqs/"}
{"subject": "ms-access-mcqs", "topic": "ms-access-mcqs", "question": ": Which is not a type of relationship that can be applied in an Access database?", "options": ["one to one", "one to many", "many to many", "none of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/ms-access-mcqs/"}
{"subject": "ms-access-mcqs", "topic": "ms-access-mcqs", "question": ": Select the name of the following option that is a method to create a new table in MS Access?", "options": ["directly entering data", "using design view", "create table wizard", "all of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/ms-access-mcqs/"}
{"subject": "ms-access-mcqs", "topic": "ms-access-mcqs", "question": ": Which of the following is a method to create a query in Microsoft Access?", "options": ["use query wizard", "drag and drop fields", "type the SQL", "all of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/ms-access-mcqs/"}
{"subject": "ms-access-mcqs", "topic": "ms-access-mcqs", "question": ": Which of the following field types can store photos?", "options": ["it is not possible", "hyperlink", "both a and b", "OLE object"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/ms-access-mcqs/"}
{"subject": "ms-access-mcqs", "topic": "ms-access-mcqs", "question": ": Which queries can be used in MS Access?", "options": ["to view data", "as a source for forms", "as a source for reports", "all of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/ms-access-mcqs/"}
{"subject": "ms-access-mcqs", "topic": "ms-access-mcqs", "question": ": Select the name of the following that shows the final result in a presentable way?", "options": ["reports", "tables", "forms", "queries"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ms-access-mcqs/"}
{"subject": "ms-access-mcqs", "topic": "ms-access-mcqs", "question": ": Which of the following is the default and maximum size of a text field in MS Access?", "options": ["8KB and 1.5 MB", "50 and 255 characters", "8 and 1 GB", "266 and 64000 characters"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ms-access-mcqs/"}
{"subject": "ms-access-mcqs", "topic": "ms-access-mcqs", "question": ": Select a search value in an SQL query that can be a specific value?", "options": ["wild card character", "comparison operation", "logical operator", "relationship"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ms-access-mcqs/"}
{"subject": "ms-access-mcqs", "topic": "ms-access-mcqs", "question": ": Which command is used to gather data from a database?", "options": ["reports", "tables", "queries", "forms"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ms-access-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Powerpoint Mcqs", "question": ": Which of the following keys open a presentation in PowerPoint?", "options": ["Ctrl + O", "Ctrl + K", "Ctrl + A", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-powerpoint-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Powerpoint Mcqs", "question": ": Which of the following keys create a new presentation in PowerPoint?", "options": ["Ctrl + S", "Ctrl + M", "Ctrl + N", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-powerpoint-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Powerpoint Mcqs", "question": ": Which of the following keys save a presentation in PowerPoint?", "options": ["Ctrl + N", "Ctrl + S", "Ctrl + P", "Ctrl + F"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-powerpoint-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Powerpoint Mcqs", "question": ": Which of the following keys print a presentation in PowerPoint?", "options": ["Ctrl + C", "Ctrl + O", "Ctrl + S", "Ctrl + P"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-powerpoint-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Powerpoint Mcqs", "question": ": Which of the following keys close a presentation in PowerPoint?", "options": ["Ctrl + C", "Alt + S", "Ctrl + O", "Ctrl + W"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-powerpoint-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Powerpoint Mcqs", "question": ": Which of the following inserts a new slide in the presentation in PowerPoint?", "options": ["Ctrl + I", "Alt + N", "Ctrl + M", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-powerpoint-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Powerpoint Mcqs", "question": ": Which of the following keys is used for Help in PowerPoint?", "options": ["F4", "F2", "F3", "F1"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-powerpoint-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Powerpoint Mcqs", "question": ": Which of the following keys cut text in the presentation in PowerPoint?", "options": ["Ctrl + X", "Ctrl + C", "Ctrl + L", "Ctrl + S"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-powerpoint-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Powerpoint Mcqs", "question": ": Which of the following keys copy text in presentation in PowerPoint?", "options": ["Ctrl + P", "Ctrl + C", "Ctrl + X", "Ctrl + F"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-powerpoint-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Microsoft Powerpoint Mcqs", "question": ": Which of the following keys paste text in presentation in PowerPoint?", "options": ["Ctrl + Y", "Ctrl + Z", "Ctrl + A", "Ctrl + V"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/microsoft-powerpoint-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Using Excel With Other Office Applications Excel Mcqs", "question": ": How can you insert an Excel chart into a Word document?", "options": ["Copy the chart from Excel and paste it into Word", "Use the Excel Data tab to export to Word", "Link the chart directly from Excel to Word"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/using-excel-with-other-office-applications-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Using Excel With Other Office Applications Excel Mcqs", "question": ": What does the ‘Paste Special’ feature in Excel allow you to do when copying data to another Office application?", "options": ["Change the format of the pasted data", "Paste data with or without formatting and formulas", "Automatically update the source data", "Link the data to the original Excel workbook"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/using-excel-with-other-office-applications-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Using Excel With Other Office Applications Excel Mcqs", "question": ": Which Excel feature allows you to create a live link to data in an Access database?", "options": ["Import Data Wizard", "Data Connection Wizard", "Get & Transform Data", "Power Query"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/using-excel-with-other-office-applications-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Using Excel With Other Office Applications Excel Mcqs", "question": ": How can you embed an Excel worksheet into a PowerPoint slide so that it can be edited from PowerPoint?", "options": ["Copy and paste the worksheet as an Excel Worksheet Object", "Link the worksheet using the Hyperlink feature", "Paste the worksheet as a static image"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/using-excel-with-other-office-applications-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Using Excel With Other Office Applications Excel Mcqs", "question": ": Which feature in Excel allows you to analyze data from an Outlook email?", "options": ["Excel Add-ins", "Power Query", "Data Import Wizard", "Outlook Integration"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/using-excel-with-other-office-applications-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Using Excel With Other Office Applications Excel Mcqs", "question": ": How do you export Excel data to an Access database?", "options": ["Use the Export Wizard in Excel", "Copy the data and paste it into Access", "Use the Access Import Wizard", "Save the Excel file as an Access database file"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/using-excel-with-other-office-applications-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Using Excel With Other Office Applications Excel Mcqs", "question": ": What is the primary method to synchronize data between Excel and Outlook?", "options": ["Use VBA to automate the process", "Export data from Excel and import it into Outlook", "Use Excel Add-ins designed for Outlook integration", "Manually copy and paste data between Excel and Outlook"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/using-excel-with-other-office-applications-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Using Excel With Other Office Applications Excel Mcqs", "question": ": How can you import a Word table into an Excel worksheet?", "options": ["Copy the table in Word and paste it into Excel", "Use the Excel Import Wizard", "Use the Word Export feature", "Use the Data tab in Excel to import from Word"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/using-excel-with-other-office-applications-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Using Excel With Other Office Applications Excel Mcqs", "question": ": Which Excel feature allows you to create a chart that updates automatically when the underlying data in Word is updated?", "options": ["Dynamic Chart", "Embedded Chart", "Linked Chart", "Auto-refresh Chart"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/using-excel-with-other-office-applications-excel-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "What is the primary focus of forest economics?", "options": ["Timber production only", "Economic evaluation of forest resources", "Wildlife conservation only", "Soil conservation only"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which concept in forest economics involves comparing costs and benefits over time?", "options": ["Discounting", "Regeneration", "Harvesting", "Afforestation"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which of the following is an example of a tangible forest product?", "options": ["Carbon sequestration", "Timber", "Aesthetic beauty", "Biodiversity"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "What does NPV stand for in forest economic analysis?", "options": ["Net Price Variation", "National Policy Value", "Net Present Value", "Non-Priced Value"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which method is commonly used to determine the financial return of a forest project?", "options": ["Silviculture", "Cost-Benefit Analysis", "Soil Survey", "Forest Mapping"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "What is the term for the yearly income that can be generated from forest resources without depleting them?", "options": ["Maximum Revenue", "Annual Allowable Cut", "Sustainable Yield", "Gross Return"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which type of forest value is represented by recreation and tourism?", "options": ["Direct use value", "Indirect use value", "Option value", "Non-use value"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which principle of forest economics emphasizes long-term productivity?", "options": ["Short-term profit maximization", "Sustainable forest management", "Maximum market output", "Immediate revenue collection"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "In forest economics, the concept of “rotation period” refers to:", "options": ["Time required to plant seedlings", "Time between initial planting and final harvest", "Time taken for soil restoration", "Period of timber sale"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which of the following is a non-timber forest product (NTFP)?", "options": ["Sawn wood", "Bamboo", "Plywood", "Veneer sheets"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which analysis is used to determine the economic feasibility of a forest project?", "options": ["Growth analysis", "Financial analysis", "Hydrological analysis", "Soil texture analysis"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which economic term is associated with choosing the best forest use among alternatives?", "options": ["Marginal utility", "Opportunity cost", "Gross yield", "Net increment"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "What does Internal Rate of Return (IRR) indicate in forestry projects?", "options": ["Biological growth of trees", "Rate of soil fertility improvement", "Profitability of investment", "Market price of timber"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which of the following is an intangible forest benefit?", "options": ["Firewood", "Biodiversity conservation", "Poles", "Logs"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which economic approach is used to decide optimal timber harvesting age?", "options": ["Faustmann formula", "Market demand analysis", "Silvicultural rotation", "Supply-demand curve"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "What does the term “stumpage value” represent in forest economics?", "options": ["Value of land after harvesting", "Value of standing trees before harvest", "Cost of timber transport", "Value of timber after sawing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which of the following factors directly affects forest product pricing?", "options": ["Tree age only", "Market demand and supply", "Soil fertility", "Rainfall"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which type of forest value reflects the benefit of preserving species for future generations?", "options": ["Option value", "Direct use value", "Consumptive value", "Immediate value"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "In forest economics, “depreciation” is most related to:", "options": ["Decline in soil fertility", "Reduction in value of forest equipment", "Loss of biodiversity", "Harvesting losses"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which pricing method is commonly used for selling timber?", "options": ["Sealed bid auction", "Open tender for land", "Livestock market method", "Fixed rent method"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "What is the main purpose of economic rotation in forestry?", "options": ["Maximizing volume per hectare", "Minimizing silviculture cost", "Maximizing net financial returns", "Increasing soil fertility"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which of the following represents the social value of forests?", "options": ["Timber sales", "Ecotourism benefits", "Log transportation", "Firewood collection"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which is considered a non-market forest service?", "options": ["Logging", "Carbon sequestration", "Firewood sale", "Timber export"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which financial tool is often used in forest project appraisal?", "options": ["Net Present Value (NPV)", "Leaf Area Index (LAI)", "Diameter at Breast Height (DBH)", "Site Index"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which type of forest benefit is associated with soil erosion control?", "options": ["Direct use value", "Indirect use value", "Option value", "Consumptive value"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "What does “forest capital” primarily refer to?", "options": ["Stock of trees and forest resources", "Monetary budget for forestry department", "Value of sawmills", "Timber export revenue"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which economic principle encourages harvesting when marginal cost equals marginal revenue?", "options": ["Maximum Sustainable Yield", "Profit maximization", "Discounting", "Conservation principle"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "In forest economics, “increment” refers to:", "options": ["Annual growth of tree volume", "Number of seedlings planted", "Cost of forest operations", "Value of exported timber"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which type of analysis considers both market and non-market forest benefits?", "options": ["Pure financial analysis", "Economic analysis", "Silvicultural analysis", "Statistical analysis"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "What does “forest rent” represent in economics?", "options": ["Tax collected on forest land", "Surplus value from forest production", "Annual salary of forest staff", "Loan repayment for forest projects"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which of the following is a consumptive forest use?", "options": ["Hiking", "Logging", "Wildlife photography", "Camping"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which factor is most important for determining sustainable harvest levels?", "options": ["Soil pH", "Annual increment", "Market demand", "Transport cost"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which forest economic study focuses on timber flow over time?", "options": ["Market survey", "Forest yield regulation", "Silvicultural study", "Soil survey"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "What is the main goal of cost-benefit analysis in forestry projects?", "options": ["To maximize biodiversity", "To evaluate financial viability", "To estimate soil fertility", "To reduce wildlife conflict"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which factor most affects the Net Present Value (NPV) of a forestry project?", "options": ["Discount rate", "Tree species", "Soil depth", "Rainfall pattern"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "In forest economics, “externality” refers to:", "options": ["Cost or benefit affecting third parties", "International trade in timber", "Forest extension services", "Export duties on logs"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which of the following is an example of positive forest externality?", "options": ["Soil erosion from logging", "River pollution from sawmills", "Flood prevention by forests", "Illegal timber trade"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which method is commonly used to value non-market forest services?", "options": ["Contingent valuation", "Sealed bid method", "Competitive tendering", "Volume table method"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which component is NOT part of forest economic evaluation?", "options": ["Timber yield", "Market price", "Biodiversity index", "Soil texture color"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which type of forest management focuses on maximizing both economic and ecological benefits?", "options": ["Clear-cutting management", "Sustainable forest management", "Shifting cultivation", "Industrial forestry"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "What is the primary economic reason for reforestation projects?", "options": ["Cultural significance", "Increase in timber supply", "Wildlife population growth", "Soil acidification"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which value is associated with the willingness to pay for forest conservation without direct use?", "options": ["Use value", "Non-use value", "Option value", "Consumptive value"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "What does “annual allowable cut” signify in economic terms?", "options": ["Maximum trees to harvest without depleting stock", "Total market demand for timber", "Export quota for timber products", "Annual plantation budget"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which financial measure indicates the profitability of forestry investments compared to alternatives?", "options": ["Internal Rate of Return (IRR)", "Volume Increment (VI)", "Diameter Increment (DI)", "Leaf Area Index (LAI)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which of the following best represents the indirect economic contribution of forests?", "options": ["Timber export revenue", "Soil fertility improvement", "Charcoal production", "Bamboo harvesting"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which method is used for comparing forestry projects with different time horizons?", "options": ["Benefit-Cost Ratio (BCR)", "Mean Annual Increment (MAI)", "Basal Area Method", "Taper Curve Analysis"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which term refers to the total economic value of forests, including all services and products?", "options": ["Market value", "Ecological value", "Total Economic Value (TEV)", "Commercial value"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "Which forest economic approach involves selling carbon credits?", "options": ["Timber valuation", "Payment for ecosystem services", "Opportunity cost analysis", "Soil appraisal"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "forest-economics-mcqs", "topic": "forest-economics-mcqs", "question": "What is the main purpose of calculating Mean Annual Increment (MAI) in forest economics?", "options": ["Determining optimal harvest age", "Estimating wildlife population", "Evaluating soil nutrients", "Forecasting timber price"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/forest-economics-mcqs/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "Investment in a university is considered important because:", "options": ["It provides immediate financial returns only", "It reduces societal benefits", "It is an investment in the future and human capital development", "It is risk-free compared to stocks and bonds"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "When parents or financiers consider investing in higher education, they usually:", "options": ["Ignore the future scope of the degree", "Focus solely on extracurricular activities", "Only consider tuition fees", "Evaluate the profitability and return on investment"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "A major barrier to higher education in developing countries is:", "options": ["Abundant financial resources", "Financial constraints and lack of access to loans", "Oversupply of universities", "High student motivation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "Educational wastage can occur in the following form except:", "options": ["Failure to recruit children into the system", "Failure to set appropriate objectives", "Failure to hold children within the system", "Effective utilization of trained students"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "One common reason for children leaving school early in developing countries is:", "options": ["Surplus of teachers in rural areas", "Early marriage and family responsibilities", "Overemphasis on vocational education", "Excess of educational resources"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "Wastage in higher education may occur due to:", "options": ["Students completing courses efficiently", "Optimal utilization of knowledge", "Stagnation and dropouts during the course", "High employment of graduates"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "Wastage due to non-utilization of training occurs when:", "options": ["Students apply their skills effectively in the workplace", "Students complete their courses on time", "Students cannot use their knowledge due to lack of opportunities", "Students attend vocational programs"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "A suggested solution to reduce wastage in higher education is:", "options": ["Reducing technical and vocational education", "Creating education in fields with higher societal demand", "Ignoring enrollment in higher-cost fields", "Limiting self-employment opportunities"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "Cost-effectiveness analysis in education helps to:", "options": ["Compare only the educational outcomes without considering cost", "Focus only on monetary returns", "Choose alternatives that achieve objectives at the lowest cost", "Replace all traditional evaluation methods"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "The concept of opportunity cost in education refers to:", "options": ["The actual monetary price of tuition", "Free availability of educational facilities", "Ignoring resources used in education", "The value of resources in their best alternative use"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "In cost-effectiveness analysis, ingredients of an intervention include:", "options": ["Only student performance", "Curriculum content alone", "Political decisions only", "Personnel, facilities, materials, equipment, and client time"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "In a study comparing two mathematics curricula, the innovative program was found:", "options": ["Less effective and less costly than the traditional program", "More effective but also higher in cost, yet cost-effective for low SES students", "Equally effective with zero cost differences", "Ineffective regardless of cost"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "Cost-effectiveness ratio is calculated as:", "options": ["Cost divided by the effectiveness of an alternative", "Total cost without considering outcomes", "Effectiveness divided by the cost of an alternative", "Total effectiveness without considering cost"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "When comparing cost-effectiveness of alternatives, it is important to consider:", "options": ["Only the fixed costs, ignoring variable costs", "Scale of enrollment and utilization of resources", "Monetary benefits alone", "Only student satisfaction"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "One educational application of cost-effectiveness analysis is:", "options": ["Determining the cost of infrastructure only", "Teacher training and curriculum evaluation", "Ignoring learning outcomes", "Reducing funding for effective programs"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "In the context of loans for higher education, one potential benefit is:", "options": ["Encouraging students to choose courses wisely and work harder", "Decreasing student motivation", "Making education free for everyone", "Eliminating student choice"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "A potential drawback of a loan scheme is:", "options": ["Reducing educational costs for institutions", "Increasing student enrollment universally", "Discouraging able students, particularly women and low-income families", "Guaranteeing employment for graduates"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "Institution-based funding that allows virement enables:", "options": ["Switching funds from one activity to another based on priorities", "Spending funds only on one fixed purpose", "Reducing output without accountability", "Ignoring societal demand"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "Awarding money as fee income rather than recurrent grants may lead to:", "options": ["Increased competition between universities to attract students", "Complete elimination of research and teaching", "Fixed student enrollment regardless of quality", "Free access to all students"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "economics-of-higher-education-mcqs-pedagogy", "topic": "economics-of-higher-education-mcqs-pedagogy", "question": "The main purpose of financing higher education is to:", "options": ["Control student behavior", "Reduce teacher efficiency", "Limit access to research facilities", "Affect the scale, quality, and type of educational provisions"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/economics-of-higher-education-mcqs-pedagogy/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "What is the main purpose of load forecasting in power systems?", "options": ["Reduce fuel cost", "Plan generation and distribution", "Improve transformer efficiency", "Reduce transmission losses"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "Which of the following is a short-term load forecasting method?", "options": ["Regression analysis", "Time series analysis", "End-use method", "Neural networks"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "Long-term load forecasting is usually required for:", "options": ["Daily generation scheduling", "Planning new power plants", "Hourly load dispatch", "Fault detection"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "Which of the following factors affects load demand?", "options": ["Weather and temperature", "Population growth", "Economic activity", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "In load forecasting, the term “peak load” refers to:", "options": ["Minimum demand in a day", "Maximum demand in a period", "Average demand", "Base load"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "Which of the following is a commonly used short-term load forecasting technique?", "options": ["End-use method", "Regression analysis", "Moving average method", "Econometric method"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "The base load of a power system is best supplied by:", "options": ["Hydro plants", "Peaking plants", "Nuclear or coal plants", "Diesel generators"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "What is the primary goal of plant economics in power generation?", "options": ["Minimize electricity losses", "Maximize profit and efficiency", "Reduce plant size", "Increase voltage"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "The fixed cost of a power plant includes:", "options": ["Fuel cost", "Maintenance cost", "Capital investment", "Operating labor cost"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "The variable cost of power generation depends mainly on:", "options": ["Plant size", "Fuel consumption", "Capital investment", "Land cost"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "Which of the following is considered a “peaking plant”?", "options": ["Coal-fired plant", "Hydro plant", "Nuclear plant", "Combined cycle plant"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "Load factor is defined as:", "options": ["Average load / Peak load", "Peak load / Average load", "Base load / Peak load", "Maximum demand / Energy supplied"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "Plant utilization factor is:", "options": ["Maximum possible energy / Actual energy generated", "Actual energy generated / Maximum possible energy", "Base load / Peak load", "Average load / Peak load"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "In economic load dispatch, the objective is to:", "options": ["Minimize fuel cost", "Maximize power loss", "Minimize peak load", "Equalize generation"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "Which of the following factors is considered in cost-of-electricity calculation?", "options": ["Fixed cost", "Variable cost", "Interest and depreciation", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "The demand factor is defined as:", "options": ["Maximum demand / Total connected load", "Average demand / Maximum demand", "Base load / Peak load", "Total energy consumed / Peak load"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "Which type of forecasting is most accurate for a few hours ahead?", "options": ["Long-term", "Medium-term", "Short-term", "Very long-term"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "Economical operation of a power plant requires:", "options": ["Operating at maximum capacity always", "Minimizing total fuel and operating cost", "Using only renewable energy", "Frequent shutdowns"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "In power plant economics, “incremental cost” refers to:", "options": ["Total cost of production", "Additional cost of producing one more unit of electricity", "Fixed cost per year", "Maintenance cost per month"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "Load forecasting can be classified as:", "options": ["Deterministic or Probabilistic", "Short-term, medium-term, long-term", "Both A and B", "Only statistical"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "In long-term load forecasting, which method considers appliance ownership and usage patterns?", "options": ["Time series", "End-use method", "Regression method", "Moving average method"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "Which of the following is NOT a type of cost in power plant economics?", "options": ["Fixed cost", "Variable cost", "Total cost", "Residual cost"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "In power plant operation, the merit order refers to:", "options": ["Sequence of unit outages", "Ranking of generating units based on incremental cost", "Order of maintenance schedule", "Grid voltage order"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "Which of the following affects short-term load forecasting accuracy the most?", "options": ["Long-term population growth", "Weather variations", "Capital investment", "Depreciation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "The cost of electricity from a power plant is also called:", "options": ["Tariff rate", "Fuel charge", "Load factor", "Capital cost"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "Which of the following is a limitation of long-term load forecasting?", "options": ["High accuracy", "Uncertainty in economic and demographic growth", "Only hourly variations considered", "No effect of weather"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "The average cost of electricity can be reduced by:", "options": ["Increasing peak load", "Increasing plant utilization factor", "Reducing base load", "Frequent start-stop of units"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "In short-term load forecasting, which method uses historical data patterns?", "options": ["Regression method", "Time series analysis", "End-use method", "Econometric method"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "The reserve margin in power system planning is:", "options": ["Difference between peak demand and installed capacity", "Maximum demand minus average demand", "Base load minus peak load", "Energy consumption in a year"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "load-forecasting-and-plant-economics-mcqs-ee", "topic": "load-forecasting-and-plant-economics-mcqs-ee", "question": "Which of the following is an economic criterion for power plant selection?", "options": ["Lowest fuel cost", "Minimum total annual cost", "Highest peak load", "Maximum base load"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/load-forecasting-and-plant-economics-mcqs-ee/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Permanent Court of International Justice was accepted under:", "options": ["League of Nations", "UNO", "European Union", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Recognition of new States is a business of:", "options": ["International law", "None of these", "Constitutional law", "Policy of the State"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Select the name that is considered to be the father of International Law:", "options": ["Oppenheim", "Pufendorf", "Suarez", "Hugo Grotius"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Select the year when the Vienna Convention on Diplomatic Relations was acquired:", "options": ["1961", "1821", "1960", "1887"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Select the year when the International Court of Justice was accepted:", "options": ["1910", "1965", "1945", "1955"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Select a condition under which a state has the right to use force:", "options": ["Armed attack", "To obtain raw materials", "To ensure the protection of human rights", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Foreign warships:", "options": ["Are not allowed to navigate in the territorial waters", "The right of innocent passage in the territorial waters", "The right of free passage in the territorial waters", "All of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "A state is free to utilize on the continental shelf:", "options": ["Both Living and non-Living resources", "Living resources", "Non-Living resources", "Both B & C"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Select the location of Headquarters of ICJ:", "options": ["None of these", "New York", "Vienna", "The Hague"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Jus Soli is a principle associated with:", "options": ["Nationality", "Extradition", "Asylum", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Vienna Conference of 1961 is associated with:", "options": ["Diplomatic intercourse and immunities", "Prisoners-of-war", "Recognition of states", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Which one is called ‘father of International Law’?", "options": ["Marx", "Oppenheim", "Hugo Grotius", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Piracy is a crime within the jurisdiction of the:", "options": ["Flag State", "Offenders State", "None of these", "All the States"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Select the term of Non-Permanent members of the Security Council:", "options": ["7 years", "3 years", "2 years", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Landlocked condition is:", "options": ["None of these", "Surrounded by enemy states from all sides", "Surrounded by water from all sides", "Surrounded by land from all sides"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Tobar Doctrine is associated with:", "options": ["The recognition of a state", "The recognition of insurgents", "The recognition of a government", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Select the meaning of the principle of rebus sic stantibus:", "options": ["There is not a crime without Law", "A treaty must be adhered to faithfully", "A fundamental change of circumstances", "A State cannot use force"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "A diplomatic representative is immune from local control:", "options": ["Criminal cases", "In cases involving personal property", "In all cases", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Extradition is normally accorded:", "options": ["In all cases", "In criminal cases", "In civil cases", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "international-law-mcqs", "topic": "international-law-mcqs", "question": "Select the term of Judges of the International Court of Justice:", "options": ["1 year", "9 years", "5 years", "8 years"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/international-law-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "Which programming language is widely used for safety-critical real-time systems?", "options": ["C#", "Python", "Ada", "JavaScript"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "One of Ada’s main features for real-time systems is:", "options": ["Tasking and concurrency support", "Garbage collection only", "Weak typing", "Event-driven GUI"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "Ada’s strong typing helps in:", "options": ["CPU idle exclusively", "Detecting errors at compile-time to improve reliability", "Disk batch-only errors", "Memory-only checks"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "Real-time Java provides:", "options": ["Disk batch-only operations", "CPU idle exclusively", "Extensions to standard Java to support predictable timing behavior", "Memory-only optimization"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "The Real-time Specification for Java (RTSJ) allows:", "options": ["CPU idle exclusively", "Real-time threads, scoped memory, and asynchronous event handling", "Disk batch-only threads", "Memory-only objects"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "In Ada, the “rendezvous” mechanism is used for:", "options": ["Disk batch-only messaging", "CPU idle exclusively", "Task synchronization and communication", "Memory-only signaling"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "Real-time Java avoids unpredictable garbage collection by using:", "options": ["Memory-only heaps", "CPU idle exclusively", "Disk batch-only memory", "Scoped memory areas and immortal memory"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "Ada supports periodic tasks using:", "options": ["Memory-only waits", "CPU idle exclusively", "Disk batch-only timers", "Delay statements and protected objects"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "Real-time Java allows priority-based scheduling of:", "options": ["Disk batch-only threads", "CPU idle exclusively", "Real-time threads", "Memory-only tasks"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "Ada provides exception handling to:", "options": ["Memory-only failures", "CPU idle exclusively", "Disk batch-only errors", "Manage runtime errors predictably"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "The main advantage of Ada in real-time systems is:", "options": ["Reliability, safety, and strong support for concurrency", "CPU idle exclusively", "Disk batch-only operations", "Memory-only safety"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "RTSJ’s asynchronous event handlers are used to:", "options": ["CPU idle exclusively", "Respond to external events without blocking real-time threads", "Disk batch-only signals", "Memory-only notifications"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "Ada’s protected objects help in:", "options": ["Managing concurrent access to shared data safely", "CPU idle exclusively", "Disk batch-only memory", "Memory-only synchronization"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "Real-time Java improves predictability by:", "options": ["Disk batch-only operations", "CPU idle exclusively", "Minimizing unpredictable delays due to memory management and scheduling", "Memory-only allocation"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "Ada’s “task type” declaration is used to:", "options": ["CPU idle exclusively", "Define concurrent tasks with encapsulated behavior", "Disk batch-only threads", "Memory-only objects"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "In Real-time Java, “NoHeapRealtimeThread” ensures:", "options": ["Memory-only safety", "CPU idle exclusively", "Disk batch-only execution", "The thread does not access garbage-collected heap to avoid unpredictable pauses"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "Ada’s delay_until statement is useful for:", "options": ["Memory-only waits", "CPU idle exclusively", "Disk batch-only timing", "Implementing periodic task execution with precise timing"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "Real-time Java allows memory areas to be:", "options": ["Memory-only blocks", "CPU idle exclusively", "Disk batch-only allocations", "Scoped, immortal, or heap-based for predictable allocation"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "A key benefit of using Ada or Real-time Java is:", "options": ["Disk batch-only optimization", "CPU idle exclusively", "Enhanced predictability, safety, and concurrency support in real-time systems", "Memory-only safety"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Programming Languages Ada Real Time Java Real Time Systems Mcqs", "question": "Both Ada and Real-time Java aim to:", "options": ["CPU idle exclusively", "Support development of reliable, predictable, and maintainable real-time applications", "Disk batch-only tasks", "Memory-only allocation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/programming-languages-ada-real-time-java-real-time-systems-mcqs/"}
{"subject": "islamiat-mcqs-from-book-of-latest-editions", "topic": "islamiat-mcqs-from-book-of-latest-editions", "question": ": The first practical manifestation of faith is . . . .", "options": ["Soam", "Zakat", "Hajj", "Prayer"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-of-latest-editions/"}
{"subject": "islamiat-mcqs-from-book-of-latest-editions", "topic": "islamiat-mcqs-from-book-of-latest-editions", "question": ": Total number of Makruhat in Wuzu?", "options": ["Seven", "Five", "Two", "Four"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-of-latest-editions/"}
{"subject": "islamiat-mcqs-from-book-of-latest-editions", "topic": "islamiat-mcqs-from-book-of-latest-editions", "question": ": Total number of Mustahab in Wuzu?", "options": ["Four", "Seven", "Six", "Five"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-of-latest-editions/"}
{"subject": "islamiat-mcqs-from-book-of-latest-editions", "topic": "islamiat-mcqs-from-book-of-latest-editions", "question": ": Total number of Sunan-e-Wuzu are?", "options": ["12", "15", "12", "14"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-of-latest-editions/"}
{"subject": "islamiat-mcqs-from-book-of-latest-editions", "topic": "islamiat-mcqs-from-book-of-latest-editions", "question": ": The meaning of Wuzu is . . . .", "options": ["Cleanliness", "Ablution", "Perfection", "Purification"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-of-latest-editions/"}
{"subject": "islamiat-mcqs-from-book-of-latest-editions", "topic": "islamiat-mcqs-from-book-of-latest-editions", "question": ": How many Gazwas are there . . . .", "options": ["31", "25", "27", "29"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-of-latest-editions/"}
{"subject": "islamiat-mcqs-from-book-of-latest-editions", "topic": "islamiat-mcqs-from-book-of-latest-editions", "question": ": Number of persons who should be in Ba-Jamat-Salat . . . .", "options": ["Three", "One", "Four", "Two"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-of-latest-editions/"}
{"subject": "islamiat-mcqs-from-book-of-latest-editions", "topic": "islamiat-mcqs-from-book-of-latest-editions", "question": ": Total number of Surahs in the Quran . . . .", "options": ["114", "115", "116", "110"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-of-latest-editions/"}
{"subject": "islamiat-mcqs-from-book-of-latest-editions", "topic": "islamiat-mcqs-from-book-of-latest-editions", "question": ": Total number of Makki Surahs in the Quran . . . .", "options": ["72", "86", "92", "82"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-of-latest-editions/"}
{"subject": "islamiat-mcqs-from-book-of-latest-editions", "topic": "islamiat-mcqs-from-book-of-latest-editions", "question": ": Total number of Madani Surahs in the Quran . . . .", "options": ["32", "28", "34", "22"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-of-latest-editions/"}
{"subject": "islamiat-mcqs-from-book-of-latest-editions", "topic": "islamiat-mcqs-from-book-of-latest-editions", "question": ": Total number of Ayat-e-Sajdah in the Holy Quran . . . .", "options": ["12", "16", "7", "10"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-of-latest-editions/"}
{"subject": "islamiat-mcqs-from-book-of-latest-editions", "topic": "islamiat-mcqs-from-book-of-latest-editions", "question": ": Total number of Rukus in the Holy Quran . . . .", "options": ["558", "358", "458", "638"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-of-latest-editions/"}
{"subject": "accounting-mcqs-latest-book-edition-2", "topic": "accounting-mcqs-latest-book-edition-2", "question": ": The consignor is the:", "options": ["An agent", "Creditor of Consignee", "Debtor of Consignee", "Principle"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/accounting-mcqs-latest-book-edition-2/"}
{"subject": "accounting-mcqs-latest-book-edition-2", "topic": "accounting-mcqs-latest-book-edition-2", "question": ": Normal losses arise due to?", "options": ["Contingent", "Natural causes", "Avoidable factory", "Breaking in bulk"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/accounting-mcqs-latest-book-edition-2/"}
{"subject": "accounting-mcqs-latest-book-edition-2", "topic": "accounting-mcqs-latest-book-edition-2", "question": ": The acceptance of Bill of exchange in Consignee book is debited to?", "options": ["Consignment account", "Consignor account", "Trading account", "Profit and loss account"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/accounting-mcqs-latest-book-edition-2/"}
{"subject": "accounting-mcqs-latest-book-edition-2", "topic": "accounting-mcqs-latest-book-edition-2", "question": ": The term of account and sales account are by nature:", "options": ["Equal", "Same", "Different", "Valuable"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/accounting-mcqs-latest-book-edition-2/"}
{"subject": "accounting-mcqs-latest-book-edition-2", "topic": "accounting-mcqs-latest-book-edition-2", "question": ": The Consignment stock appears in the balance sheet of:", "options": ["Consignee", "Consignor", "Both A and B", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/accounting-mcqs-latest-book-edition-2/"}
{"subject": "accounting-mcqs-latest-book-edition-2", "topic": "accounting-mcqs-latest-book-edition-2", "question": ": Which process is followed for adjusting invoice price to the cost price?", "options": ["Invoicing", "Costing", "Loading", "Unloading"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/accounting-mcqs-latest-book-edition-2/"}
{"subject": "accounting-mcqs-latest-book-edition-2", "topic": "accounting-mcqs-latest-book-edition-2", "question": ": The consignee is the:", "options": ["Agent", "Buyer", "Principal", "Seller"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/accounting-mcqs-latest-book-edition-2/"}
{"subject": "accounting-mcqs-latest-book-edition-2", "topic": "accounting-mcqs-latest-book-edition-2", "question": ": Account sale is submitted by the:", "options": ["Principal to his agent", "Debtor to the creditor", "Consignee", "Consignor"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/accounting-mcqs-latest-book-edition-2/"}
{"subject": "accounting-mcqs-latest-book-edition-2", "topic": "accounting-mcqs-latest-book-edition-2", "question": ": In Journal book the consignment is prepared by?", "options": ["Consignee", "Consignor", "Customer", "Debtor"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/accounting-mcqs-latest-book-edition-2/"}
{"subject": "accounting-mcqs-latest-book-edition-2", "topic": "accounting-mcqs-latest-book-edition-2", "question": ": The nature of Consignee account is?", "options": ["Real", "Nominal", "Personal", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/accounting-mcqs-latest-book-edition-2/"}
{"subject": "accounting-mcqs-latest-book-edition-2", "topic": "accounting-mcqs-latest-book-edition-2", "question": ": Where are abnormal losses credited in the book of consignor?", "options": ["Consignee account", "Consignment account", "Trading profit and loss account", "B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/accounting-mcqs-latest-book-edition-2/"}
{"subject": "accounting-mcqs-latest-book-edition-2", "topic": "accounting-mcqs-latest-book-edition-2", "question": ": In ordinary partnership business how many partners are?", "options": ["Not more than 2 partners", "Not more than 5 partners", "Not more than 50 partners", "Not more than 20 partners"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/accounting-mcqs-latest-book-edition-2/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Human Body Systems And Health E G Digestion Respiration Circulation Mcqs In Everyday Science General Mcqs In Everyday Science General", "question": ": Which of the following is the primary function of the digestive system?", "options": ["Oxygenating blood", "Breaking down food and absorbing nutrients", "Regulating body temperature", "Protecting the body from infections"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/human-body-systems-and-health-e-g-digestion-respiration-circulation-mcqs-in-everyday-science-general-mcqs-in-everyday-science-general/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Human Body Systems And Health E G Digestion Respiration Circulation Mcqs In Everyday Science General Mcqs In Everyday Science General", "question": ": What organ is responsible for pumping blood throughout the human body?", "options": ["Lungs", "Brain", "Heart", "Liver"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/human-body-systems-and-health-e-g-digestion-respiration-circulation-mcqs-in-everyday-science-general-mcqs-in-everyday-science-general/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Human Body Systems And Health E G Digestion Respiration Circulation Mcqs In Everyday Science General Mcqs In Everyday Science General", "question": ": Which system in the human body is responsible for the exchange of gases?", "options": ["Digestive system", "Circulatory system", "Respiratory system", "Nervous system"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/human-body-systems-and-health-e-g-digestion-respiration-circulation-mcqs-in-everyday-science-general-mcqs-in-everyday-science-general/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Human Body Systems And Health E G Digestion Respiration Circulation Mcqs In Everyday Science General Mcqs In Everyday Science General", "question": ": Which of the following is NOT part of the circulatory system?", "options": ["Arteries", "Veins", "Lymph nodes", "Esophagus"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/human-body-systems-and-health-e-g-digestion-respiration-circulation-mcqs-in-everyday-science-general-mcqs-in-everyday-science-general/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Human Body Systems And Health E G Digestion Respiration Circulation Mcqs In Everyday Science General Mcqs In Everyday Science General", "question": ": Which of these blood components is primarily responsible for clotting?", "options": ["Red blood cells", "White blood cells", "Platelets", "Plasma"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/human-body-systems-and-health-e-g-digestion-respiration-circulation-mcqs-in-everyday-science-general-mcqs-in-everyday-science-general/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Human Body Systems And Health E G Digestion Respiration Circulation Mcqs In Everyday Science General Mcqs In Everyday Science General", "question": ": The process by which the body takes in oxygen and expels carbon dioxide is called:", "options": ["Digestion", "Circulation", "Respiration", "Excretion"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/human-body-systems-and-health-e-g-digestion-respiration-circulation-mcqs-in-everyday-science-general-mcqs-in-everyday-science-general/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Human Body Systems And Health E G Digestion Respiration Circulation Mcqs In Everyday Science General Mcqs In Everyday Science General", "question": ": Which part of the digestive system is mainly responsible for water absorption?", "options": ["Stomach", "Small intestine", "Large intestine", "Liver"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/human-body-systems-and-health-e-g-digestion-respiration-circulation-mcqs-in-everyday-science-general-mcqs-in-everyday-science-general/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Human Body Systems And Health E G Digestion Respiration Circulation Mcqs In Everyday Science General Mcqs In Everyday Science General", "question": ": Which hormone regulates blood sugar levels in the body?", "options": ["Insulin", "Adrenaline", "Thyroxine", "Estrogen"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/human-body-systems-and-health-e-g-digestion-respiration-circulation-mcqs-in-everyday-science-general-mcqs-in-everyday-science-general/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Human Body Systems And Health E G Digestion Respiration Circulation Mcqs In Everyday Science General Mcqs In Everyday Science General", "question": ": What is the primary function of the kidneys?", "options": ["Regulate blood pressure", "Filter waste from the blood", "Produce hormones", "Break down fats"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/human-body-systems-and-health-e-g-digestion-respiration-circulation-mcqs-in-everyday-science-general-mcqs-in-everyday-science-general/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Human Body Systems And Health E G Digestion Respiration Circulation Mcqs In Everyday Science General Mcqs In Everyday Science General", "question": ": Which part of the nervous system controls voluntary muscle movements?", "options": ["Autonomic nervous system", "Somatic nervous system", "Central nervous system", "Peripheral nervous system"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/human-body-systems-and-health-e-g-digestion-respiration-circulation-mcqs-in-everyday-science-general-mcqs-in-everyday-science-general/"}
{"subject": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "topic": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "question": "A ball is dropped on a horizontal surface from a height of 15 m. What will be the rebounding height of the ball after striking the surface? (coefficient of restitution = 0.8)", "options": ["6.5 m", "9.6 m", "5.6 m", "Insufficient data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test/"}
{"subject": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "topic": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "question": "Which of the following is the suitable SI unit of power?", "options": ["Joule", "Pound", "Ergs/second", "Watt"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test/"}
{"subject": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "topic": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "question": "The force for which work done is independent of _______ is called a conservative force.", "options": ["Distance", "All of the above", "Time", "Path"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test/"}
{"subject": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "topic": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "question": "If the resultant of forces acting on a body is zero, the body", "options": ["Is in equilibrium", "Is not in equilibrium", "Is moving with non-uniform velocity", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test/"}
{"subject": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "topic": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "question": "Which of the following is represented by the area under the force-displacement diagram?", "options": ["Impulse", "Momentum", "Work done", "Power"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test/"}
{"subject": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "topic": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "question": "When the car moves on road its wheel has", "options": ["Purely rotational motion", "Rotational and translational motion", "Purely translational motion", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test/"}
{"subject": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "topic": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "question": "The normal component of acceleration is zero which motion is include _____.", "options": ["Curvilinear", "Rotational", "Rectilinear", "Translation"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test/"}
{"subject": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "topic": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "question": "Dynamic friction is always ____ static friction", "options": ["Equal to", "Greater than", "Less than", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test/"}
{"subject": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "topic": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "question": "Every action has an equal and opposite reaction is ____ law of motion.", "options": ["Newton’s first law", "Newton’s second law", "Newton’s third law", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test/"}
{"subject": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "topic": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "question": "The maximum displacement of a body from its mean position is", "options": ["Mean position", "Amplitude", "Frequency", "Time period"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test/"}
{"subject": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "topic": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "question": "The force applied on a body of mass 250 kg to produce an acceleration of 10 m/s², is", "options": ["2500 N", "150 N", "15 N", "3000 N"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test/"}
{"subject": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "topic": "mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test", "question": "A particle moving with respect to fixed frame of reference is called as __________", "options": ["Relative motion", "Absolute motion", "Rectilinear motion", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-mechanics-for-lecturer-nts-and-ppsc-test/"}
{"subject": "mechanics-mcqs", "topic": "mechanics-mcqs", "question": "Extension per unit length is equal to _________.", "options": ["Tensile strain", "Tensile stress", "Both A and B", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mechanics-mcqs/"}
{"subject": "mechanics-mcqs", "topic": "mechanics-mcqs", "question": "Force per unit area is equal to _____.", "options": ["Force", "Momentum", "None of these", "Torque"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mechanics-mcqs/"}
{"subject": "mechanics-mcqs", "topic": "mechanics-mcqs", "question": "The (vector) force per unit volume is equal ______.", "options": ["Mass", "Momentum", "Pressure", "None of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mechanics-mcqs/"}
{"subject": "mechanics-mcqs", "topic": "mechanics-mcqs", "question": "Which axial force is determined while analyzing a truss?", "options": ["Compressive force", "Tensile force", "Both A and B", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mechanics-mcqs/"}
{"subject": "mechanics-mcqs", "topic": "mechanics-mcqs", "question": "Both of the momentum and total kinetic energy are conserved in ___________.", "options": ["Elastic Collision", "Truss", "Both A and B", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mechanics-mcqs/"}
{"subject": "mechanics-mcqs", "topic": "mechanics-mcqs", "question": "Energy above that needed to ionize the molecule is carried away as kinetic energy of the electron ejected.", "options": ["Heat energy", "Thermal Energy", "None of these", "Kinetic Energy"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mechanics-mcqs/"}
{"subject": "mechanics-mcqs", "topic": "mechanics-mcqs", "question": "Body is subjected to plastic impact, _______.", "options": ["Only momentum is conserved", "Only kinetic energy is conserved", "Both A and B", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mechanics-mcqs/"}
{"subject": "mechanics-mcqs", "topic": "mechanics-mcqs", "question": "The total momentum of a system __________, if no external impressed force acts on it.", "options": ["Remains constant", "Decreases", "Increases", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mechanics-mcqs/"}
{"subject": "mechanics-mcqs", "topic": "mechanics-mcqs", "question": "The force that acts on a mass of 1 g and gives it an acceleration of 1 cm/s² is defined as", "options": ["1 dyne", "1 Newton", "1 pound-force", "1 pa-force"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mechanics-mcqs/"}
{"subject": "mechanics-mcqs", "topic": "mechanics-mcqs", "question": "While Young’s modulus ‘E’ relates to change in length and bulk modulus ‘K’ relates to change in volume, modulus of rigidity ‘G’ relates to change in:", "options": ["Weight", "Density", "Temperature", "Shape"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mechanics-mcqs/"}
{"subject": "biochemical-engineering-mcqs-questions-answers", "topic": "biochemical-engineering-mcqs-questions-answers", "question": "The sterilization method depends on____.", "options": ["volume and feed rate", "nature of additive", "None of these", "both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/biochemical-engineering-mcqs-questions-answers/"}
{"subject": "biochemical-engineering-mcqs-questions-answers", "topic": "biochemical-engineering-mcqs-questions-answers", "question": "Conventional tertiary treatment is used in______.", "options": ["none of these", "sedimentation", "fertilization", "chemical coagulation and flocculation"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/biochemical-engineering-mcqs-questions-answers/"}
{"subject": "biochemical-engineering-mcqs-questions-answers", "topic": "biochemical-engineering-mcqs-questions-answers", "question": "Sterilization can be formed by_____.", "options": ["all of these", "heat", "chemical", "radiation"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/biochemical-engineering-mcqs-questions-answers/"}
{"subject": "biochemical-engineering-mcqs-questions-answers", "topic": "biochemical-engineering-mcqs-questions-answers", "question": "Conventional adsorption is a_____process", "options": ["reversible", "irreversible", "fertilization", "none of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/biochemical-engineering-mcqs-questions-answers/"}
{"subject": "biochemical-engineering-mcqs-questions-answers", "topic": "biochemical-engineering-mcqs-questions-answers", "question": "________are commonly used in a filter?", "options": ["Both A and B", "Charcoal", "Sand", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/biochemical-engineering-mcqs-questions-answers/"}
{"subject": "biochemical-engineering-mcqs-questions-answers", "topic": "biochemical-engineering-mcqs-questions-answers", "question": "Anabolism and catabolism are types of_______.", "options": ["None of these", "chain", "chemical", "metabolism"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/biochemical-engineering-mcqs-questions-answers/"}
{"subject": "biochemical-engineering-mcqs-questions-answers", "topic": "biochemical-engineering-mcqs-questions-answers", "question": "Length of a dark period for cocklebur is_____", "options": ["10-14", "10-11", "18-19", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/biochemical-engineering-mcqs-questions-answers/"}
{"subject": "biochemical-engineering-mcqs-questions-answers", "topic": "biochemical-engineering-mcqs-questions-answers", "question": "_____are used in made of a tobacco pipe.", "options": ["keal", "wood", "pyrus patia", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/biochemical-engineering-mcqs-questions-answers/"}
{"subject": "biochemical-engineering-mcqs-questions-answers", "topic": "biochemical-engineering-mcqs-questions-answers", "question": "_______ is composed of wood.", "options": ["All of these", "fluid", "ileum", "duodenum"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/biochemical-engineering-mcqs-questions-answers/"}
{"subject": "electronics-and-communication-engineering-mcqs-questions-answers", "topic": "electronics-and-communication-engineering-mcqs-questions-answers", "question": "Which capacitor stores a higher amount of energy?", "options": ["Mica capacitor", "Plastic capacitor", "Air capacitor", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/electronics-and-communication-engineering-mcqs-questions-answers/"}
{"subject": "electronics-and-communication-engineering-mcqs-questions-answers", "topic": "electronics-and-communication-engineering-mcqs-questions-answers", "question": "IGBT stands for_____.(E) None of these", "options": ["Inductive gate bipolar transistor", "Insulated gate bidirectional transistor", "Insulated gate bipolar transistor", "Insulator gate best transformer"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/electronics-and-communication-engineering-mcqs-questions-answers/"}
{"subject": "electronics-and-communication-engineering-mcqs-questions-answers", "topic": "electronics-and-communication-engineering-mcqs-questions-answers", "question": "Which one of the following is represented in a signal flow graph?", "options": ["Circles", "Squares", "Triangle", "Both A and B"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electronics-and-communication-engineering-mcqs-questions-answers/"}
{"subject": "electronics-and-communication-engineering-mcqs-questions-answers", "topic": "electronics-and-communication-engineering-mcqs-questions-answers", "question": "In octal system, ______ numbers are used.", "options": ["16", "9", "8", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/electronics-and-communication-engineering-mcqs-questions-answers/"}
{"subject": "electronics-and-communication-engineering-mcqs-questions-answers", "topic": "electronics-and-communication-engineering-mcqs-questions-answers", "question": "One of the following is a semiconductor material?", "options": ["Copper", "Iron", "Silicon", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/electronics-and-communication-engineering-mcqs-questions-answers/"}
{"subject": "electronics-and-communication-engineering-mcqs-questions-answers", "topic": "electronics-and-communication-engineering-mcqs-questions-answers", "question": "PAC stands for______.(E) None of these", "options": ["Permanent angle converter", "Phase angle components", "Phase angle converter", "Phase angle capacitor"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/electronics-and-communication-engineering-mcqs-questions-answers/"}
{"subject": "electronics-and-communication-engineering-mcqs-questions-answers", "topic": "electronics-and-communication-engineering-mcqs-questions-answers", "question": "____ is the noise temperature of the sun?(E) None of these", "options": ["8000", "100000", "100", "3000"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electronics-and-communication-engineering-mcqs-questions-answers/"}
{"subject": "electronics-and-communication-engineering-mcqs-questions-answers", "topic": "electronics-and-communication-engineering-mcqs-questions-answers", "question": "______ is equivalent to Henry.", "options": ["Weber/Ampere", "Volts/Ampere", "Weber/Ampere²", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/electronics-and-communication-engineering-mcqs-questions-answers/"}
{"subject": "electronics-and-communication-engineering-mcqs-questions-answers", "topic": "electronics-and-communication-engineering-mcqs-questions-answers", "question": "_____ number of carriers in a semiconductor.", "options": ["None of these", "8", "5", "2"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/electronics-and-communication-engineering-mcqs-questions-answers/"}
{"subject": "electronics-and-communication-engineering-mcqs-questions-answers", "topic": "electronics-and-communication-engineering-mcqs-questions-answers", "question": "MICR stands for______.(E) None of these", "options": ["Magnetic Ink Chart Receipt", "Magnetic Ink Chart Recognition", "Magnetic Ink Character Recognition", "Magnetic Ink Capacitor Reverse"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/electronics-and-communication-engineering-mcqs-questions-answers/"}
{"subject": "environmental-engineering-mcqs-quizlet-bank", "topic": "environmental-engineering-mcqs-quizlet-bank", "question": "The process of converting wastewater into reusable water is called _____.", "options": ["Sedimentation", "Filtration", "Aeration", "Water recycling"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/environmental-engineering-mcqs-quizlet-bank/"}
{"subject": "environmental-engineering-mcqs-quizlet-bank", "topic": "environmental-engineering-mcqs-quizlet-bank", "question": "The main greenhouse gas responsible for global warming is _____.", "options": ["Carbon dioxide (CO₂)", "Nitrogen (N₂)", "Oxygen (O₂)", "Neon (Ne)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/environmental-engineering-mcqs-quizlet-bank/"}
{"subject": "environmental-engineering-mcqs-quizlet-bank", "topic": "environmental-engineering-mcqs-quizlet-bank", "question": "BOD stands for _____.", "options": ["Biological Oxygen Dissolution", "Biodegradable Organic Debris", "Biochemical Oxygen Demand", "Bio-Oxygen Determination"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/environmental-engineering-mcqs-quizlet-bank/"}
{"subject": "environmental-engineering-mcqs-quizlet-bank", "topic": "environmental-engineering-mcqs-quizlet-bank", "question": "The pH of pure water at 25°C is _____.", "options": ["5", "11", "9", "7"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/environmental-engineering-mcqs-quizlet-bank/"}
{"subject": "environmental-engineering-mcqs-quizlet-bank", "topic": "environmental-engineering-mcqs-quizlet-bank", "question": "The layer of the atmosphere where most weather changes occur is _____.", "options": ["Troposphere", "Stratosphere", "Mesosphere", "Thermosphere"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/environmental-engineering-mcqs-quizlet-bank/"}
{"subject": "environmental-engineering-mcqs-quizlet-bank", "topic": "environmental-engineering-mcqs-quizlet-bank", "question": "The primary pollutant emitted from automobiles is _____.", "options": ["Sulphur dioxide", "Carbon monoxide", "Ammonia", "Ozone"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/environmental-engineering-mcqs-quizlet-bank/"}
{"subject": "environmental-engineering-mcqs-quizlet-bank", "topic": "environmental-engineering-mcqs-quizlet-bank", "question": "The most widely used disinfectant in water treatment is _____.", "options": ["Chlorine", "Ozone", "UV radiation", "Bromine"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/environmental-engineering-mcqs-quizlet-bank/"}
{"subject": "environmental-engineering-mcqs-quizlet-bank", "topic": "environmental-engineering-mcqs-quizlet-bank", "question": "Which one of the following is a non-biodegradable pollutant?", "options": ["Paper", "Plastic", "Food waste", "Vegetables"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/environmental-engineering-mcqs-quizlet-bank/"}
{"subject": "environmental-engineering-mcqs-quizlet-bank", "topic": "environmental-engineering-mcqs-quizlet-bank", "question": "The measure of acidity or alkalinity of water is known as _____.", "options": ["Turbidity", "Hardness", "pH", "Conductivity"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/environmental-engineering-mcqs-quizlet-bank/"}
{"subject": "environmental-engineering-mcqs-quizlet-bank", "topic": "environmental-engineering-mcqs-quizlet-bank", "question": "The main cause of acid rain is the emission of _____.", "options": ["Carbon monoxide", "Hydrogen", "Methane", "Sulphur dioxide and nitrogen oxides"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/environmental-engineering-mcqs-quizlet-bank/"}
{"subject": "agricultural-engineering-mcqs", "topic": "agricultural-engineering-mcqs", "question": "Porosity of sandy soil to_.", "options": ["10 to 20%", "35 to 50%", "Both A and B", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/agricultural-engineering-mcqs/"}
{"subject": "agricultural-engineering-mcqs", "topic": "agricultural-engineering-mcqs", "question": "______ are the protandrous species.", "options": ["Avocados", "Walnuts", "Leaf", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/agricultural-engineering-mcqs/"}
{"subject": "agricultural-engineering-mcqs", "topic": "agricultural-engineering-mcqs", "question": "_____is a warm season vegetable.", "options": ["Lady finger", "Okra", "Tomato", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/agricultural-engineering-mcqs/"}
{"subject": "agricultural-engineering-mcqs", "topic": "agricultural-engineering-mcqs", "question": "Proteins are the mixture of____acids.", "options": ["All of these", "Nitric", "Sulfuric", "Amino"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/agricultural-engineering-mcqs/"}
{"subject": "agricultural-engineering-mcqs", "topic": "agricultural-engineering-mcqs", "question": "Contamination in ____of maize.", "options": ["12%", "7%", "Both A and B", "1%"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/agricultural-engineering-mcqs/"}
{"subject": "agricultural-engineering-mcqs", "topic": "agricultural-engineering-mcqs", "question": "____is the unit of classification.", "options": ["Genus", "Leaf", "Species", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/agricultural-engineering-mcqs/"}
{"subject": "agricultural-engineering-mcqs", "topic": "agricultural-engineering-mcqs", "question": "Calorific value of coal is____kcal/kg.", "options": ["2200", "8300", "1320", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/agricultural-engineering-mcqs/"}
{"subject": "agricultural-engineering-mcqs", "topic": "agricultural-engineering-mcqs", "question": "Specific gravity of dominant material is_____.", "options": ["0.35", "None of these", "4.65", "2.65"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/agricultural-engineering-mcqs/"}
{"subject": "agricultural-engineering-mcqs", "topic": "agricultural-engineering-mcqs", "question": "The solubility of solid in a liquid is_____when temperature high.", "options": ["Increases", "Decreases", "Both A & B", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/agricultural-engineering-mcqs/"}
{"subject": "agricultural-engineering-mcqs", "topic": "agricultural-engineering-mcqs", "question": "One of the following is micronutrient?", "options": ["Hg", "Ca", "Zn", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/agricultural-engineering-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Data Management Excel Mcqs", "question": ": What is the purpose of using named ranges in Excel?", "options": ["To format cells with specific names", "To simplify complex formulas and improve readability", "To create new worksheets", "To sort data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-data-management-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Data Management Excel Mcqs", "question": ": How can you define a named range in Excel?", "options": ["Use the “Name Box” or “Define Name” option under the Formulas tab", "Right-click on a cell and select “Name Range”", "Use the “Data Validation” tool", "Apply a cell style from the Home tab"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-data-management-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Data Management Excel Mcqs", "question": ": Which Excel feature allows you to consolidate data from multiple worksheets into one?", "options": ["Data Consolidation", "Power Query", "PivotTable", "Data Validation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-data-management-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Data Management Excel Mcqs", "question": ": What is the main function of the “Text to Columns” feature in Excel?", "options": ["To convert text data into numeric values", "To split text from one column into multiple columns based on delimiters", "To merge text from multiple columns into one column", "To format cells based on text values"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-data-management-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Data Management Excel Mcqs", "question": ": How can you use the “Advanced Filter” to manage data in Excel?", "options": ["To filter data based on complex criteria and copy results to another location", "To create basic filters for simple data views", "To sort data alphabetically or numerically", "To apply conditional formatting rules"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-data-management-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Data Management Excel Mcqs", "question": ": Which tool in Excel allows you to perform complex data transformations and manipulations?", "options": ["Power Query", "PivotTable", "Chart Tools", "Solver"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-data-management-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Data Management Excel Mcqs", "question": ": What is the use of the “Remove Duplicates” feature in Excel?", "options": ["To keep all data and identify duplicates", "To delete duplicate rows from a data range or table", "To highlight duplicates without removing them", "To merge duplicate rows into a single row"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-data-management-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Data Management Excel Mcqs", "question": ": How can you protect data in Excel to prevent unauthorized changes?", "options": ["By using the “Protect Sheet” and “Protect Workbook” features under the Review tab", "By hiding worksheets", "By using conditional formatting", "By applying data validation rules"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-data-management-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Data Management Excel Mcqs", "question": ": What is the purpose of the “Consolidate” tool in Excel?", "options": ["To summarize data from multiple ranges or worksheets into one location", "To create charts from data", "To apply formatting to cells", "To filter data based on specific criteria"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-data-management-excel-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Data Management Excel Mcqs", "question": ": Which feature in Excel allows you to combine data from multiple tables into a single table for analysis?", "options": ["VLOOKUP", "Power Pivot", "Data Validation", "Text to Columns"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-data-management-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": Which function would you use to find the largest value in a range?", "options": ["MAX", "MIN", "LARGE", "SUM"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": What does the VLOOKUP function do in Excel?", "options": ["Looks up data vertically in a table", "Looks up data horizontally in a table", "Calculates the sum of a range", "Counts the number of cells that meet criteria"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": Which function calculates the standard deviation of a dataset?", "options": ["AVERAGE", "STDEV", "VAR", "MEDIAN"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": How does the IF function work in Excel?", "options": ["It calculates the sum of values", "It returns one value if a condition is true and another if it is false", "It sorts data in a range", "It finds the minimum value in a range"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": What function would you use to count the number of cells in a range that contain numbers?", "options": ["COUNTIF", "COUNTA", "COUNT", "COUNTBLANK"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": What is the purpose of the CONCATENATE function in Excel?", "options": ["To add numbers together", "To multiply numbers", "To join text strings together", "To divide numbers"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": Which function would you use to calculate the average of a range of numbers, ignoring any text values?", "options": ["AVERAGEIF", "AVERAGE", "MEDIAN", "AVERAGEA"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": What does the INDEX function do in Excel?", "options": ["Finds the position of a value in a range", "Returns a value from a specified position in a range", "Counts the number of cells that meet a criteria", "Sorts data in ascending order"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": Which function would you use to round a number to a specified number of decimal places?", "options": ["ROUND", "ROUNDUP", "ROUNDDOWN", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": How does the MATCH function work in Excel?", "options": ["Returns the value from a specified position in a range", "Returns the relative position of an item in a range that matches a specified value", "Finds the largest value in a range", "Concatenates text strings"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": What function would you use to sum a range of values that meet a specific condition?", "options": ["SUM", "SUMIF", "SUMPRODUCT", "SUMIFS"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": Which function can be used to return the current date and time?", "options": ["TODAY", "NOW", "DATE", "TIME"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": How can you calculate the monthly payment for a loan using Excel?", "options": ["SUM function", "PMT function", "PV function", "FV function"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": Which function would you use to look up a value in a table based on matching criteria in both rows and columns?", "options": ["VLOOKUP", "HLOOKUP", "INDEX-MATCH", "LOOKUP"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": What is the purpose of the OFFSET function in Excel?", "options": ["To return the value of a cell offset from a given reference", "To find the position of a value in a range", "To count the number of cells that meet a criteria", "To round numbers to a specified number of decimal places"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": Which function would you use to extract the year from a date?", "options": ["DAY", "MONTH", "YEAR", "DATE"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": How does the TEXT function work in Excel?", "options": ["Converts a value to text in a specified format", "Finds the position of a character in a text string", "Joins text strings together", "Extracts a substring from a text string"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": Which function allows you to perform a logical test and return one value for a TRUE result, and another for a FALSE result?", "options": ["AND", "OR", "IF", "NOT"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "advanced-formulas-and-functions-excel-mcqs", "topic": "advanced-formulas-and-functions-excel-mcqs", "question": ": What function would you use to sum the products of corresponding ranges or arrays?", "options": ["SUM", "PRODUCT", "SUMIF", "SUMPRODUCT"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-formulas-and-functions-excel-mcqs/"}
{"subject": "common-functions-sum-average-min-max-count-excel-mcqs-2", "topic": "common-functions-sum-average-min-max-count-excel-mcqs-2", "question": ": Which function in Excel is used to add a range of cells?", "options": ["AVERAGE", "SUM", "COUNT", "MIN"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/common-functions-sum-average-min-max-count-excel-mcqs-2/"}
{"subject": "common-functions-sum-average-min-max-count-excel-mcqs-2", "topic": "common-functions-sum-average-min-max-count-excel-mcqs-2", "question": ": Which Excel function returns the smallest value in a set of values?", "options": ["MAX", "AVERAGE", "MIN", "COUNT"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/common-functions-sum-average-min-max-count-excel-mcqs-2/"}
{"subject": "common-functions-sum-average-min-max-count-excel-mcqs-2", "topic": "common-functions-sum-average-min-max-count-excel-mcqs-2", "question": ": What does the COUNT function in Excel do?", "options": ["Counts the number of cells that contain numbers.", "Counts the number of all cells.", "Counts the number of empty cells.", "Counts the number of cells that contain text."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/common-functions-sum-average-min-max-count-excel-mcqs-2/"}
{"subject": "common-functions-sum-average-min-max-count-excel-mcqs-2", "topic": "common-functions-sum-average-min-max-count-excel-mcqs-2", "question": ": Which function in Excel is used to calculate the average of a group of numbers?", "options": ["SUM", "MAX", "MIN", "AVERAGE"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/common-functions-sum-average-min-max-count-excel-mcqs-2/"}
{"subject": "common-functions-sum-average-min-max-count-excel-mcqs-2", "topic": "common-functions-sum-average-min-max-count-excel-mcqs-2", "question": ": Which Excel function returns the largest value in a set of values?", "options": ["SUM", "MAX", "MIN", "COUNT"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/common-functions-sum-average-min-max-count-excel-mcqs-2/"}
{"subject": "common-functions-sum-average-min-max-count-excel-mcqs-2", "topic": "common-functions-sum-average-min-max-count-excel-mcqs-2", "question": ": To find the total of a range of cells in Excel, you would use:", "options": ["AVERAGE", "COUNT", "SUM", "MIN"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/common-functions-sum-average-min-max-count-excel-mcqs-2/"}
{"subject": "common-functions-sum-average-min-max-count-excel-mcqs-2", "topic": "common-functions-sum-average-min-max-count-excel-mcqs-2", "question": ": If you want to count the number of cells in a range that are not empty, which function would you use?", "options": ["COUNT", "COUNTA", "COUNTBLANK", "COUNTIF"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/common-functions-sum-average-min-max-count-excel-mcqs-2/"}
{"subject": "common-functions-sum-average-min-max-count-excel-mcqs-2", "topic": "common-functions-sum-average-min-max-count-excel-mcqs-2", "question": ": Which function would you use to determine the highest score in a list of test results?", "options": ["MIN", "AVERAGE", "MAX", "SUM"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/common-functions-sum-average-min-max-count-excel-mcqs-2/"}
{"subject": "common-functions-sum-average-min-max-count-excel-mcqs-2", "topic": "common-functions-sum-average-min-max-count-excel-mcqs-2", "question": ": To find the average of the values in cells A1 through A10, you would use:", "options": ["=SUM(A1)", "=AVERAGE(A1)", "=MIN(A1)", "=MAX(A1)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/common-functions-sum-average-min-max-count-excel-mcqs-2/"}
{"subject": "common-functions-sum-average-min-max-count-excel-mcqs-2", "topic": "common-functions-sum-average-min-max-count-excel-mcqs-2", "question": ": Which function can be used to count the number of numeric entries in a range?", "options": ["COUNT", "SUM", "AVERAGE", "MIN"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/common-functions-sum-average-min-max-count-excel-mcqs-2/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "Which SQL clause is used to restrict the rows returned by a query based on a specified condition?", "options": ["SELECT", "WHERE", "FROM", "GROUP BY"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "What does the SQL function NVL(expr1, expr2) do?", "options": ["Returns expr1 if it is not null, otherwise returns expr2.", "Returns the sum of expr1 and expr2.", "Returns true if expr1 equals expr2.", "Returns expr1 if it is equal to expr2, otherwise null."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "Which SQL function is used to remove leading and trailing spaces from a string?", "options": ["SUBSTR", "REPLACE", "TRIM", "INSTR"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "What is the purpose of the HAVING clause in SQL?", "options": ["To filter rows before the grouping operation.", "To filter rows after the grouping operation.", "To join two tables.", "To sort the result set."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "Which of the following SQL statements is used to retrieve unique values from a column?", "options": ["SELECT DISTINCT column_name FROM table_name;", "SELECT UNIQUE column_name FROM table_name;", "SELECT DIFFERENT column_name FROM table_name;", "SELECT DISTINCT * FROM table_name;"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "What does the COALESCE function do in SQL?", "options": ["Returns the first non-null value in the list.", "Concatenates two strings.", "Calculates the average of a list of numbers.", "Replaces a substring within a string."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "Which SQL function is used to count the number of rows in a table?", "options": ["SUM", "COUNT", "AVG", "MAX"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "Which SQL keyword is used to combine the results of two queries, eliminating duplicate rows?", "options": ["JOIN", "UNION", "INTERSECT", "EXCEPT"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "What is the result of SELECT MOD(15, 4)?", "options": ["3", "4", "2", "1"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "Which SQL function is used to convert a string to uppercase?", "options": ["LOWER", "INITCAP", "UPPER", "LCASE"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "What is the purpose of the CASE statement in SQL?", "options": ["To perform conditional logic in SQL queries.", "To join two tables.", "To create a new table.", "To update a table."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "Which of the following SQL functions can be used to find the current date and time?", "options": ["CURDATE()", "GETDATE()", "SYSDATE()", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "Which SQL clause is used to sort the result set?", "options": ["ORDER BY", "GROUP BY", "SORT BY", "ARRANGE BY"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "Which SQL function returns the length of a string?", "options": ["LENGTH", "CHAR_LENGTH", "LEN", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "What does the ROUND function do in SQL?", "options": ["Truncates a number to the nearest integer.", "Rounds a number to a specified number of decimal places.", "Returns the square root of a number.", "Returns the absolute value of a number."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "What is the result of SELECT CONCAT('SQL', ' ', 'Tutorial')?", "options": ["‘SQL Tutorial’", "‘SQLTutorial’", "‘SQL, Tutorial’", "‘SQL-Tutorial’"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "Which SQL clause is used to combine rows from two or more tables based on a related column?", "options": ["WHERE", "JOIN", "GROUP BY", "ORDER BY"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "Which SQL function is used to extract a substring from a string?", "options": ["REPLACE", "SUBSTRING or SUBSTR", "TRIM", "CONCAT"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "What does the DATEDIFF function do in SQL?", "options": ["Returns the difference between two date values.", "Adds a specified number of days to a date.", "Returns the current date.", "Formats a date value."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Advanced Sql Queries And Functions Mcqs In Dbms", "question": "Which SQL function is used to find the largest value in a column?", "options": ["MAX", "MIN", "AVG", "COUNT"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/advanced-sql-queries-and-functions-mcqs-in-dbms/"}
{"subject": "internet-protocols-mcqs", "topic": "internet-protocols-mcqs", "question": "Which version field of IPv4 header, when the machine is using some other version of IPv4 then datagram__________", "options": ["Accepted", "Discarded", "Interpreted incorrectly", "Interpreted"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/internet-protocols-mcqs/"}
{"subject": "internet-protocols-mcqs", "topic": "internet-protocols-mcqs", "question": "What is header of datagram in IPv4________", "options": ["20 to 60 bytes", "20 to 80 bytes", "20 to 40 bytes", "0 to 20 bytes"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/internet-protocols-mcqs/"}
{"subject": "internet-protocols-mcqs", "topic": "internet-protocols-mcqs", "question": "Which one of the following source needs to pass information to all routers visited by datagram, the option used in", "options": ["IP-by-IP option", "Header-by-Header option", "Hop-by-Hop Option", "Loop-by-loop Option"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/internet-protocols-mcqs/"}
{"subject": "internet-protocols-mcqs", "topic": "internet-protocols-mcqs", "question": "What is the responsibility of the internetwork, the network layer is ________", "options": ["Host to Server communication", "Host to User Link", "User to Host IP", "Host to Host Delivery"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/internet-protocols-mcqs/"}
{"subject": "internet-protocols-mcqs", "topic": "internet-protocols-mcqs", "question": "What is the abbreviation of CCT…", "options": ["Congestion Controlled Transmission", "Close Circuit Traffic", "Close Circuit Transmission", "Congestion Controlled Traffic"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/internet-protocols-mcqs/"}
{"subject": "internet-protocols-mcqs", "topic": "internet-protocols-mcqs", "question": "Fragmented datagram’s fragment size should have the first-byte number of IPv4 divisible by_______", "options": ["8", "16", "2", "4"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/internet-protocols-mcqs/"}
{"subject": "internet-protocols-mcqs", "topic": "internet-protocols-mcqs", "question": "How IPv6 is designed to allow extension of_________", "options": ["Headers", "DataSet", "Protocol", "Routes"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/internet-protocols-mcqs/"}
{"subject": "internet-protocols-mcqs", "topic": "internet-protocols-mcqs", "question": "When flag field that fragmentation of IPV4 is________.", "options": ["2 bit field", "1 bit field", "4 bit field", "3 bit field"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/internet-protocols-mcqs/"}
{"subject": "internet-protocols-mcqs", "topic": "internet-protocols-mcqs", "question": "M bit is 0, value of HLEN is 5, value of total length is 200 and offset value _______ ,in an IPv6 datagram.", "options": ["200", "300", "350", "400"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/internet-protocols-mcqs/"}
{"subject": "internet-protocols-mcqs", "topic": "internet-protocols-mcqs", "question": "In IPv4, a When machine drops header and trailer when it receives a", "options": ["Frame", "Signal", "Request", "Service"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/internet-protocols-mcqs/"}
{"subject": "internet-protocols-mcqs", "topic": "internet-protocols-mcqs", "question": "The datagram network uses universal addresses defined in the network layer to route packets from source to the…", "options": ["Destination", "Application", "Same source", "Layers"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/internet-protocols-mcqs/"}
{"subject": "internet-protocols-mcqs", "topic": "internet-protocols-mcqs", "question": "How physical and data link layers of a network operate…", "options": ["Unjointly", "Seperately", "Locally", "Independently"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/internet-protocols-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Communication Mcqs", "question": "Which of the following is correct in the uniform quantization process?", "options": ["Step size varies according to the values of the input signal", "The step size remains the same", "The quantizer has linear characteristics", "Both B and C are correct"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/digital-communication-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Communication Mcqs", "question": "What is the process of converting the analog sample into discrete form known as?", "options": ["Quantization", "Modulation", "Sampling", "Multiplexing"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/digital-communication-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Communication Mcqs", "question": "Which one of the following are the disadvantages of PCM?", "options": ["Cannot be decoded easily", "It requires a large bandwidth", "Very high noise", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/digital-communication-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Communication Mcqs", "question": "The modulation technique that requires minimum bandwidth in digital transmission is:", "options": ["DPCM", "PAM", "Delta modulation", "PCM"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/digital-communication-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Communication Mcqs", "question": "During the Differential Pulse Code Modulation technique, decoding is performed by:", "options": ["Sampler", "Accumulator", "Quantizer", "PLL"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/digital-communication-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Communication Mcqs", "question": "When does granular noise occur?", "options": ["Step size is too large", "Bandwidth is too large", "Step size is too small", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/digital-communication-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Communication Mcqs", "question": "How is code strength characterized?", "options": ["Code weight", "Code size", "Maximum distance", "Minimum distance"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/digital-communication-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Communication Mcqs", "question": "The value of ‘n’ should be _______ for better efficiency and simplicity.", "options": ["Minimum", "Maximum", "Infinity", "Zero"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/digital-communication-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Communication Mcqs", "question": "Which of the following are types of distortion?", "options": ["Jitter", "Noise", "Error", "Both A & B Correct"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/digital-communication-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Communication Mcqs", "question": "The reconstruction of continuous signals is done using __________ algorithm.", "options": ["Interpolation", "Decimation & Interpolation", "Decimation", "None of the Above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/digital-communication-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Communication Mcqs", "question": "Where is sampling used?", "options": ["Audio", "Speech", "Video", "All of above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/digital-communication-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Digital Communication Mcqs", "question": "The number of errors that can be corrected without erasure information is:", "options": ["(Dmin – 1)/2", "Dmin + 1", "Dmin – 1", "(Dmin + 1)/2"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/digital-communication-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Link Layer Osi Model Solved Mcqs", "question": "Which results are more likely to occur during the frame transmission in Stop-and-Wait ARQ technique?", "options": ["Loss of frame or an acknowledgement", "Delay in an acknowledgement", "All of the above", "Normal operation"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/data-link-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Link Layer Osi Model Solved Mcqs", "question": "Frames issued by the secondary station of High-level data link control are known as?", "options": ["Response", "Command", "Link", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/data-link-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Link Layer Osi Model Solved Mcqs", "question": "Which technique are more likely to occur during the frame transmission in the Stop-and-Wait ARQ technique?", "options": ["Loss of frame or an acknowledgement", "Delay in an acknowledgement", "Normal operation", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/data-link-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Link Layer Osi Model Solved Mcqs", "question": "The category of High-level data link control frames that undergoes error & flow control techniques by comprising send and receive sequence numbers is?", "options": ["U-frames", "S-frames", "I-frames", "All of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-link-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Link Layer Osi Model Solved Mcqs", "question": "The data link layer takes the packets from _________ and sends them into frames for transmission.", "options": ["Application layer", "Physical layer", "Network layer", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-link-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Link Layer Osi Model Solved Mcqs", "question": "The data link layer is not able to perform?", "options": ["Channel coding", "Flow control", "Error control", "Framing"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/data-link-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Link Layer Osi Model Solved Mcqs", "question": "The data link layer divides the stream of bits received from the network layer into data units known as?", "options": ["Frame", "Segment", "Datagrams", "Message"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/data-link-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Link Layer Osi Model Solved Mcqs", "question": "CRC is abbreviated as?", "options": ["Code redundancy check", "Code repeat check", "Cyclic redundancy check", "Cyclic repeat check"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-link-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Link Layer Osi Model Solved Mcqs", "question": "Data link protocol known as?", "options": ["HDLC", "Point to point protocol", "Ethernet", "All of the mentioned"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/data-link-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Link Layer Osi Model Solved Mcqs", "question": "Multiple access protocol for channel access control is?", "options": ["CSMA/CA", "CSMA/CD", "Both A & B", "None of the mentioned"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-link-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Link Layer Osi Model Solved Mcqs", "question": "The layer that lies above the physical layer is?", "options": ["Data", "Data link", "Network layer", "Transport layer"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-link-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Link Layer Osi Model Solved Mcqs", "question": "In a real-life network, data link protocols are used as?", "options": ["In any direction", "In one direction", "In two directions", "In any direction"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-link-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Network Security Mcqs", "question": "Which technique is used for data protection?", "options": ["Data piracy", "Authentication", "Encryption", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/network-security-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Network Security Mcqs", "question": "__________ are the types of firewalls.", "options": ["Packet Filtering", "Dual Homed Gateway", "Both A and B", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/network-security-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Network Security Mcqs", "question": "Data is mirrored in two disks with _______.", "options": ["RAID 0", "RAID 2", "RAID 1", "All of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/network-security-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Network Security Mcqs", "question": "IDEA algorithm generates ______ keys.", "options": ["56", "28", "52", "72"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/network-security-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Network Security Mcqs", "question": "Coaxial cables are used in ________ networks.", "options": ["Telephone", "Cable TV", "Both A and B", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/network-security-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Network Security Mcqs", "question": "How many S-boxes are used in the DES algorithm?", "options": ["6", "24", "8", "42"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/network-security-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Network Security Mcqs", "question": "Optical Fiber transmits ______.", "options": ["Light signal", "Radio signal", "Electrical signal", "Both A and B"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/network-security-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Network Security Mcqs", "question": "HTTP port number used is ______.", "options": ["43", "441", "443", "449"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/network-security-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Network Security Mcqs", "question": "In network protocols, TCP/IP stands for.", "options": ["Transaction control protocol", "Transmission control protocol", "Transmission contribution protocol", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/network-security-mcqs/"}
{"subject": "internet-mcqs-quizlet-bank", "topic": "internet-mcqs-quizlet-bank", "question": ": Which application layer protocol is not used in the internet?", "options": ["resource reservation protocol", "none of the mentioned", "internet relay chat", "remote procedure call"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/internet-mcqs-quizlet-bank/"}
{"subject": "internet-mcqs-quizlet-bank", "topic": "internet-mcqs-quizlet-bank", "question": ": Where does the internet work on?", "options": ["circuit switching", "packet switching", "both packet switching and circuit switching", "none of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/internet-mcqs-quizlet-bank/"}
{"subject": "internet-mcqs-quizlet-bank", "topic": "internet-mcqs-quizlet-bank", "question": ": What is not used in media access control?", "options": ["fiber distributed data interface", "line ethernet", "digital subscriber", "all of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/internet-mcqs-quizlet-bank/"}
{"subject": "internet-mcqs-quizlet-bank", "topic": "internet-mcqs-quizlet-bank", "question": ": HTML is used for?", "options": ["high-level program", "web server", "machine language program", "web page"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/internet-mcqs-quizlet-bank/"}
{"subject": "internet-mcqs-quizlet-bank", "topic": "internet-mcqs-quizlet-bank", "question": ": What is a Website’s front page/main page called?", "options": ["home page", "browser page", "bookmark", "search page"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/internet-mcqs-quizlet-bank/"}
{"subject": "internet-mcqs-quizlet-bank", "topic": "internet-mcqs-quizlet-bank", "question": ": Which is not a search engine?", "options": ["yahoo", "windows", "google", "bing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/internet-mcqs-quizlet-bank/"}
{"subject": "internet-mcqs-quizlet-bank", "topic": "internet-mcqs-quizlet-bank", "question": ": What is the full form of HTML?", "options": ["hyper text manipulating links", "hyper text manipulation language", "hyper text markup language", "hyper text managing links"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/internet-mcqs-quizlet-bank/"}
{"subject": "internet-mcqs-quizlet-bank", "topic": "internet-mcqs-quizlet-bank", "question": ": A Computer can be linked to the internet through the", "options": ["cable modem", "phone-line modem", "DSL", "all of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/internet-mcqs-quizlet-bank/"}
{"subject": "internet-mcqs-quizlet-bank", "topic": "internet-mcqs-quizlet-bank", "question": ": Select one of the following top-level computer domains except?", "options": [".army", ".edu", ".org", ".gov"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/internet-mcqs-quizlet-bank/"}
{"subject": "internet-mcqs-quizlet-bank", "topic": "internet-mcqs-quizlet-bank", "question": ": What is the metasearch engine?", "options": ["search.io", "polymeta", "mamma", "none of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/internet-mcqs-quizlet-bank/"}
{"subject": "internet-mcqs-quizlet-bank", "topic": "internet-mcqs-quizlet-bank", "question": ": Which of the following are boolean search operators?", "options": ["not", "and", "or", "all of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/internet-mcqs-quizlet-bank/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "Which layer is used to perform routing in OSI network architecture?", "options": ["Session layer", "Data link layer", "Transport layer", "Network layer"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "Select from the following which one in the routing algorithm can be used for network layer design.", "options": ["Shortest path algorithm", "Link-state routing", "Distance vector routing", "All of the mentioned"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "A subset of a network that contains all the routers but has no loops is known as", "options": ["Spider tree", "Spider structure", "Spanning-tree", "None of the mentioned"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "Select from the following which command is used to operate the TCP/IP routing table.", "options": ["Show IP route", "route", "ipconfig", "traceroute"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "Select the work of the router in a network.", "options": ["Identify on which outgoing link a packet is to be sent", "Send a packet to the next free outgoing link", "Send a packet to all outgoing links", "Send a packet to all outgoing links except the originated link"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "The routing tables of a router are used to keep?", "options": ["MAC address assignments", "Port assignments to network devices", "Distribute IP addresses to network devices", "The routes for forwarding the data to its destination"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "Select the size of the source and destination IP address in the IP header.", "options": ["4 bits", "32 bits", "16 bits", "8 bits"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "Which one is the natural mask for a Class C network?", "options": ["255.255.255.1", "255.255.255.255", "255.255.255.254", "255.255.255.0"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "172.31.25.151 is an example of which one?", "options": ["Public", "Private", "Class A", "Class E"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "Select the use of the switch in a datagram network.", "options": ["Destination address", "Routing table", "Sender address", "Header"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "The routing processor searches in the routing table is known as", "options": ["Switch fabric", "Table lookup", "Buffer", "Rolling table"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "Select the command used to manipulate the TCP/IP routing table.", "options": ["ifconfig", "ipconfig", "route", "traceroute"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "Which utility is used if you want to find the number of routers between a source and destination?", "options": ["route", "traceroute", "ifconfig", "ipconfig"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "Select which one is used related to config in Microsoft Windows.", "options": ["Display all current TCP/IP network configuration values", "Modify DNS settings", "Modify DHCP settings", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "Which is used in delivery when both the deliverer of the IP packet and the destination are on the same network?", "options": ["A connectionless", "Indirect", "A direct", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "Select which one is used in delivery when the deliverer of the IP packet and the destination are on different networks.", "options": ["A connection-oriented", "An indirect", "A direct", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "Select from the following in which forwarding, the complete IP address of a destination is provided in the routing table.", "options": ["Next-hop", "Host-specific", "Network-specific", "Default"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Router Mcqs Networking Devices", "question": "Choose from the following in which forwarding, the mask and destination addresses are both 0.0.0.0 in the routing table.", "options": ["Next-hop", "Default", "Host-specific", "Network-specific"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/router-mcqs-networking-devices/"}
{"subject": "physical-layer-osi-model-solved-mcqs", "topic": "physical-layer-osi-model-solved-mcqs", "question": "The physical layer concerns with?", "options": ["Process to process delivery", "Bit-by-bit delivery", "Application to application delivery", "None of the mentioned"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/physical-layer-osi-model-solved-mcqs/"}
{"subject": "physical-layer-osi-model-solved-mcqs", "topic": "physical-layer-osi-model-solved-mcqs", "question": "The term that refers to a physical layer technique is called?", "options": ["FDMA", "CDMA", "TDMA", "TDM"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/physical-layer-osi-model-solved-mcqs/"}
{"subject": "physical-layer-osi-model-solved-mcqs", "topic": "physical-layer-osi-model-solved-mcqs", "question": "A message that travels over a physical path is called?", "options": ["Signals", "Medium", "Protocols", "All of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/physical-layer-osi-model-solved-mcqs/"}
{"subject": "physical-layer-osi-model-solved-mcqs", "topic": "physical-layer-osi-model-solved-mcqs", "question": "The _____ is the portion of the physical layer that interfaces with the media access control sublayer?", "options": ["Physical address sublayer", "Physical data sublayer", "Physical signaling sublayer", "None of the mentioned"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/physical-layer-osi-model-solved-mcqs/"}
{"subject": "physical-layer-osi-model-solved-mcqs", "topic": "physical-layer-osi-model-solved-mcqs", "question": "The physical layer is responsible for the movement of individual?", "options": ["Frames", "Bits", "Packets", "Bytes"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/physical-layer-osi-model-solved-mcqs/"}
{"subject": "physical-layer-osi-model-solved-mcqs", "topic": "physical-layer-osi-model-solved-mcqs", "question": "The physical layer is responsible for?", "options": ["Line coding", "Channel coding", "Modulation", "All of the mentioned"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/physical-layer-osi-model-solved-mcqs/"}
{"subject": "physical-layer-osi-model-solved-mcqs", "topic": "physical-layer-osi-model-solved-mcqs", "question": "A device that operates below the physical layer of the OSI model is?", "options": ["Active hub", "Repeater", "Bridge", "Passive hub"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/physical-layer-osi-model-solved-mcqs/"}
{"subject": "physical-layer-osi-model-solved-mcqs", "topic": "physical-layer-osi-model-solved-mcqs", "question": "IEEE 802.11 covers the physical layer and?", "options": ["Data link layer", "Network layer", "Session layer", "Transport layer"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/physical-layer-osi-model-solved-mcqs/"}
{"subject": "physical-layer-osi-model-solved-mcqs", "topic": "physical-layer-osi-model-solved-mcqs", "question": "The physical layer translates logical communication requests made by the ______ into hardware-specific operations.", "options": ["Data link layer", "Network layer", "Physical layer", "Application layer"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/physical-layer-osi-model-solved-mcqs/"}
{"subject": "physical-layer-osi-model-solved-mcqs", "topic": "physical-layer-osi-model-solved-mcqs", "question": "Wireless transmission can be done via?", "options": ["Microwaves", "Radio waves", "Infrared", "All of the mentioned"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/physical-layer-osi-model-solved-mcqs/"}
{"subject": "physical-layer-osi-model-solved-mcqs", "topic": "physical-layer-osi-model-solved-mcqs", "question": "The network layer lies on ______ layer.", "options": ["Physical", "Data link", "Network", "Transport"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/physical-layer-osi-model-solved-mcqs/"}
{"subject": "physical-layer-osi-model-solved-mcqs", "topic": "physical-layer-osi-model-solved-mcqs", "question": "The ______ layer changes bits into electromagnetic signals.", "options": ["Physical", "Data link", "Transport", "Network"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/physical-layer-osi-model-solved-mcqs/"}
{"subject": "physical-layer-osi-model-solved-mcqs", "topic": "physical-layer-osi-model-solved-mcqs", "question": "During the data transmission process, which layer of the OSI model prevents itself from adding its own header?", "options": ["Network layer", "Application layer", "Physical layer", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/physical-layer-osi-model-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mobile And Wireless Network Mcqs", "question": "The IEEE 802.11 defines basic service set as a building block of wireless:", "options": ["WAN", "LAN", "MAN", "All of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mobile-and-wireless-network-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mobile And Wireless Network Mcqs", "question": "There are many hidden stations in a wireless LAN, so we did not detect the:", "options": ["Collision", "Frames", "Data", "Signal"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mobile-and-wireless-network-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mobile And Wireless Network Mcqs", "question": "A set that includes stationary or mobile wireless stations and may have an optional central base station is known as:", "options": ["Extended service set", "Access point", "Basic service set", "Network point set"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mobile-and-wireless-network-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mobile And Wireless Network Mcqs", "question": "Wireless transmission is divided into how many broad groups?", "options": ["8 broad groups", "2 broad groups", "5 broad groups", "3 broad groups"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mobile-and-wireless-network-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mobile And Wireless Network Mcqs", "question": "WPA stands for:", "options": ["Wired Protected Access", "Wi-Fi Protected Access", "Wi-Fi Process Access", "Wired Process Access"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mobile-and-wireless-network-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mobile And Wireless Network Mcqs", "question": "Which one of the following events is not possible in a wireless LAN?", "options": ["Collision detection", "Acknowledgment of data frames", "Multi-mode data transmission", "None of the mentioned"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mobile-and-wireless-network-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mobile And Wireless Network Mcqs", "question": "To identify and secure merchandise, what wireless communications technology is used in retail operations?", "options": ["UNII", "ISM", "RFID", "Micro Sensors"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mobile-and-wireless-network-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mobile And Wireless Network Mcqs", "question": "A WLAN device installed in or attached to a PC to provide an interface to a wireless network is:", "options": ["Access Point", "Network Adaptor", "Repeater", "Antenna"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mobile-and-wireless-network-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mobile And Wireless Network Mcqs", "question": "Which term is used to describe the ability of network devices from different manufacturers to communicate effectively?", "options": ["Scalable", "Interoperable", "Accessible", "Portable"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mobile-and-wireless-network-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mobile And Wireless Network Mcqs", "question": "The FCC’s RF bands operating in the frequency range of 2.4 GHz to 2.4835 GHz are called:", "options": ["SOHO", "UNII", "ISM", "RFID"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mobile-and-wireless-network-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mobile And Wireless Network Mcqs", "question": "When deciding between a WLAN and a wired LAN, which of the following is not a consideration beyond the network medium?", "options": ["Ease of installation", "Scalability", "RF Interferences", "Flexibility"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mobile-and-wireless-network-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mobile And Wireless Network Mcqs", "question": "What is the acronym for the International Organization for Standardization?", "options": ["SIO", "ISO", "SOI", "IOS"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mobile-and-wireless-network-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Network Mcqs For Lecturer Test", "question": "Three or more than 3 computers share a link in ________ connection.", "options": ["Point to point", "Unipoint", "Multipoint", "All above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-network-mcqs-for-lecturer-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Network Mcqs For Lecturer Test", "question": "The computer network is a", "options": ["Network computer with guided media", "Network computer without fiber optic", "None of them", "Both of them"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/computer-network-mcqs-for-lecturer-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Network Mcqs For Lecturer Test", "question": "Which topology covers the factors like security, robustness and eliminating traffic?", "options": ["Bus", "Star", "Mesh", "Ring"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-network-mcqs-for-lecturer-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Network Mcqs For Lecturer Test", "question": "A set of rules that governs data communication", "options": ["RFCs", "Standards", "Protocols", "All above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/computer-network-mcqs-for-lecturer-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Network Mcqs For Lecturer Test", "question": "FDDI used the ……… topology?", "options": ["Star", "Bus", "Ring", "None"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-network-mcqs-for-lecturer-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Network Mcqs For Lecturer Test", "question": "National Internet Service Provider (ISP) networks are connected to one another by private switching stations called?", "options": ["Regional ISP", "Network Access Points", "National ISP", "Peering Point"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/computer-network-mcqs-for-lecturer-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Network Mcqs For Lecturer Test", "question": "Multipoint topology is a …..topology?", "options": ["Ring", "Star", "Bus", "None"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-network-mcqs-for-lecturer-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Network Mcqs For Lecturer Test", "question": "The _______ is the physical path over which a message travels.", "options": ["Path", "Route", "Medium", "None"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/computer-network-mcqs-for-lecturer-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Network Mcqs For Lecturer Test", "question": "FTP stands for…..?", "options": ["Form transmission protocol", "File transmission protocol", "Form transfer protocol", "File transfer protocol"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/computer-network-mcqs-for-lecturer-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Network Mcqs For Lecturer Test", "question": "A communication pathway that transfers data from one point to another is called", "options": ["Medium", "Node", "Link", "Topology"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-network-mcqs-for-lecturer-test/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "The Internet service that issues a multimedia interface to current resources is called", "options": ["World Wide Web", "Gopher", "File Transfer Protocol", "Telnet"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "What is Telnet?", "options": ["Search engine", "Browser", "Protocol", "Gateway"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "Which defines correctly ICMP (Internet Control Message Protocol)?", "options": ["A redirect message is used when a router notices that a packet seems to have been routed wrongly.", "It reports all errors which occur during transmission", "It informs routers when an incorrect path has been taken.", "() The \"destination unreachable\" type message is used when a router cannot locate the destination."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "Select the example of connectivity?", "options": ["Floppy Disk", "Internet", "Data", "Power card"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "Which is used to transmit information on the World Wide Web?", "options": ["HTTP", "HPPT", "HTPP", "HTTTP"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "Which medium is not suitable for E-mail?", "options": ["Intranet", "Internet", "Extranet", "Paper"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "Which of these defines the Internet?", "options": ["The Federal Network Committee", "The Federal Network Council", "The Federal Networking Committee", "The Federal Networking Council"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "Which term is not used by intranet?", "options": ["IP", "HTTP", "TCP", "BSNL"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "Which term is avoided in E-mail?", "options": ["Re-Reading", "Subject line", "Smileys", "Wrong E-mail address"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "A web address is also known as", "options": ["LRU", "LUR", "URL", "ULR"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "Select the standard protocol of the Internet", "options": ["TCP/IP", "Flash", "HTML", "Java"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "Which is used to share hardware, software, and data between authorized users?", "options": ["IP", "Network", "CPU", "DNS"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "Which of the following refers to dangerous programs that can be ‘caught’ by opening email attachments and downloading software from the internet?", "options": ["Spam", "Utility", "Honey pot", "Virus"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "Which is the slowest Internet connection service?", "options": ["Land line", "Dial up service", "Digital subscriber line", "Cable modem"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "Which term is used for creating web pages?", "options": ["HTML", "FTP", "URL", "HTTP"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "Junk E-mail is also known as_____", "options": ["sniffer", "Spam", "Copple crumbs", "Spoof"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "In WWW, what does “WWW” stand for?", "options": ["Wide World Web", "Web World Web", "World Wide Weblink", "World Wide Web"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "The term of electronic cash is to execute payment through", "options": ["Cheque", "Credit Card", "ATM Card", "Using computers over a network"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "The internet is also called", "options": ["NET", "NOT", "NAT", "NFT"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "internet-email-mcqs", "topic": "internet-email-mcqs", "question": "Which domains are used by profit businesses?", "options": [".org", ".edu", ".net", ".com"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/internet-email-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Transmission And Switching Solved Mcqs With Answer", "question": "Which of the following is used to transfer messages from one node to another in a store-and-forward switching network?", "options": ["hopu", "entity", "jitter", "scaling"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/transmission-and-switching-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Transmission And Switching Solved Mcqs With Answer", "question": "______ is done by using the datagram approach to a packet in the switching network.", "options": ["Network layer", "Physical layer", "Data link layer", "Application layer"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/transmission-and-switching-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Transmission And Switching Solved Mcqs With Answer", "question": "Which of the following is a ratio of the number of successful calls to the number of call attempts?", "options": ["Busy Hour Call Rate", "Call Block Rate", "Call Completion Rate", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/transmission-and-switching-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Transmission And Switching Solved Mcqs With Answer", "question": "Which of the following resources are allocated on demand?", "options": ["Line switching", "Circuit switching", "Packet switching", "Frequency switching"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/transmission-and-switching-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Transmission And Switching Solved Mcqs With Answer", "question": "______ is the phase where jitter is generated as additive noise on a sinusoidal wave.", "options": ["Discrete", "Sampled", "Continuous", "Distorted"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/transmission-and-switching-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Transmission And Switching Solved Mcqs With Answer", "question": "A Circuit Switched Network is made of a set of switches connected by physical ______.", "options": ["Nodes", "Media", "Links", "Both A and B"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/transmission-and-switching-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Transmission And Switching Solved Mcqs With Answer", "question": "Which of the following defines Grade of Service (GOS)?", "options": ["Time congestion", "Call congestion", "Both A and B", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/transmission-and-switching-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Transmission And Switching Solved Mcqs With Answer", "question": "Which of the following is an application layer service?", "options": ["Network virtual terminal", "File transfer", "Access", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/transmission-and-switching-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Transmission And Switching Solved Mcqs With Answer", "question": "What type of holding time distribution is assumed for voice conversation on the telephone?", "options": ["Exponential", "Constant", "Both A and B", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/transmission-and-switching-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Transmission And Switching Solved Mcqs With Answer", "question": "What is used as a switch in a datagram network?", "options": ["Routing table", "Sender address", "Header", "Destination address"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/transmission-and-switching-solved-mcqs-with-answer/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "Which of these is the anticipation of unauthorized access, data or break to computers by means of wireless networks?", "options": ["Wireless security", "Wireless access", "Wired device apps", "Wired Security"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "Which of the following has the strongest wireless security?", "options": ["WPA", "WEP", "WPA3", "WPA2"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "Which of the following has the worst security encryption standard?", "options": ["WPA", "WPA2", "WPA3", "WEP"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "Which is an old IEEE 802.11 standard that was released in 1999?", "options": ["WEP", "WPA", "WPA2", "WPA3"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "Central node of 802.11 wireless operations is ________", "options": ["Access Point", "WPA", "Access Port", "WAP"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "AP stands for", "options": ["Access Port", "Access Point", "Accessing Port", "Access Position"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "________ is similar to AP from 802.11 and is used by mobile operators for offering signal coverage.", "options": ["Base Transmitter Station", "Base Signal Station", "Transceiver Station", "Base Transceiver Station"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "BTS is abbreviated as___________________", "options": ["Base Transceiver Server", "Base Transceiver Station", "Base Transmitter Station", "Basement Transceiver Server"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "How many types of wireless authentication modes?", "options": ["5", "3", "2", "4"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "When a user authenticates to an AP, both go in the path of four-step authentication progression which is known as _________", "options": ["4-way handshake", "AP-handshaking", "Wireless handshaking", "4-way connection"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "WPS is abbreviated as __________________", "options": ["WiFi Protocol Setup", "Wireless Protected Setup", "WiFi Protected Setup", "WiFi Protected System"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "It is to use encryption standard such as WPA2 or WPA3 as they are more secure and strong.", "options": ["False", "True", "Both A & B", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "Cryptosystem with asymmetric-key has its own _________ with confidentiality.", "options": ["Data", "Entities", "Translator", "Problems"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "Message digestion length of SHA-1 is ______", "options": ["512 bits", "628 bits", "820 bits", "160 bits"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "_________ is a service beyond message authentication?", "options": ["Message Splashing", "Message Sending", "Message Integrity", "Message Confidentiality"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "The transmitted message must make sense only to intended ________, in message confidentiality.", "options": ["Sender", "Receiver", "Translator", "Modulor"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "Hash functions guarantee message integrity and that the message has not been ______.", "options": ["Over view", "Replaced", "Violated", "Changed"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "_________ is needed by a digital signature.", "options": ["Public-key system", "Private-key system", "Shared-key system", "Both A & B"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "Using a __________ is also another way to preserve the integrity of the document.", "options": ["Biometric", "Eye-Rays", "X-Rays", "Finger Print"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "How many times do a session symmetric key between the two parties is used?", "options": ["Multiple times", "Only once", "Conditions dependant", "Twice"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "_______ is not provided by encryption and decryption.", "options": ["Integrity", "Privacy", "Authentication", "Both A & B"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "MAC is abbreviated as", "options": ["Message arbitrary connection", "Message authentication code", "Message authentication cipher", "Message authentication control"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "Message confidentiality uses _______", "options": ["Cipher", "Symmetric-Key", "Asymmetric-Key", "Cipher Text"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "Both document and fingerprint are _______ to preserve integrity of a document.", "options": ["Not needed", "Needed", "Not Used", "Unimportant"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "Data must arrive exactly as it was sent to receiver from sender, is called ________.", "options": ["Message Sending", "Message Splashing", "Message Integrity", "Message Confidentiality"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "Encryption is done at sender site and decryption is done at ________", "options": ["Receiver site", "Sender Site", "Conferencing", "Site"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "EAP is abbreviated as", "options": ["Embedded Authentication Protocol", "Embedded Application Protocol", "Extended Application Protocol", "Extensible Authentication Protocol"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "Is TKIP an access control protocol?", "options": ["False", "True", "Can’t say", "May be"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "AAA key (Authentication, Authorization and Accounting Key) is also known as", "options": ["pairwise transient key", "master session key", "key confirmation key", "pre-shared key"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Wireless Security Mcqs For Jobs Test", "question": "Wi-Fi is abbreviated as", "options": ["Wireless FLAN", "Wireless LAN", "Wireless Fidelity", "Both B & C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/wireless-security-mcqs-for-jobs-test/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "Who translates internet domain and host names to IP address?", "options": ["Domain name system", "Routing information protocol", "Network time protocol", "Internet relay chat"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "Which allows a user at one site to establish a connection to another site?", "options": ["HTTP", "FTP", "Telnet", "TCP"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "Which will define Application layer protocol?", "options": ["Types of messages exchanged", "Message format, syntax and semantics", "Rules processes send and respond to messages", "All of the mentioned"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "Which one protocol delivers/stores mail to receiver server?", "options": ["Simple mail transfer", "Post office", "Internet mail access", "Hypertext transfer"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "ASCII __________ encoding of binary data.", "options": ["Base 64 encoding", "Base 32 encoding", "Base 16 encoding", "Base 8 encoding"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "__________ is an internet standard protocol.", "options": ["Dynamic host configuration", "Simple network management", "Internet message access", "Media gateway"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "Which DNS client maps an address to a name, especially when required a host?", "options": ["Resolver", "Mapper", "Primary Server", "Secondary Server"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "Which one option from following Application-level protocol plays a crucial role in addition to X-500 features?", "options": ["TCP", "LDAP", "FTP", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "Which of the following intermediaries get involved during the transfer function of an e-mail system?", "options": ["Storage and forwarding of e-mail for certain addresses", "Act as gateways to other e-mail", "Both a & b", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "________ among the below specified illustrations is the category of GUI?", "options": ["Mail", "Pine", "Outlook & Netscape", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "Which phase/s of POP3 allow/s a user agent to retrieve the messages for deletion purpose?", "options": ["Authorization", "Transaction", "Update", "All of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "___________ URL method of HTTP performs a similar function as that of PUT, an exception of request.", "options": ["POST", "GET", "PATCH", "OPTION"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "____________ language in WWW specifies a web’s way by three-dimensional objects?", "options": ["HTML", "VRML", "XML", "UML"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "Which field of cookie in WWW represents the server’s directory structure?", "options": ["Domain", "Path", "Content", "Secure"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "Which of the following among the below mentioned protocols provides a mechanism of acquiring an IP address?", "options": ["BOOTP", "DHCP", "Both a & b", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "Which is the important application of the application layer?", "options": ["Electronic mail", "World Wide Web", "USENET", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "The TCP/IP corresponds to the combined session, presentation, and application layers of the OSI model.", "options": ["Session", "Presentation", "Application", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "Which protocol is based on end-to-end delivery?", "options": ["SMTP", "TCP", "IP", "SCTP"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "The well-known port of SMTP server is __________.", "options": ["110", "25", "50", "20"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "_________ is a summary of the message being sent, which is specified by the sender.", "options": ["Reply-to", "Return-path", "Subject", "From"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "In SMTP header field is added by the final transport system.", "options": ["Reply-to", "Return-path", "Subject", "From"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "In SMTP mail transaction flow, the sender SMTP establishes a TCP connection.", "options": ["220 service ready", "421 service not available", "Both of the above", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "In SMTP mail transaction flow, a message is sent, to which the receiver will identify itself.", "options": ["HELO", "MAIL FROM", "RCPT TO", "DATA"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "___________ is a command-line tool designed for most UNIX-like operating systems.", "options": ["Recieivemail", "Sendmail", "MIME", "POP"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "Which are the components of sendmail?", "options": ["Mail user agent (MUA)", "Mail transfer agent (MTA)", "Mail delivery agent (MDA)", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "The _________ is the interface which a user can read and send mail.", "options": ["Mail user agent (MUA)", "Mail transfer agent (MTA)", "Mail delivery agent (MDA)", "Mail send agent (MSA)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "The _______ acts like a mail router, accepting messages from both MTAs and MUAs.", "options": ["Mail user agent (MUA)", "Mail transfer agent (MTA)", "Mail delivery agent (MDA)", "Mail send agent (MSA)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "Which uses a queuing system to manage inbound and outbound mail?", "options": ["Recieivemail", "Sendmail", "MIME", "POP"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "_________ sender SMTP establishes a TCP connection with the destination SMTP.", "options": ["421", "320", "220", "120"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "application-layer-solved-mcqs-questions-answers", "topic": "application-layer-solved-mcqs-questions-answers", "question": "_________ is limited to 7-bit ASCII text, with a maximum line length of 1000 characters.", "options": ["SMTP", "MIME", "POP", "MTA"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/application-layer-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs For Ppsc Network Administrator And Manager Computer Science Cs For Punjab Public Service Comission", "question": "What is the unit of analog signal?", "options": ["Digits", "WATTS", "Volt", "Hertz"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-for-ppsc-network-administrator-and-manager-computer-science-cs-for-punjab-public-service-comission/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs For Ppsc Network Administrator And Manager Computer Science Cs For Punjab Public Service Comission", "question": "Which of the following uses liquid crystal between the glass plates?", "options": ["LCD", "ELD", "CRT", "None of These"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-for-ppsc-network-administrator-and-manager-computer-science-cs-for-punjab-public-service-comission/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs For Ppsc Network Administrator And Manager Computer Science Cs For Punjab Public Service Comission", "question": "OSI model consists of _________ layers.", "options": ["Five", "Seven", "Six", "Eight"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-for-ppsc-network-administrator-and-manager-computer-science-cs-for-punjab-public-service-comission/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs For Ppsc Network Administrator And Manager Computer Science Cs For Punjab Public Service Comission", "question": "______ coding schemes uses 4-bit code?", "options": ["ASCII", "Unicode", "BCD", "EBCDIC"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-for-ppsc-network-administrator-and-manager-computer-science-cs-for-punjab-public-service-comission/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs For Ppsc Network Administrator And Manager Computer Science Cs For Punjab Public Service Comission", "question": "_______ communication medium requires “line-of-sight”?", "options": ["Fiber-Optic cable", "Microwave", "Coaxial cable", "Twisted-Pair cable"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-for-ppsc-network-administrator-and-manager-computer-science-cs-for-punjab-public-service-comission/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs For Ppsc Network Administrator And Manager Computer Science Cs For Punjab Public Service Comission", "question": "______ manages computer hardware and software resources and provides common services for computer programs.", "options": ["System software", "Device driver", "Utility program", "Operating system"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-for-ppsc-network-administrator-and-manager-computer-science-cs-for-punjab-public-service-comission/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs For Ppsc Network Administrator And Manager Computer Science Cs For Punjab Public Service Comission", "question": "_______ program is the assembly that the compiler generates, which is understandable by your computer.", "options": ["System program", "Source program", "Object program", "None of These"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-for-ppsc-network-administrator-and-manager-computer-science-cs-for-punjab-public-service-comission/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs For Ppsc Network Administrator And Manager Computer Science Cs For Punjab Public Service Comission", "question": "_______ is the Low-Level language?", "options": ["C++", "Assembly", "Java", "Visual Basics"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-for-ppsc-network-administrator-and-manager-computer-science-cs-for-punjab-public-service-comission/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs For Ppsc Network Administrator And Manager Computer Science Cs For Punjab Public Service Comission", "question": "The type of operating system MS-DOS is ______.", "options": ["Multitasking", "Graphical User Interface", "Command Line Interface", "Menu Driven Interface"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-for-ppsc-network-administrator-and-manager-computer-science-cs-for-punjab-public-service-comission/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Mcqs For Ppsc Network Administrator And Manager Computer Science Cs For Punjab Public Service Comission", "question": "_______ keyboard shortcut is used to change the case.", "options": ["Alt+F3", "Ctrl+F3", "Ctrl+Shift+F3", "Shift+F3"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-for-ppsc-network-administrator-and-manager-computer-science-cs-for-punjab-public-service-comission/"}
{"subject": "telecommunication-mcqs-multiple-choices-questions", "topic": "telecommunication-mcqs-multiple-choices-questions", "question": "Mobile phone commercially available in ____ year.", "options": ["1983", "1975", "2001", "1988"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/telecommunication-mcqs-multiple-choices-questions/"}
{"subject": "telecommunication-mcqs-multiple-choices-questions", "topic": "telecommunication-mcqs-multiple-choices-questions", "question": "In populated areas, ______ network is used to interconnect computers.", "options": ["MAN", "LAN", "Both A and B", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/telecommunication-mcqs-multiple-choices-questions/"}
{"subject": "telecommunication-mcqs-multiple-choices-questions", "topic": "telecommunication-mcqs-multiple-choices-questions", "question": "First smartphone is _______.", "options": ["IBM Simon", "Nokia 1110", "Samsung", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/telecommunication-mcqs-multiple-choices-questions/"}
{"subject": "telecommunication-mcqs-multiple-choices-questions", "topic": "telecommunication-mcqs-multiple-choices-questions", "question": "Managing the rate at which the traffic in a network is ______ control.", "options": ["Routing", "Flow", "Data", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/telecommunication-mcqs-multiple-choices-questions/"}
{"subject": "telecommunication-mcqs-multiple-choices-questions", "topic": "telecommunication-mcqs-multiple-choices-questions", "question": "Name of International Telecommunication Union was _____.", "options": ["International Telegraph Union", "International Telecommunication Organization", "International Telegraph Business", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/telecommunication-mcqs-multiple-choices-questions/"}
{"subject": "telecommunication-mcqs-multiple-choices-questions", "topic": "telecommunication-mcqs-multiple-choices-questions", "question": "Internet service became available on mobile phones in ____ year.", "options": ["1999", "1982", "1991", "1978"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/telecommunication-mcqs-multiple-choices-questions/"}
{"subject": "telecommunication-mcqs-multiple-choices-questions", "topic": "telecommunication-mcqs-multiple-choices-questions", "question": "_____ switching uses the transfer of coded values from input to output.", "options": ["Combination", "Time", "Space", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/telecommunication-mcqs-multiple-choices-questions/"}
{"subject": "telecommunication-mcqs-multiple-choices-questions", "topic": "telecommunication-mcqs-multiple-choices-questions", "question": "Bada is the OS of ______ smartphone company.", "options": ["Samsung", "Nokia", "Blackberry", "None of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/telecommunication-mcqs-multiple-choices-questions/"}
{"subject": "telecommunication-mcqs-multiple-choices-questions", "topic": "telecommunication-mcqs-multiple-choices-questions", "question": "In ______ iPhone was introduced.", "options": ["2007", "1999", "2006", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/telecommunication-mcqs-multiple-choices-questions/"}
{"subject": "telecommunication-mcqs-multiple-choices-questions", "topic": "telecommunication-mcqs-multiple-choices-questions", "question": "Which among the following is/are supported by LAN?", "options": ["HTTP", "PABX", "SNDP", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/telecommunication-mcqs-multiple-choices-questions/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Security And Forensics For Application Security Mcqs", "question": "Which attack allows the attacker to take control of the application to execute an SQL query created by the attacker?", "options": ["SQL injection", "Direct", "SQL", "Application"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-security-and-forensics-for-application-security-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Security And Forensics For Application Security Mcqs", "question": "A website that allows users to enter text, such as a comment or a name, and then stores it and later displays it to other users, is potentially vulnerable to what kind of attack?", "options": ["Cross-site scoring scripting", "Cross-site request forgery", "Cross-site scripting", "Two-factor authentication"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/web-security-and-forensics-for-application-security-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Security And Forensics For Application Security Mcqs", "question": "Which attack forces a user (end user) to execute unwanted actions on a web application in which he/she is currently authenticated?", "options": ["Cross-site scoring scripting", "Cross-site request forgery", "Cross-site scripting", "Two-factor authentication"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/web-security-and-forensics-for-application-security-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Security And Forensics For Application Security Mcqs", "question": "Even with two-factor authentication, users are vulnerable to which attacks?", "options": ["Man-in-the-middle", "Cross attack", "Scripting", "Radiant"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-security-and-forensics-for-application-security-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Security And Forensics For Application Security Mcqs", "question": "Which factor is used in many applications, where two independent factors are used to identify a user?", "options": ["Cross-site scripting", "Cross-site request forgery", "Two-factor authentication", "Cross-site scoring scripting"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/web-security-and-forensics-for-application-security-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Security And Forensics For Application Security Mcqs", "question": "The system that allows the user to be authenticated once and multiple applications can then verify the user’s identity through an authentication service without requiring reauthentication is:", "options": ["OpenID", "Sign-on system", "Security Assertion Markup Language", "Virtual Private Database"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/web-security-and-forensics-for-application-security-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Security And Forensics For Application Security Mcqs", "question": "Which is a standard for exchanging authentication and authorization information between different security domains, to provide cross-organization authentication?", "options": ["OpenID", "Security Assertion Markup Language", "Sign-on system", "Virtual Private Database"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/web-security-and-forensics-for-application-security-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Security And Forensics For Application Security Mcqs", "question": "Which ID standard is an alternative for single sign-on across organizations, and has seen increasing acceptance in recent years?", "options": ["OpenID", "Single-site system", "Security Assertion Markup Language", "Virtual Private Database"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-security-and-forensics-for-application-security-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Security And Forensics For Application Security Mcqs", "question": "Which database allows a system administrator to associate a function with a relation, and the function returns a predicate that must be added to any query that uses the relation?", "options": ["OpenID", "Security Assertion Markup Language", "Single-site system", "Virtual Private Database"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/web-security-and-forensics-for-application-security-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Web Security And Forensics For Application Security Mcqs", "question": "VPD (Virtual Private Database) provides authorization at the level of specific tuples, or rows, of a relation, and is therefore said to be a mechanism of:", "options": ["Row-level authorization", "Column-level authentication", "Authentication", "Authorization security"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/web-security-and-forensics-for-application-security-mcqs/"}
{"subject": "wifi-mcqs", "topic": "wifi-mcqs", "question": "Wi-Fi stands for _____.", "options": ["Wireless Function", "Wireless Fidelity", "Wireless Functioning", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/wifi-mcqs/"}
{"subject": "wifi-mcqs", "topic": "wifi-mcqs", "question": "13 channels have _______ frequency.", "options": ["1.0 GHz", "2.0 GHz", "2.4 GHz", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/wifi-mcqs/"}
{"subject": "wifi-mcqs", "topic": "wifi-mcqs", "question": "Wi-Fi does not support roaming. This statement is _____.", "options": ["FALSE", "TRUE"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/wifi-mcqs/"}
{"subject": "wifi-mcqs", "topic": "wifi-mcqs", "question": "Router device sends and receives ______ signals in a wireless network.", "options": ["Digital", "Radio", "Analog"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/wifi-mcqs/"}
{"subject": "wifi-mcqs", "topic": "wifi-mcqs", "question": "Channel 6 is the default for commercially sold _______.", "options": ["Modem", "Both of them", "Routers"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/wifi-mcqs/"}
{"subject": "wifi-mcqs", "topic": "wifi-mcqs", "question": "MAC security is impossible to crack. This statement is _____.", "options": ["FALSE", "TRUE"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/wifi-mcqs/"}
{"subject": "wifi-mcqs", "topic": "wifi-mcqs", "question": "Wi-Fi uses which kind of multiplexing?(E) All of the above", "options": ["OFDM", "TDM", "FDM", "WDM"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/wifi-mcqs/"}
{"subject": "wifi-mcqs", "topic": "wifi-mcqs", "question": "_______ Mbps is the rate of Gigabit Ethernet.(E) None of the above", "options": ["600", "1200", "100", "1000"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/wifi-mcqs/"}
{"subject": "wifi-mcqs", "topic": "wifi-mcqs", "question": "Which of the statement is true about Signal-to-Noise Ratio (SNR)?", "options": ["This is a signal that sends noise in a building", "It is a calculation that determines who makes the most noise in the office", "This means the quality of the transmission of information in relation to noise"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/wifi-mcqs/"}
{"subject": "wifi-mcqs", "topic": "wifi-mcqs", "question": "For transmitting signals, _____ waves are used in a wireless network.", "options": ["Radio", "Mechanical", "Sound"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/wifi-mcqs/"}
{"subject": "7-layers-osi-model-solved-mcqs-questions-answers", "topic": "7-layers-osi-model-solved-mcqs-questions-answers", "question": "What does OSI stand for?", "options": ["Open System Interconnection", "Operating System Interface", "Optical Service Implementation", "None of the mentioned"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/7-layers-osi-model-solved-mcqs-questions-answers/"}
{"subject": "7-layers-osi-model-solved-mcqs-questions-answers", "topic": "7-layers-osi-model-solved-mcqs-questions-answers", "question": "The _________ layer lies between the session layer and the application layer.", "options": ["Network layer", "Transport layer", "Data link layer", "Presentation layer"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/7-layers-osi-model-solved-mcqs-questions-answers/"}
{"subject": "7-layers-osi-model-solved-mcqs-questions-answers", "topic": "7-layers-osi-model-solved-mcqs-questions-answers", "question": "Segmentation and reassembly is the responsibility of which OSI layer?", "options": ["7th Layer", "6th Layer", "5th Layer", "4th Layer"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/7-layers-osi-model-solved-mcqs-questions-answers/"}
{"subject": "7-layers-osi-model-solved-mcqs-questions-answers", "topic": "7-layers-osi-model-solved-mcqs-questions-answers", "question": "Decryption and encryption are the features of which OSI layer?", "options": ["Transport layer", "Presentation layer", "Session layer", "Network layer"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/7-layers-osi-model-solved-mcqs-questions-answers/"}
{"subject": "7-layers-osi-model-solved-mcqs-questions-answers", "topic": "7-layers-osi-model-solved-mcqs-questions-answers", "question": "Subnet usually comprises which OSI layers?", "options": ["Layer 1 and 2", "Layer 1 through 3", "All layers", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/7-layers-osi-model-solved-mcqs-questions-answers/"}
{"subject": "7-layers-osi-model-solved-mcqs-questions-answers", "topic": "7-layers-osi-model-solved-mcqs-questions-answers", "question": "Which layer is responsible for process delivery?", "options": ["Network layer", "Transport layer", "Session layer", "Data link layer"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/7-layers-osi-model-solved-mcqs-questions-answers/"}
{"subject": "7-layers-osi-model-solved-mcqs-questions-answers", "topic": "7-layers-osi-model-solved-mcqs-questions-answers", "question": "Which address identifies a process on a host?", "options": ["Physical address", "Logical address", "Port address", "Specific address"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/7-layers-osi-model-solved-mcqs-questions-answers/"}
{"subject": "7-layers-osi-model-solved-mcqs-questions-answers", "topic": "7-layers-osi-model-solved-mcqs-questions-answers", "question": "The _________ layer uses data compression to reduce the number of bits to be transmitted.", "options": ["Presentation", "Network", "Data link", "Application"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/7-layers-osi-model-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Mcqs", "question": ": In a mesh topology, the relationship between one device and another device is …?", "options": ["Peer to primary", "Primary to peer", "Primary to secondary", "Peer to Peer"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/networking-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Mcqs", "question": ": How many digits of the DNIC can be used to identify the country?", "options": ["first three", "first five", "first two", "first six"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/networking-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Mcqs", "question": ": Three major systems of the GSM network are ______", "options": ["SS, BSS, OSS", "CELL, BSC, OSS", "BSS, BSC, MSC", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/networking-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Mcqs", "question": ": The performance of a data communications network is highly dependent on _____", "options": ["Number of users", "transmission", "hardware and software", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/networking-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Mcqs", "question": ": Mobile Application Protocol typically runs on top of which protocol?", "options": ["SMTP", "SNMP", "SS7", "All of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/networking-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Mcqs", "question": ": In the OSI layer, which layer performs management of tokens?", "options": ["Network Layer", "Transport Layer", "Session Layer", "All of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/networking-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Mcqs", "question": ": Which type of protocol provides a virtual terminal in the TCP/IP model?", "options": ["SMTP", "Telnet", "HTTP", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/networking-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Mcqs", "question": ": Frames transfer from one LAN to another LAN is by ______", "options": ["Router", "Modem", "Repeater", "Bridge"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/networking-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Mcqs", "question": ": Default subnet mask for a class C network is", "options": ["127.0.0.5", "255.255.255.0", "255.255.0.0", "255.0.0.9"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/networking-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Storage Area Network Mcqs Questions Answers", "question": "Storage management comprises of?", "options": ["SAN Management", "Data protection", "Disk operation", "All of the mentioned"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/storage-area-network-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Storage Area Network Mcqs Questions Answers", "question": "Storage devices include?", "options": ["Tape drives", "RAID Arrays", "Switch", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/storage-area-network-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Storage Area Network Mcqs Questions Answers", "question": "Protocol used for storage management is?", "options": ["POP3", "SNMP", "LDAP", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/storage-area-network-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Storage Area Network Mcqs Questions Answers", "question": "Effective storage management consists of?", "options": ["Backups", "Reporting", "Both A and B", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/storage-area-network-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Storage Area Network Mcqs Questions Answers", "question": "SMI-S standard uses?", "options": ["CIM-XML/HTTP", "Cobra", "None of these", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/storage-area-network-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Storage Area Network Mcqs Questions Answers", "question": "Which private network uses storage protocol rather than networking protocol?", "options": ["Wide area network", "Storage area network", "Local area network", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/storage-area-network-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Storage Area Network Mcqs Questions Answers", "question": "In computer network, bus, tree, star, and mesh are the types of?", "options": ["Hardware", "Software", "Topology", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/storage-area-network-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Storage Area Network Mcqs Questions Answers", "question": "Drive access time is always measured in?", "options": ["Nano second", "Micro second", "Pico second", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/storage-area-network-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Storage Area Network Mcqs Questions Answers", "question": "Cassette tape is an example of?", "options": ["Primary", "Volatile", "Tertiary", "Secondary"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/storage-area-network-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Storage Area Network Mcqs Questions Answers", "question": "Simply stated, these are large boxes that hold lots of hard disks.", "options": ["Disk array", "Host", "Tape library", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/storage-area-network-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Storage Area Network Mcqs Questions Answers", "question": "This consists of the precautions taken so that the effects of a disaster will be minimized?", "options": ["Achieve", "Replication", "Both A and B", "Disaster recovery"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/storage-area-network-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Storage Area Network Mcqs Questions Answers", "question": "Which of the following provides byte level striping?", "options": ["RAID 3", "RAID 2", "RAID 5", "RAID 1"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/storage-area-network-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Storage Area Network Mcqs Questions Answers", "question": "For long term storage of data, which of the following storage devices is generally used?", "options": ["Tape cartridges", "Hard disk", "Both A and B", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/storage-area-network-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Storage Area Network Mcqs Questions Answers", "question": "Which of the following companies manufactures RAID devices?", "options": ["Q logic", "Falcon star", "LSI", "Quantum"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/storage-area-network-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Storage Area Network Mcqs Questions Answers", "question": "Disk controller driver in DAS architecture is replaced in SAN either with?", "options": ["TCP/IP protocol", "FC protocol", "iSCSI", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/storage-area-network-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Storage Area Network Mcqs Questions Answers", "question": "In the SAN storage model, the operating system views storage resources as devices?", "options": ["FC", "SAN", "SCSI", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/storage-area-network-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Storage Area Network Mcqs Questions Answers", "question": "Identify the data storage technology used in the below data center?", "options": ["SAN", "DAS", "Both A and B", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/storage-area-network-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Topologies Solved Mcqs", "question": "Which topology has a multipoint connection?", "options": ["Ring", "Bus", "Star", "Mesh"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/networking-topologies-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Topologies Solved Mcqs", "question": "In mesh topology, devices are connected via:", "options": ["Single and multiple links", "Multipoint link", "Point-to-point link", "No link"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/networking-topologies-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Topologies Solved Mcqs", "question": "The topology which requires a central controller or hub is:", "options": ["Mesh", "Star", "Bus", "Ring"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/networking-topologies-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Topologies Solved Mcqs", "question": "LANs mostly use which topologies?", "options": ["Bus", "Ring", "Star", "Both A and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/networking-topologies-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Topologies Solved Mcqs", "question": "Which topology is a combination of two or more topologies?", "options": ["Multigrid", "Star Topology", "Hybrid", "Ring Topology"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/networking-topologies-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Topologies Solved Mcqs", "question": "In a mesh topology, each device has a dedicated topology of:", "options": ["Multipoint linking", "Point-to-point linking", "None of the above", "Both A and B"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/networking-topologies-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Topologies Solved Mcqs", "question": "Which topology has the highest reliability?", "options": ["Mesh topology", "Star topology", "Ring topology", "Bus topology"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/networking-topologies-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Topologies Solved Mcqs", "question": "Star topology is based on a central device called:", "options": ["HUB", "Switch", "Gates", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/networking-topologies-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Topologies Solved Mcqs", "question": "Which topology is responsible for describing the geometric arrangement of components that make up the LAN?", "options": ["Complex", "Physical", "Logical", "Incremental"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/networking-topologies-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Topologies Solved Mcqs", "question": "LAN topology describes the possible connections between networked end-points that can communicate.", "options": ["Logical", "Physical", "Decrement", "Incremental"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/networking-topologies-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Topologies Solved Mcqs", "question": "In a network, participating computers are referred to as:", "options": ["Clients", "Servers", "Nodes", "CPUs"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/networking-topologies-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Topologies Solved Mcqs", "question": "Tokens are involved in which topology?", "options": ["Star", "Hybrid", "Bus", "Ring"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/networking-topologies-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Topologies Solved Mcqs", "question": "A ______ WAN can be developed using any other transmission facility:", "options": ["Multi-peer", "Peer-to-peer", "Two-tiered", "Three-tiered"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/networking-topologies-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Topologies Solved Mcqs", "question": "The source computer sends the information along with:", "options": ["Data", "Module", "Token", "Element"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/networking-topologies-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Topologies Solved Mcqs", "question": "All the hubs in a network have a serially connected system of:", "options": ["Bus", "Ring", "Multi-peer", "Daisy chains"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/networking-topologies-solved-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Important Mcqs", "question": "IP address 200.200.200.200 is the IP of which class?", "options": ["Class B", "Class D", "Class A", "Class C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/networking-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Important Mcqs", "question": "Which of the following net is the combination of two or more networks?", "options": ["MAN", "WAN", "Internetwork", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/networking-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Important Mcqs", "question": "FTP is the …?", "options": ["File transfer protocol", "File transmission protocol", "Form transmission protocol", "Form transfer protocol"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/networking-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Important Mcqs", "question": "Which of the following topology is the multipoint topology?", "options": ["Ring", "Star", "Mesh", "Bus"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/networking-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Important Mcqs", "question": "Which services are the network services?", "options": ["All of these", "File service", "Print service", "Database service"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/networking-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Important Mcqs", "question": "In the communication pathway, data transfers from one point to another through _____.", "options": ["Medium", "Node", "Link", "All of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/networking-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Important Mcqs", "question": "All devices are connected to a central hub with the help of which of the following network topology?", "options": ["Star Topology", "Tree Topology", "Bus Topology", "Ring Topology"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/networking-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Important Mcqs", "question": "In LAN, commonly used topologies are _____.", "options": ["Both B & C", "Bus and Ring", "Star", "Mesh and Ring"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/networking-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Important Mcqs", "question": "FDDI stands for", "options": ["Fiber Data Distributed Interface", "Fiber Distributed Data Interface", "Fiber Dual Distributed Interface", "Fiber Distributed Data Interface"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/networking-important-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Networking Important Mcqs", "question": "High-speed connectivity is provided through _______ network.", "options": ["MAN", "LAN", "WAN", "All of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/networking-important-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Choose the address of class D.", "options": ["Unicast", "Reserved", "Multicast", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Select the wrong class.", "options": ["CLASS A = 1 to 126", "CLASS C = 192 to 220", "CLASS B = 128 to 191", "CLASS D = 224 to 239"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Select the bits from where the class A address starts.", "options": ["110", "10", "0", "1111"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Select the bits from where the class B address starts.", "options": ["0", "110", "10", "1111"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Select the bits from where the class C address starts.", "options": ["0", "10", "110", "1111"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Select which one of these is not a class of IP addresses.", "options": ["Class A", "Class F", "Class E", "Class B"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Select the address of class A, B and C.", "options": ["Reserved", "Multicast", "Unicast", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Select the bits from where the class D address starts.", "options": ["0", "10", "110", "1110"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "How many bits are in Version 6 of IP address?", "options": ["64 bits", "32 bits", "128 bits", "256 bits"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "What does IANA stand for?", "options": ["Internal Associative Numbers Authority", "Internal Assigned Numbers Authority", "Internet Associative Numbers Authoritative", "Internet Assigned Numbers Authority"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "RIR stands for ________.", "options": ["Regional Internal Registries", "Registries Internet Regional", "Regional Internet Registries", "Registries Internal Regional"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "How many versions of IP are there?", "options": ["4 versions", "3 versions", "2 versions", "1 version"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "What does VLSM stand for?", "options": ["Version Length Subnet Masking", "Version Length Surface Masking", "Variable Length Surface Masking", "Variable Length Subnet Masking"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Which protocol is included in desktops and operating systems?", "options": ["IPv3 protocol", "IPv4 protocol", "Both IPv6 and IPv4 protocol", "IPv6 protocol"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Select the field that specifies how the datagram should be handled.", "options": ["Type of Service", "Identification", "Header length", "Flags"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "How many bits are assigned to the identification field?", "options": ["3", "16", "8", "32"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "How many bits are assigned to the flag field?", "options": ["2", "8", "3", "16"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Select the flag value to identify the last fragment.", "options": ["1", "0", "2", "11"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Select the field that helps to check the rearrangement of the fragments.", "options": ["Identifier", "Flags", "Offset", "Protocols"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Select the field in IPv4 datagram that is not about fragmentation.", "options": ["Flags", "TOS", "Offset", "Identifier"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Select the 1st bit in the flags field.", "options": ["Do not fragment bit", "Reserved for future use", "More fragment bit", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Select the field that specifies how long an IP packet can reside in-network before it is discarded.", "options": ["Identification", "Options", "TOS", "Time to live"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Select the field used for network testing, debugging, control routing, timing, and management.", "options": ["Identification", "Options", "Flags", "Time to live"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Classful addressing is replaced with what in IPv4?", "options": ["Classful advertising", "Classful addressing new version", "Classless addressing", "Classless advertising"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "How many bytes are in dotted-decimal notation in an IP address?", "options": ["3", "5", "4", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Select the minimum header size of an IP packet.", "options": ["16 bytes", "20 bytes", "10 bytes", "10 bytes"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Select the size of Network bits and Host bits of Class A IP address.", "options": ["Network bits 7, Host bits 23", "Network bits 8, Host bits 24", "Network bits 7, Host bits 2", "Network bits 8, Host bits 23"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "What is the use of subnetting?", "options": ["It speeds up the speed of the network", "It divides the network into network classes", "It divides one large network into several smaller ones", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Which one is correct about Class B Address of IP?", "options": ["Network bit – 18, Host bit – 16", "Network bit – 16, Host bit – 14", "Network bit – 14, Host bit – 16", "Network bit – 12, Host bit – 14"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "What represents the last address of an IP address?", "options": ["Unicast address", "Broadcast address", "Network address", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "What is the size of Host bits in Class B of IP address?", "options": ["16", "08", "04", "32"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Which one is not an application for IP protocol?", "options": ["Is connectionless", "Offers reliable service", "Offers unreliable service", "No error checking"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "What is the header size of the datagram in IPv4?", "options": ["0 to 20 bytes", "20 to 60 bytes", "20 to 40 bytes", "20 to 80 bytes"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "What is the format of the IP address?", "options": ["34 bit", "32 bit", "16 bit", "64 bit"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "What is the usable size of Network bits in Class B IP address?", "options": ["04", "14", "08", "16"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "Select the bits for the IP address.", "options": ["24", "128", "64", "32"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "ip-address-mcqs", "topic": "ip-address-mcqs", "question": "What is the size of the header if the value of HELEN in an IP packet is 0101?", "options": ["20", "5", "40", "60"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ip-address-mcqs/"}
{"subject": "decidable-languages-and-problems-mcqs", "topic": "decidable-languages-and-problems-mcqs", "question": "Which of the following best defines a decidable language?", "options": ["A language for which there exists an algorithm that accepts all strings in the language and rejects all strings not in the language.", "A language that is regular.", "A language that can be recognized by a non-deterministic Turing machine.", "A language that contains only finite strings."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/decidable-languages-and-problems-mcqs/"}
{"subject": "decidable-languages-and-problems-mcqs", "topic": "decidable-languages-and-problems-mcqs", "question": "The halting problem is:", "options": ["Decidable", "Undecidable", "Regular", "Context-free"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/decidable-languages-and-problems-mcqs/"}
{"subject": "decidable-languages-and-problems-mcqs", "topic": "decidable-languages-and-problems-mcqs", "question": "Which of the following is an example of a decidable problem?", "options": ["Determining whether a given Turing machine accepts an infinite language.", "Determining whether a given context-free grammar is ambiguous.", "Determining whether a given DFA accepts a given string.", "Determining whether a given regular expression generates a context-free language."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/decidable-languages-and-problems-mcqs/"}
{"subject": "decidable-languages-and-problems-mcqs", "topic": "decidable-languages-and-problems-mcqs", "question": "The language L = {0ⁿ1ⁿ | n ≥ 0} is:", "options": ["Decidable", "Undecidable", "Regular", "Context-free"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/decidable-languages-and-problems-mcqs/"}
{"subject": "decidable-languages-and-problems-mcqs", "topic": "decidable-languages-and-problems-mcqs", "question": "Which of the following is a decidable problem related to context-free languages?", "options": ["Determining whether a given DFA accepts all strings.", "Determining whether a given Turing machine accepts an infinite language.", "Determining whether a given regular expression generates a context-sensitive language.", "Determining whether two context-free grammars generate the same language."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/decidable-languages-and-problems-mcqs/"}
{"subject": "decidable-languages-and-problems-mcqs", "topic": "decidable-languages-and-problems-mcqs", "question": "The set of all decidable languages is closed under which of the following operations?", "options": ["Complementation", "Intersection", "Union", "Kleene star"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/decidable-languages-and-problems-mcqs/"}
{"subject": "decidable-languages-and-problems-mcqs", "topic": "decidable-languages-and-problems-mcqs", "question": "Which of the following problems is undecidable?", "options": ["Checking whether a given Turing machine halts on all inputs.", "Checking whether a given regular expression generates an infinite language.", "Checking whether a given context-free grammar is ambiguous.", "Checking whether a given DFA accepts all strings."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/decidable-languages-and-problems-mcqs/"}
{"subject": "decidable-languages-and-problems-mcqs", "topic": "decidable-languages-and-problems-mcqs", "question": "The language L = {aⁿbⁿcⁿ | n ≥ 0} is:", "options": ["Decidable", "Undecidable", "Regular", "Context-free"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/decidable-languages-and-problems-mcqs/"}
{"subject": "decidable-languages-and-problems-mcqs", "topic": "decidable-languages-and-problems-mcqs", "question": "A problem is decidable if:", "options": ["It can be solved using a Turing machine with infinite tape.", "It can be solved in polynomial time.", "There exists an algorithm that always halts and gives the correct answer.", "It can be reduced to a context-free language."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/decidable-languages-and-problems-mcqs/"}
{"subject": "closure-properties-mcqs-2", "topic": "closure-properties-mcqs-2", "question": "Which of the following closure properties holds for regular languages?", "options": ["Closure under intersection with a context-free language", "Closure under complementation", "Closure under Turing reduction", "Closure under context-sensitive languages"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs-2/"}
{"subject": "closure-properties-mcqs-2", "topic": "closure-properties-mcqs-2", "question": "Which of the following is a property of context-free languages?", "options": ["Closure under intersection with regular languages", "Closure under Turing reduction", "Closure under complementation", "Closure under union with context-sensitive languages"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs-2/"}
{"subject": "closure-properties-mcqs-2", "topic": "closure-properties-mcqs-2", "question": "Which closure property holds for both regular and context-free languages?", "options": ["Closure under complementation", "Closure under context-sensitive languages", "Closure under Turing reduction", "Closure under intersection"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs-2/"}
{"subject": "closure-properties-mcqs-2", "topic": "closure-properties-mcqs-2", "question": "Which of the following is NOT a closure property of regular languages?", "options": ["Closure under concatenation", "Closure under star operation (Kleene star)", "Closure under intersection with regular languages", "Closure under intersection with context-free languages"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs-2/"}
{"subject": "closure-properties-mcqs-2", "topic": "closure-properties-mcqs-2", "question": "Which closure property is shared by regular, context-free, and context-sensitive languages?", "options": ["Closure under union", "Closure under intersection with regular languages", "Closure under Turing reduction", "Closure under complementation"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs-2/"}
{"subject": "closure-properties-mcqs-2", "topic": "closure-properties-mcqs-2", "question": "Which closure property is specific to recursively enumerable languages?", "options": ["Closure under union", "Closure under complementation", "Closure under intersection with regular languages", "Closure under concatenation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs-2/"}
{"subject": "closure-properties-mcqs-2", "topic": "closure-properties-mcqs-2", "question": "True or False: Context-free languages are closed under intersection with context-sensitive languages.", "options": ["True", "False"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs-2/"}
{"subject": "closure-properties-mcqs-2", "topic": "closure-properties-mcqs-2", "question": "Which of the following closure properties is true for all languages?", "options": ["Closure under intersection with context-free languages", "Closure under star operation (Kleene star)", "Closure under union", "Closure under Turing reduction"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs-2/"}
{"subject": "closure-properties-mcqs-2", "topic": "closure-properties-mcqs-2", "question": "Which closure property is typically used in constructing new languages from existing ones in theoretical computer science?", "options": ["Closure under Turing reduction", "Closure under union", "Closure under intersection with recursively enumerable languages", "Closure under concatenation"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs-2/"}
{"subject": "closure-properties-mcqs-2", "topic": "closure-properties-mcqs-2", "question": "Which of the following closure properties implies that the resulting language is always computable?", "options": ["Closure under union with recursively enumerable languages", "Closure under intersection with context-free languages", "Closure under star operation (Kleene star)", "Closure under Turing reduction"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs-2/"}
{"subject": "space-complexity-classes-pspace-l-nl-mcqs", "topic": "space-complexity-classes-pspace-l-nl-mcqs", "question": "Which of the following complexity classes deals specifically with the space used by algorithms?", "options": ["P", "NP", "PSPACE", "EXPTIME"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-classes-pspace-l-nl-mcqs/"}
{"subject": "space-complexity-classes-pspace-l-nl-mcqs", "topic": "space-complexity-classes-pspace-l-nl-mcqs", "question": "What does the PSPACE complexity class encompass?", "options": ["Problems solvable in polynomial time", "Problems solvable in polynomial space", "Problems solvable in exponential time", "Problems solvable in exponential space"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-classes-pspace-l-nl-mcqs/"}
{"subject": "space-complexity-classes-pspace-l-nl-mcqs", "topic": "space-complexity-classes-pspace-l-nl-mcqs", "question": "Which of the following statements about PSPACE is true?", "options": ["PSPACE is closed under complementation.", "PSPACE is equivalent to P.", "PSPACE is a subset of NP.", "PSPACE contains problems that can be solved using polynomial time."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-classes-pspace-l-nl-mcqs/"}
{"subject": "space-complexity-classes-pspace-l-nl-mcqs", "topic": "space-complexity-classes-pspace-l-nl-mcqs", "question": "Which space complexity class is defined as the set of problems solvable using logarithmic space on a deterministic Turing machine?", "options": ["P", "L", "NL", "PSPACE"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-classes-pspace-l-nl-mcqs/"}
{"subject": "space-complexity-classes-pspace-l-nl-mcqs", "topic": "space-complexity-classes-pspace-l-nl-mcqs", "question": "True or False — Every problem in PSPACE can also be solved in polynomial time.", "options": ["True", "False"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-classes-pspace-l-nl-mcqs/"}
{"subject": "space-complexity-classes-pspace-l-nl-mcqs", "topic": "space-complexity-classes-pspace-l-nl-mcqs", "question": "Which space complexity class is characterized by problems that can be solved using polynomial space on a non-deterministic Turing machine?", "options": ["PSPACE", "L", "NL", "NPSPACE"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-classes-pspace-l-nl-mcqs/"}
{"subject": "space-complexity-classes-pspace-l-nl-mcqs", "topic": "space-complexity-classes-pspace-l-nl-mcqs", "question": "Which of the following is a key property of the NL (Logarithmic Space) complexity class?", "options": ["NL is closed under complementation.", "NL is a subset of PSPACE.", "NL is equivalent to NP.", "NL contains only decidable problems."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-classes-pspace-l-nl-mcqs/"}
{"subject": "space-complexity-classes-pspace-l-nl-mcqs", "topic": "space-complexity-classes-pspace-l-nl-mcqs", "question": "In the context of space complexity, what does the class L (Logarithmic Space) encompass?", "options": ["Problems solvable in polynomial space", "Problems solvable in linear space", "Problems solvable in exponential time", "Problems solvable in constant space"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-classes-pspace-l-nl-mcqs/"}
{"subject": "space-complexity-classes-pspace-l-nl-mcqs", "topic": "space-complexity-classes-pspace-l-nl-mcqs", "question": "Which space complexity class is associated with problems that can be verified in polynomial space?", "options": ["PSPACE", "L", "NL", "NPSPACE"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-classes-pspace-l-nl-mcqs/"}
{"subject": "space-complexity-classes-pspace-l-nl-mcqs", "topic": "space-complexity-classes-pspace-l-nl-mcqs", "question": "Which statement accurately describes the relationship between space complexity classes?", "options": ["PSPACE is strictly contained within L.", "L is a subset of PSPACE.", "NL is equivalent to NPSPACE.", "PSPACE equals NPSPACE."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/space-complexity-classes-pspace-l-nl-mcqs/"}
{"subject": "reduction-techniques-mcqs", "topic": "reduction-techniques-mcqs", "question": "What is the main purpose of reduction techniques in computational complexity theory?", "options": ["To increase the efficiency of algorithms", "To decrease the time complexity of problems", "To simplify the analysis of problem difficulty", "To eliminate undecidable problems"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/reduction-techniques-mcqs/"}
{"subject": "reduction-techniques-mcqs", "topic": "reduction-techniques-mcqs", "question": "Which statement best describes a polynomial-time reduction between two computational problems?", "options": ["It converts one problem into another with polynomially related input sizes.", "It converts one problem into another with polynomial time complexity.", "It converts one problem into another with linear time complexity.", "It converts one problem into another with exponential time complexity."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/reduction-techniques-mcqs/"}
{"subject": "reduction-techniques-mcqs", "topic": "reduction-techniques-mcqs", "question": "True or False — Reduction techniques are used to find exact solutions to computational problems.", "options": ["True", "False"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/reduction-techniques-mcqs/"}
{"subject": "reduction-techniques-mcqs", "topic": "reduction-techniques-mcqs", "question": "Which complexity class is typically targeted to demonstrate hardness through reduction?", "options": ["P", "NP", "PSPACE", "EXP"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/reduction-techniques-mcqs/"}
{"subject": "reduction-techniques-mcqs", "topic": "reduction-techniques-mcqs", "question": "In the context of NP-completeness, what does it mean for a problem to be NP-hard?", "options": ["The problem is solvable in polynomial time.", "The problem is unsolvable.", "The problem is reducible to any problem in NP.", "The problem is harder than any problem in NP."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/reduction-techniques-mcqs/"}
{"subject": "reduction-techniques-mcqs", "topic": "reduction-techniques-mcqs", "question": "Which of the following is an example of a problem commonly used in reduction proofs for NP-completeness?", "options": ["Calculating the Fibonacci sequence", "Determining if a number is prime", "Sorting a list of integers", "Finding the minimum spanning tree in a graph"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/reduction-techniques-mcqs/"}
{"subject": "reduction-techniques-mcqs", "topic": "reduction-techniques-mcqs", "question": "Which technique is commonly used to establish the NP-completeness of a problem?", "options": ["NP reduction", "Polynomial-time reduction", "Linear-time reduction", "Exponential-time reduction"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/reduction-techniques-mcqs/"}
{"subject": "reduction-techniques-mcqs", "topic": "reduction-techniques-mcqs", "question": "What does a reduction from problem A to problem B indicate in computational complexity theory?", "options": ["Problem A is solvable if and only if problem B is solvable.", "Problem B is harder than problem A.", "Problem A is unsolvable.", "Problem B can be solved in constant time."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/reduction-techniques-mcqs/"}
{"subject": "reduction-techniques-mcqs", "topic": "reduction-techniques-mcqs", "question": "Which statement best describes the computational relationship established by a reduction?", "options": ["It shows that two problems have the same time complexity.", "It proves that a problem is in P.", "It demonstrates that one problem can solve another problem.", "It reduces the space complexity of algorithms."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/reduction-techniques-mcqs/"}
{"subject": "reduction-techniques-mcqs", "topic": "reduction-techniques-mcqs", "question": "Which area of computer science heavily relies on reduction techniques to classify problems?", "options": ["Software development", "Machine learning", "Cryptography", "Operating systems"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/reduction-techniques-mcqs/"}
{"subject": "properties-of-context-free-languages-mcqs", "topic": "properties-of-context-free-languages-mcqs", "question": "Which of the following is true about context-free languages (CFLs)?", "options": ["CFLs are closed under union.", "CFLs are closed under intersection.", "CFLs are closed under complement.", "CFLs are closed under Kleene star."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-context-free-languages-mcqs/"}
{"subject": "properties-of-context-free-languages-mcqs", "topic": "properties-of-context-free-languages-mcqs", "question": "A language L is context-free if and only if:", "options": ["There exists a deterministic finite automaton (DFA) that accepts L.", "There exists a nondeterministic finite automaton (NFA) that accepts L.", "There exists a deterministic pushdown automaton (DPDA) that accepts L.", "There exists a regular expression that describes L."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-context-free-languages-mcqs/"}
{"subject": "properties-of-context-free-languages-mcqs", "topic": "properties-of-context-free-languages-mcqs", "question": "Context-free languages are closed under which of the following operations?", "options": ["Intersection with a regular language.", "Reversal.", "Complementation.", "Subtraction."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-context-free-languages-mcqs/"}
{"subject": "properties-of-context-free-languages-mcqs", "topic": "properties-of-context-free-languages-mcqs", "question": "If L₁ and L₂ are context-free languages, which of the following is necessarily context-free?", "options": ["All of the above", "L₁ ∩ L₂ (Intersection of L₁ and L₂)", "L₁ – L₂ (Set difference of L₁ and L₂)", "L₁ ∪ L₂ (Union of L₁ and L₂)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-context-free-languages-mcqs/"}
{"subject": "properties-of-context-free-languages-mcqs", "topic": "properties-of-context-free-languages-mcqs", "question": "Which of the following is a property that context-free languages do not possess?", "options": ["Closure under concatenation.", "Closure under complement.", "Closure under homomorphism.", "Closure under Kleene star."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-context-free-languages-mcqs/"}
{"subject": "properties-of-context-free-languages-mcqs", "topic": "properties-of-context-free-languages-mcqs", "question": "The pumping lemma for context-free languages states that:", "options": ["Every context-free language can be pumped to generate infinitely many strings.", "Every sufficiently long string in a context-free language can be pumped.", "Every context-free language can be recognized by a finite automaton.", "Every context-free language has an unambiguous grammar."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-context-free-languages-mcqs/"}
{"subject": "properties-of-context-free-languages-mcqs", "topic": "properties-of-context-free-languages-mcqs", "question": "Which of the following is a characteristic feature of context-free grammars?", "options": ["They can generate languages with unbounded stack usage.", "They can generate languages with infinite alphabet.", "They can generate languages that are not recursively enumerable.", "They can generate languages that are not closed under complement."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-context-free-languages-mcqs/"}
{"subject": "properties-of-context-free-languages-mcqs", "topic": "properties-of-context-free-languages-mcqs", "question": "Context-free languages are not closed under:", "options": ["Intersection with regular languages.", "Union.", "Kleene star.", "Homomorphism."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-context-free-languages-mcqs/"}
{"subject": "properties-of-context-free-languages-mcqs", "topic": "properties-of-context-free-languages-mcqs", "question": "The Chomsky hierarchy places context-free languages at which level?", "options": ["Type 0", "Type 1", "Type 2", "Type 3"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-context-free-languages-mcqs/"}
{"subject": "properties-of-context-free-languages-mcqs", "topic": "properties-of-context-free-languages-mcqs", "question": "Which of the following is not a property of context-free languages?", "options": ["Closure under union.", "Closure under subtraction.", "Closure under reversal.", "Closure under intersection."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-context-free-languages-mcqs/"}
{"subject": "properties-of-context-free-languages-mcqs", "topic": "properties-of-context-free-languages-mcqs", "question": "The language {aⁿ bⁿ cⁿ | n ≥ 0} is:", "options": ["Context-free", "Regular", "Context-sensitive", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-context-free-languages-mcqs/"}
{"subject": "properties-of-context-free-languages-mcqs", "topic": "properties-of-context-free-languages-mcqs", "question": "A context-free grammar is ambiguous if:", "options": ["It generates exactly one parse tree for every string.", "It generates more than one parse tree for some string.", "It has no parse tree for some string.", "It has no start symbol."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-context-free-languages-mcqs/"}
{"subject": "properties-of-context-free-languages-mcqs", "topic": "properties-of-context-free-languages-mcqs", "question": "Which of the following is true regarding the languages generated by context-free grammars?", "options": ["They can be recognized by a deterministic pushdown automaton (DPDA).", "They always have finite automata that recognize them.", "They are always regular.", "They are never recursively enumerable."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-context-free-languages-mcqs/"}
{"subject": "properties-of-context-free-languages-mcqs", "topic": "properties-of-context-free-languages-mcqs", "question": "The language L = {aⁱ bʲ cᵏ | i ≠ j or j ≠ k} is:", "options": ["Context-free", "Regular", "Context-sensitive", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-context-free-languages-mcqs/"}
{"subject": "properties-of-context-free-languages-mcqs", "topic": "properties-of-context-free-languages-mcqs", "question": "A context-free grammar is equivalent to a regular grammar if:", "options": ["It has the same start symbol.", "It has no terminals.", "It has no non-terminals.", "It generates the same language."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-context-free-languages-mcqs/"}
{"subject": "chomsky-hierarchy-mcqs", "topic": "chomsky-hierarchy-mcqs", "question": "In the Chomsky hierarchy of formal languages, which class includes all regular languages?", "options": ["Type 0", "Type 1", "Type 2", "Type 3"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/chomsky-hierarchy-mcqs/"}
{"subject": "chomsky-hierarchy-mcqs", "topic": "chomsky-hierarchy-mcqs", "question": "Which type of grammar in the Chomsky hierarchy generates context-free languages?", "options": ["Type 0", "Type 1", "Type 2", "Type 3"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/chomsky-hierarchy-mcqs/"}
{"subject": "chomsky-hierarchy-mcqs", "topic": "chomsky-hierarchy-mcqs", "question": "True or False: Context-sensitive languages are a proper subset of context-free languages in the Chomsky hierarchy.", "options": ["True", "False"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/chomsky-hierarchy-mcqs/"}
{"subject": "chomsky-hierarchy-mcqs", "topic": "chomsky-hierarchy-mcqs", "question": "Which type of automaton corresponds to type 3 languages in the Chomsky hierarchy?", "options": ["Finite automaton", "Pushdown automaton", "Turing machine", "Linear-bounded automaton"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/chomsky-hierarchy-mcqs/"}
{"subject": "chomsky-hierarchy-mcqs", "topic": "chomsky-hierarchy-mcqs", "question": "What is the defining property of type 1 grammars in the Chomsky hierarchy?", "options": ["They generate regular languages.", "They generate context-free languages.", "They generate context-sensitive languages.", "They generate recursively enumerable languages."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/chomsky-hierarchy-mcqs/"}
{"subject": "chomsky-hierarchy-mcqs", "topic": "chomsky-hierarchy-mcqs", "question": "Which class in the Chomsky hierarchy includes languages that can be decided by a Turing machine?", "options": ["Type 0", "Type 1", "Type 2", "Type 3"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/chomsky-hierarchy-mcqs/"}
{"subject": "chomsky-hierarchy-mcqs", "topic": "chomsky-hierarchy-mcqs", "question": "In the context of formal languages, what is the primary distinction between type 0 and type 1 languages?", "options": ["Type 0 languages can be recognized by a Turing machine.", "Type 1 languages are context-free.", "Type 0 languages are recursively enumerable.", "Type 1 languages are regular."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/chomsky-hierarchy-mcqs/"}
{"subject": "chomsky-hierarchy-mcqs", "topic": "chomsky-hierarchy-mcqs", "question": "Which type of grammar can generate all recursively enumerable languages in the Chomsky hierarchy?", "options": ["Type 0", "Type 1", "Type 2", "Type 3"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/chomsky-hierarchy-mcqs/"}
{"subject": "chomsky-hierarchy-mcqs", "topic": "chomsky-hierarchy-mcqs", "question": "Which type of automaton corresponds to type 2 languages in the Chomsky hierarchy?", "options": ["Finite automaton", "Pushdown automaton", "Turing machine", "Linear-bounded automaton"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/chomsky-hierarchy-mcqs/"}
{"subject": "chomsky-hierarchy-mcqs", "topic": "chomsky-hierarchy-mcqs", "question": "Which theoretical framework did Noam Chomsky propose to classify formal languages based on their generative power?", "options": ["Automata theory", "Turing machine theory", "Grammar theory", "Complexity theory"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/chomsky-hierarchy-mcqs/"}
{"subject": "context-sensitive-grammars-and-languages-mcqs", "topic": "context-sensitive-grammars-and-languages-mcqs", "question": "Which of the following defines a context-sensitive grammar (CSG)?", "options": ["A grammar where every production is of the form A → α, where A is a non-terminal and α is a string of terminals and non-terminals.", "A grammar where every production is of the form A → α, where |α| ≤ |A| and A is a non-terminal.", "A grammar where every production is of the form α → β, where α and β are strings of terminals and non-terminals and |α| ≤ |β|.", "A grammar where every production is of the form αAβ → αγβ, where α, β, γ are strings of terminals and non-terminals."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/context-sensitive-grammars-and-languages-mcqs/"}
{"subject": "context-sensitive-grammars-and-languages-mcqs", "topic": "context-sensitive-grammars-and-languages-mcqs", "question": "A context-sensitive language (CSL) is:", "options": ["Any language that can be recognized by a finite automaton.", "Any language that can be generated by a context-free grammar.", "Any language that can be generated by a context-sensitive grammar.", "Any language that can be recognized by a pushdown automaton."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/context-sensitive-grammars-and-languages-mcqs/"}
{"subject": "context-sensitive-grammars-and-languages-mcqs", "topic": "context-sensitive-grammars-and-languages-mcqs", "question": "Which of the following grammars is more powerful than a context-sensitive grammar?", "options": ["Regular grammar", "Context-free grammar", "Unrestricted grammar", "Deterministic grammar"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/context-sensitive-grammars-and-languages-mcqs/"}
{"subject": "context-sensitive-grammars-and-languages-mcqs", "topic": "context-sensitive-grammars-and-languages-mcqs", "question": "A context-sensitive grammar allows productions of the form:", "options": ["A → αB", "A → α", "αAβ → αγβ", "A → ε"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/context-sensitive-grammars-and-languages-mcqs/"}
{"subject": "context-sensitive-grammars-and-languages-mcqs", "topic": "context-sensitive-grammars-and-languages-mcqs", "question": "Context-sensitive languages are closed under which of the following operations?", "options": ["Union", "Intersection", "Concatenation", "Complementation"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/context-sensitive-grammars-and-languages-mcqs/"}
{"subject": "context-sensitive-grammars-and-languages-mcqs", "topic": "context-sensitive-grammars-and-languages-mcqs", "question": "Which of the following is true about context-sensitive languages compared to context-free languages?", "options": ["Context-sensitive languages can be recognized by pushdown automata.", "Context-free languages are a proper subset of context-sensitive languages.", "Context-sensitive languages are always regular.", "Context-free languages are more expressive than context-sensitive languages."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/context-sensitive-grammars-and-languages-mcqs/"}
{"subject": "context-sensitive-grammars-and-languages-mcqs", "topic": "context-sensitive-grammars-and-languages-mcqs", "question": "The Chomsky hierarchy places context-sensitive grammars and languages:", "options": ["Above regular grammars and below context-free grammars.", "Above context-free grammars and below unrestricted grammars.", "Above deterministic context-free grammars and below Turing machines.", "Below regular grammars and above context-free grammars."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/context-sensitive-grammars-and-languages-mcqs/"}
{"subject": "context-sensitive-grammars-and-languages-mcqs", "topic": "context-sensitive-grammars-and-languages-mcqs", "question": "A context-sensitive grammar can generate languages that include:", "options": ["{aⁿ bⁿ cⁿ | n ≥ 0}", "{aⁿ bⁿ | n ≥ 0}", "{wwᴿ | w ∈ {a, b}*}", "{aⁱ bʲ cᵏ | i = j or j = k}"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/context-sensitive-grammars-and-languages-mcqs/"}
{"subject": "context-sensitive-grammars-and-languages-mcqs", "topic": "context-sensitive-grammars-and-languages-mcqs", "question": "Which of the following is an example of a context-sensitive language?", "options": ["{aⁿ bⁿ | n ≥ 0}", "{aⁿ bⁿ cⁿ | n ≥ 0}", "{wwᴿ | w ∈ {a, b}*}", "{aⁱ bʲ cᵏ | i ≠ j ≠ k}"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/context-sensitive-grammars-and-languages-mcqs/"}
{"subject": "context-sensitive-grammars-and-languages-mcqs", "topic": "context-sensitive-grammars-and-languages-mcqs", "question": "Context-sensitive languages are recognized by which type of automaton?", "options": ["Finite automaton", "Pushdown automaton", "Turing machine", "Deterministic finite automaton"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/context-sensitive-grammars-and-languages-mcqs/"}
{"subject": "polynomial-time-reductions-mcqs", "topic": "polynomial-time-reductions-mcqs", "question": "What does it mean for a problem A to be polynomial-time reducible to problem B?", "options": ["Problem A can be solved faster than problem B.", "There exists an algorithm that solves problem A using a polynomial number of steps relative to the size of problem B.", "Problem A is easier than problem B.", "Problem A can only be solved using a non-deterministic Turing machine."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/polynomial-time-reductions-mcqs/"}
{"subject": "polynomial-time-reductions-mcqs", "topic": "polynomial-time-reductions-mcqs", "question": "A polynomial-time reduction from problem A to problem B implies that:", "options": ["Problem B can be solved in polynomial time if problem A can be solved in polynomial time.", "Problem A can be solved in polynomial time.", "Problem A and problem B are equivalent.", "Problem A and problem B are NP-complete."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/polynomial-time-reductions-mcqs/"}
{"subject": "polynomial-time-reductions-mcqs", "topic": "polynomial-time-reductions-mcqs", "question": "Which of the following statements is true about polynomial-time reductions?", "options": ["They are always one-to-one mappings between problems.", "They allow transformation of problems in exponential time.", "They are transitive; if A is reducible to B and B is reducible to C, then A is reducible to C.", "They only apply to problems in the class P."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/polynomial-time-reductions-mcqs/"}
{"subject": "polynomial-time-reductions-mcqs", "topic": "polynomial-time-reductions-mcqs", "question": "If problem A is NP-complete and problem A is polynomial-time reducible to problem B, then:", "options": ["Problem B is also NP-complete.", "Problem B is in P.", "Problem B is in NP.", "Problem B is in NP-hard."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/polynomial-time-reductions-mcqs/"}
{"subject": "polynomial-time-reductions-mcqs", "topic": "polynomial-time-reductions-mcqs", "question": "A problem A is said to be NP-hard if:", "options": ["It can be solved in non-deterministic polynomial time.", "It is at least as hard as any problem in NP.", "It can be solved using a deterministic Turing machine.", "It can be solved in logarithmic time."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/polynomial-time-reductions-mcqs/"}
{"subject": "polynomial-time-reductions-mcqs", "topic": "polynomial-time-reductions-mcqs", "question": "Which of the following is an example of a polynomial-time reduction?", "options": ["Transforming a problem in NP to a problem in P.", "Transforming an NP-hard problem to a P problem.", "Transforming an NP-complete problem to an NP-hard problem.", "Transforming an NP problem to an NP-complete problem."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/polynomial-time-reductions-mcqs/"}
{"subject": "polynomial-time-reductions-mcqs", "topic": "polynomial-time-reductions-mcqs", "question": "The concept of polynomial-time reductions is primarily used to:", "options": ["Compare the efficiency of algorithms.", "Determine whether a problem is in NP.", "Prove the hardness of problems.", "Classify problems as NP-complete."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/polynomial-time-reductions-mcqs/"}
{"subject": "polynomial-time-reductions-mcqs", "topic": "polynomial-time-reductions-mcqs", "question": "A polynomial-time reduction between two problems A and B implies that:", "options": ["Problem A is easier than problem B.", "Problem B is easier than problem A.", "Problem A is in NP.", "Problem A and problem B are equivalent in terms of computational complexity."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/polynomial-time-reductions-mcqs/"}
{"subject": "polynomial-time-reductions-mcqs", "topic": "polynomial-time-reductions-mcqs", "question": "If problem A can be polynomial-time reduced to problem B, and problem B is in P, then:", "options": ["Problem A is in P.", "Problem A is in NP.", "Problem A is NP-complete.", "Problem A is NP-hard."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/polynomial-time-reductions-mcqs/"}
{"subject": "polynomial-time-reductions-mcqs", "topic": "polynomial-time-reductions-mcqs", "question": "A polynomial-time reduction from problem A to problem B typically involves:", "options": ["A non-deterministic Turing machine that decides whether problem A reduces to problem B.", "A transformation that converts problem A to problem B using exponential time.", "A deterministic Turing machine that solves both problems simultaneously.", "A mapping that runs in polynomial time."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/polynomial-time-reductions-mcqs/"}
{"subject": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "topic": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "question": "The entity which generates Language is termed as:", "options": ["Automata", "Tokens", "Strings", "Grammar"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-context-free-grammar-and-context-sensitive-languages/"}
{"subject": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "topic": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "question": "The minimum number of productions required to produce a language consisting of palindrome strings over ∑={a,b} is:", "options": ["5", "7", "3", "8"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-context-free-grammar-and-context-sensitive-languages/"}
{"subject": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "topic": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "question": "Which of the following statement is correct?", "options": ["All context free grammar are regular grammar but not vice versa", "All Regular grammar are context free but not vice versa", "Regular grammar and context free grammar are the same entity", "None of the mentioned"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-context-free-grammar-and-context-sensitive-languages/"}
{"subject": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "topic": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "question": "Context sensitive grammar (CSL) is also called?", "options": ["Length increasing grammar", "Non contracting Grammar", "Type 1 Grammar", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-context-free-grammar-and-context-sensitive-languages/"}
{"subject": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "topic": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "question": "Which of the following is Type 3 language or Type 3 grammar?", "options": ["Regular grammar/ Regular language", "Context Free Grammar / Context Free language", "Context Sensitive Grammar / Context Sensitive language", "Recursively Enumerable"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-context-free-grammar-and-context-sensitive-languages/"}
{"subject": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "topic": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "question": "Which of the following is Type 2 language or Type 2 grammar?", "options": ["Regular grammar/ Regular language", "Context Free Grammar / Context Free language", "Context Sensitive Grammar / Context Sensitive language", "Recursively Enumerable"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-context-free-grammar-and-context-sensitive-languages/"}
{"subject": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "topic": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "question": "Which of the following is Type 1 language or Type 1 grammar?", "options": ["Regular grammar/ Regular language", "Context Free Grammar / Context Free language", "Context Sensitive Grammar / Context Sensitive language", "Recursively Enumerable"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-context-free-grammar-and-context-sensitive-languages/"}
{"subject": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "topic": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "question": "Which of the following is Type 0 language?", "options": ["Regular grammar/ Regular language", "Context Free Grammar / Context Free language", "Context Sensitive Grammar / Context Sensitive language", "Recursively Enumerable"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-context-free-grammar-and-context-sensitive-languages/"}
{"subject": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "topic": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "question": "Which of the following Machine is specific for Regular grammar?", "options": ["Finite state automata", "Push down automata", "Linear bounded automata", "Turing Machine with deterministic logic, unbounded infinite length of tape."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-context-free-grammar-and-context-sensitive-languages/"}
{"subject": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "topic": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "question": "Which of the following Machine is specific for Context free grammar?", "options": ["Finite state automata", "Push down automata", "Linear bounded automata", "Turing Machine"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-context-free-grammar-and-context-sensitive-languages/"}
{"subject": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "topic": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "question": "Which of the following Machine is specific for Context sensitive grammar?", "options": ["Finite state automata", "Push down automata", "Linear bounded automata", "Turing Machine"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-context-free-grammar-and-context-sensitive-languages/"}
{"subject": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "topic": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "question": "Which of the following Machine is specific for Recursively enumerable languages?", "options": ["Finite state automata", "Push down automata", "Linear bounded automata", "Turing Machine"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-context-free-grammar-and-context-sensitive-languages/"}
{"subject": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "topic": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "question": "A context free language is called ambiguous if there exists a string that can have:", "options": ["only one parse tree", "more than one parse tree", "no parse tree", "Partial parse tree"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-context-free-grammar-and-context-sensitive-languages/"}
{"subject": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "topic": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "question": "Production Rule: aYb->agb belongs to which of the following languages?", "options": ["Recursively Enumerable Language", "Context free Language", "Context Sensitive Language", "Regular Language"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-context-free-grammar-and-context-sensitive-languages/"}
{"subject": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "topic": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "question": "Which of the following language cannot be accepted by a regular expression?", "options": ["Language of a set of numbers divisible by 4", "Language of a set of binary complement", "Language of a set of 0n1n", "Language of a set of string with odd number of 0"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-context-free-grammar-and-context-sensitive-languages/"}
{"subject": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "topic": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "question": "The minimum number of productions required to produce a language consisting of palindromes as a strings defined over ∑={0,1} is:", "options": ["4", "5", "6", "7"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-context-free-grammar-and-context-sensitive-languages/"}
{"subject": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "topic": "mcqs-on-context-free-grammar-and-context-sensitive-languages", "question": "Are ambiguous grammar context free?", "options": ["Yes", "No", "Yes"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-on-context-free-grammar-and-context-sensitive-languages/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "Regular languages are closed under which of the following operations?", "options": ["Union", "Intersection", "Complement", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "Which of the following operations on regular languages always results in a regular language?", "options": ["Concatenation", "Kleene star", "Reversal", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "If L₁ and L₂ are regular languages, then L₁ ∪ L₂ is:", "options": ["Regular", "Context-free", "Context-sensitive", "Not necessarily regular"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "Regular languages are closed under the following operation except:", "options": ["Complement", "Homomorphism", "Intersection with a context-free language", "Inverse homomorphism"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "If L is a regular language, then the complement of L is:", "options": ["Regular", "Context-free", "Context-sensitive", "Not necessarily regular"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "Which of the following is not a closure property of regular languages?", "options": ["Subtraction", "Union", "Intersection", "Kleene star"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "The intersection of a regular language with any other regular language is:", "options": ["Regular", "Context-free", "Context-sensitive", "Not necessarily regular"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "Regular languages are not closed under:", "options": ["Union", "Concatenation", "Complement", "Infinite intersection"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "Given two regular languages L₁ and L₂, their concatenation L₁L₂ is:", "options": ["Regular", "Context-free", "Context-sensitive", "Not necessarily regular"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "If L₁ is a regular language and L₂ is a finite language, their intersection L₁ ∩ L₂ is:", "options": ["Regular", "Context-free", "Context-sensitive", "Not necessarily regular"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "Which of the following operations on context-free languages does not necessarily result in a context-free language?", "options": ["Union", "Intersection with a regular language", "Intersection with another context-free language", "Kleene star"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "If L₁ and L₂ are context-free languages, then L₁ ∪ L₂ is:", "options": ["Regular", "Context-free", "Context-sensitive", "Not necessarily context-free"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "The concatenation of two context-free languages is:", "options": ["Always regular", "Always context-free", "Always context-sensitive", "Not necessarily context-free"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "If L is a context-free language, the language L* (Kleene star) is:", "options": ["Regular", "Context-free", "Context-sensitive", "Not necessarily context-free"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "If L₁ is a context-free language and L₂ is a regular language, their intersection L₁ ∩ L₂ is:", "options": ["Regular", "Context-free", "Context-sensitive", "Not necessarily context-free"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "Which of the following is not a closure property of context-free languages?", "options": ["Union", "Concatenation", "Complement", "Kleene star"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "The complement of a context-free language is:", "options": ["Always context-free", "Always context-sensitive", "Not necessarily context-free", "Always regular"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "If L₁ and L₂ are context-free languages, the language L₁ – L₂ (difference) is:", "options": ["Context-free", "Regular", "Context-sensitive", "Not necessarily context-free"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "Context-free languages are closed under the following operations except:", "options": ["Reversal", "Homomorphism", "Inverse homomorphism", "Complement"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "The union of a context-free language and a regular language is:", "options": ["Regular", "Context-free", "Context-sensitive", "Not necessarily context-free"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "Which of the following statements is true regarding context-free languages?", "options": ["They are closed under intersection with regular languages.", "They are closed under intersection with other context-free languages.", "They are closed under complement.", "They are not closed under union."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "closure-properties-mcqs", "topic": "closure-properties-mcqs", "question": "If L₁ is a context-free language and L₂ is a regular language, their concatenation L₁L₂ is:", "options": ["Regular", "Context-free", "Context-sensitive", "Not necessarily context-free"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/closure-properties-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Automata Theory Mcqs", "question": "Which of the following is an application area of automata theory?", "options": ["Network security", "Data visualization", "Speech recognition", "Image processing"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Automata Theory Mcqs", "question": "Automata theory is used in the design and analysis of:", "options": ["Operating systems", "Machine learning algorithms", "Cryptographic protocols", "Web development frameworks"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Automata Theory Mcqs", "question": "True or False: Automata theory is primarily used for analyzing large datasets in data science.", "options": ["True", "False"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Automata Theory Mcqs", "question": "Which area of computer science extensively employs automata theory to model computation?", "options": ["Artificial intelligence", "Database management", "Compiler construction", "Virtual reality"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Automata Theory Mcqs", "question": "In what way does automata theory contribute to compiler design?", "options": ["It optimizes runtime performance of compiled code.", "It converts high-level programming languages into machine code.", "It ensures data integrity in compiled applications.", "It enhances user interface design of compilers."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Automata Theory Mcqs", "question": "Which application area of automata theory involves the study of formal languages and their grammars?", "options": ["Robotics", "Bioinformatics", "Natural language processing", "Virtual reality"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Automata Theory Mcqs", "question": "Automata theory plays a crucial role in the development of:", "options": ["Gaming consoles", "Speech synthesis systems", "Augmented reality devices", "Blockchain technology"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Automata Theory Mcqs", "question": "Which field uses automata theory to model protocols and verify system correctness?", "options": ["Quantum computing", "Electrical engineering", "Distributed systems", "Nanotechnology"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Automata Theory Mcqs", "question": "What does automata theory contribute to the study of formal verification in software engineering?", "options": ["It automates software testing procedures.", "It ensures compliance with industry standards.", "It verifies correctness of software implementations.", "It enhances user interface design of software applications."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-automata-theory-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Applications Of Automata Theory Mcqs", "question": "Which area uses automata theory to analyze patterns in biological sequences such as DNA?", "options": ["Cybersecurity", "Computational biology", "Financial modeling", "Renewable energy"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/applications-of-automata-theory-mcqs/"}
{"subject": "pumping-lemma-for-regular-languages-mcqs", "topic": "pumping-lemma-for-regular-languages-mcqs", "question": "Which of the following is a property of regular languages?", "options": ["Closed under intersection", "Closed under complement", "Closed under union", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pumping-lemma-for-regular-languages-mcqs/"}
{"subject": "pumping-lemma-for-regular-languages-mcqs", "topic": "pumping-lemma-for-regular-languages-mcqs", "question": "Which of the following operations cannot be performed on regular languages and still produce a regular language?", "options": ["Union", "Intersection", "Complement", "None of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pumping-lemma-for-regular-languages-mcqs/"}
{"subject": "pumping-lemma-for-regular-languages-mcqs", "topic": "pumping-lemma-for-regular-languages-mcqs", "question": "Which of the following closure properties does not hold for regular languages?", "options": ["Closure under symmetric difference", "Closure under inverse homomorphism", "Closure under Kleene star", "Closure under intersection with a context-free language"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pumping-lemma-for-regular-languages-mcqs/"}
{"subject": "pumping-lemma-for-regular-languages-mcqs", "topic": "pumping-lemma-for-regular-languages-mcqs", "question": "What does the Pumping Lemma for regular languages primarily prove?", "options": ["That all languages are regular", "That certain languages are not regular", "That all regular languages are finite", "That regular languages are closed under intersection"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pumping-lemma-for-regular-languages-mcqs/"}
{"subject": "pumping-lemma-for-regular-languages-mcqs", "topic": "pumping-lemma-for-regular-languages-mcqs", "question": "True or False: If a language satisfies the Pumping Lemma, it is necessarily regular.", "options": ["True", "False"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pumping-lemma-for-regular-languages-mcqs/"}
{"subject": "pumping-lemma-for-regular-languages-mcqs", "topic": "pumping-lemma-for-regular-languages-mcqs", "question": "Which of the following is a decidable property of regular languages?", "options": ["Emptiness", "Finiteness", "Membership", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pumping-lemma-for-regular-languages-mcqs/"}
{"subject": "pumping-lemma-for-regular-languages-mcqs", "topic": "pumping-lemma-for-regular-languages-mcqs", "question": "Which of the following is not a property of regular languages?", "options": ["Closed under shuffle", "Closed under quotient with regular languages", "Closed under reversal", "Closed under homomorphism"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pumping-lemma-for-regular-languages-mcqs/"}
{"subject": "ambiguity-in-grammars-mcqs", "topic": "ambiguity-in-grammars-mcqs", "question": "What does it mean for a grammar to be ambiguous?", "options": ["It has more than one production rule for each non-terminal symbol.", "It generates an infinite number of strings.", "It can derive at least one string in more than one way.", "It has no start symbol."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ambiguity-in-grammars-mcqs/"}
{"subject": "ambiguity-in-grammars-mcqs", "topic": "ambiguity-in-grammars-mcqs", "question": "Which of the following statements about ambiguous grammars is true?", "options": ["An ambiguous grammar always leads to an infinite number of strings.", "An ambiguous grammar cannot be parsed.", "Ambiguity in grammars can lead to multiple parse trees for a single sentence.", "Ambiguity in grammars is necessary for them to be context-free."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ambiguity-in-grammars-mcqs/"}
{"subject": "ambiguity-in-grammars-mcqs", "topic": "ambiguity-in-grammars-mcqs", "question": "Which type of ambiguity involves different interpretations of the meaning of a sentence?", "options": ["Syntactic ambiguity", "Semantic ambiguity", "Lexical ambiguity", "Structural ambiguity"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ambiguity-in-grammars-mcqs/"}
{"subject": "ambiguity-in-grammars-mcqs", "topic": "ambiguity-in-grammars-mcqs", "question": "In context-free grammars, ambiguity is primarily related to:", "options": ["The number of production rules", "The structure of parse trees", "The use of epsilon productions", "The number of terminals and non-terminals"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ambiguity-in-grammars-mcqs/"}
{"subject": "ambiguity-in-grammars-mcqs", "topic": "ambiguity-in-grammars-mcqs", "question": "Which of the following methods is used to resolve ambiguity in grammars?", "options": ["Adding more production rules", "Revising the grammar to include more non-terminals", "Restructuring the grammar to ensure a unique parse tree for each sentence", "Increasing the number of terminals in the language"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ambiguity-in-grammars-mcqs/"}
{"subject": "ambiguity-in-grammars-mcqs", "topic": "ambiguity-in-grammars-mcqs", "question": "True or False: Every ambiguous grammar can be converted into an unambiguous grammar.", "options": ["True", "False"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ambiguity-in-grammars-mcqs/"}
{"subject": "ambiguity-in-grammars-mcqs", "topic": "ambiguity-in-grammars-mcqs", "question": "Which of the following languages cannot be generated by an unambiguous grammar?", "options": ["{ aⁿ bⁿ ∣ n ≥ 0 }", "{ aⁿ bᵐ ∣ n,m ≥ 0 }", "{ a* b* }", "{ aⁿ ∣ n ≥ 0 }"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ambiguity-in-grammars-mcqs/"}
{"subject": "ambiguity-in-grammars-mcqs", "topic": "ambiguity-in-grammars-mcqs", "question": "Which of the following statements is NOT true about ambiguity in grammars?", "options": ["Ambiguity can lead to multiple interpretations of a sentence", "Ambiguity is always desirable in language processing", "Ambiguity can arise in both natural and formal languages", "Ambiguity can complicate language parsing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ambiguity-in-grammars-mcqs/"}
{"subject": "ambiguity-in-grammars-mcqs", "topic": "ambiguity-in-grammars-mcqs", "question": "Which type of ambiguity in grammars involves multiple ways of interpreting the syntactic structure of a sentence?", "options": ["Lexical ambiguity", "Syntactic ambiguity", "Semantic ambiguity", "Structural ambiguity"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ambiguity-in-grammars-mcqs/"}
{"subject": "ambiguity-in-grammars-mcqs", "topic": "ambiguity-in-grammars-mcqs", "question": "In the context of programming languages, why is ambiguity in grammars particularly problematic?", "options": ["It leads to faster compilation times", "It can cause unintended behavior and errors during parsing", "It simplifies the process of writing code", "It ensures compatibility with older programming standards"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ambiguity-in-grammars-mcqs/"}
{"subject": "relationship-between-pda-and-context-free-languages-mcqs", "topic": "relationship-between-pda-and-context-free-languages-mcqs", "question": "Which of the following statements best describes the relationship between Pushdown Automata (PDA) and context-free languages (CFL)?", "options": ["PDAs recognize all regular languages but none of the context-free languages.", "PDAs recognize a superset of the context-free languages.", "PDAs recognize a proper subset of the context-free languages.", "PDAs recognize exactly the context-free languages."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/relationship-between-pda-and-context-free-languages-mcqs/"}
{"subject": "relationship-between-pda-and-context-free-languages-mcqs", "topic": "relationship-between-pda-and-context-free-languages-mcqs", "question": "What is a key characteristic of a Pushdown Automaton (PDA) that allows it to recognize context-free languages?", "options": ["It has a finite amount of memory.", "It has an unbounded tape for input.", "It has a stack for storing symbols.", "It can perform non-deterministic transitions."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/relationship-between-pda-and-context-free-languages-mcqs/"}
{"subject": "relationship-between-pda-and-context-free-languages-mcqs", "topic": "relationship-between-pda-and-context-free-languages-mcqs", "question": "Which of the following is true regarding the operation of a Pushdown Automaton (PDA)?", "options": ["It reads input symbols from left to right and accepts if the input tape is empty.", "It reads input symbols from right to left and accepts if the input tape is empty.", "It reads input symbols from left to right and accepts if the stack is empty.", "It reads input symbols from right to left and accepts if the stack is empty."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/relationship-between-pda-and-context-free-languages-mcqs/"}
{"subject": "relationship-between-pda-and-context-free-languages-mcqs", "topic": "relationship-between-pda-and-context-free-languages-mcqs", "question": "True or False: Every context-free language can be recognized by some Pushdown Automaton (PDA).", "options": ["True", "False"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/relationship-between-pda-and-context-free-languages-mcqs/"}
{"subject": "relationship-between-pda-and-context-free-languages-mcqs", "topic": "relationship-between-pda-and-context-free-languages-mcqs", "question": "Which of the following is a correct statement about the computational power of a Pushdown Automaton (PDA)?", "options": ["PDAs are equivalent in power to Turing Machines.", "PDAs are less powerful than Turing Machines.", "PDAs are equivalent in power to Finite Automata.", "PDAs are more powerful than Turing Machines."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/relationship-between-pda-and-context-free-languages-mcqs/"}
{"subject": "relationship-between-pda-and-context-free-languages-mcqs", "topic": "relationship-between-pda-and-context-free-languages-mcqs", "question": "In the context of Pushdown Automata, what role does the stack play in recognizing context-free languages?", "options": ["It stores the input symbols permanently.", "It determines the alphabet used by the PDA.", "It allows the PDA to recognize non-context-free languages.", "It provides additional memory to store symbols temporarily."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/relationship-between-pda-and-context-free-languages-mcqs/"}
{"subject": "relationship-between-pda-and-context-free-languages-mcqs", "topic": "relationship-between-pda-and-context-free-languages-mcqs", "question": "Which of the following statements is true regarding closure properties of context-free languages?", "options": ["Context-free languages are closed under intersection.", "Context-free languages are closed under subtraction.", "Context-free languages are closed under Kleene star.", "Context-free languages are closed under complementation."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/relationship-between-pda-and-context-free-languages-mcqs/"}
{"subject": "relationship-between-pda-and-context-free-languages-mcqs", "topic": "relationship-between-pda-and-context-free-languages-mcqs", "question": "Which construction method is typically used to convert a context-free grammar into an equivalent Pushdown Automaton (PDA)?", "options": ["Subset Construction", "Union Construction", "Grammar Conversion", "Conversion to Regular Expression"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/relationship-between-pda-and-context-free-languages-mcqs/"}
{"subject": "relationship-between-pda-and-context-free-languages-mcqs", "topic": "relationship-between-pda-and-context-free-languages-mcqs", "question": "Which aspect of Pushdown Automata distinguishes them from Finite Automata when recognizing languages?", "options": ["The ability to perform parallel computations.", "The presence of a stack for storing symbols.", "The use of an unbounded tape for input.", "The ability to recognize non-context-free languages."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/relationship-between-pda-and-context-free-languages-mcqs/"}
{"subject": "pumping-lemma-for-context-free-languages-mcqs", "topic": "pumping-lemma-for-context-free-languages-mcqs", "question": "What does the Pumping Lemma for context-free languages state?", "options": ["Every sufficiently large context-free language can be pumped to generate infinitely many strings.", "Every context-free language contains strings that can be pumped to generate more strings in the language.", "Every context-free language has a finite number of strings that can be generated.", "Every context-free language has an equivalent regular language."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pumping-lemma-for-context-free-languages-mcqs/"}
{"subject": "pumping-lemma-for-context-free-languages-mcqs", "topic": "pumping-lemma-for-context-free-languages-mcqs", "question": "Which of the following is a consequence of the Pumping Lemma for context-free languages?", "options": ["Every regular language is context-free.", "Every context-free language is regular.", "Every context-free language has a finite number of strings.", "Every context-free language has an unambiguous grammar."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pumping-lemma-for-context-free-languages-mcqs/"}
{"subject": "pumping-lemma-for-context-free-languages-mcqs", "topic": "pumping-lemma-for-context-free-languages-mcqs", "question": "The Pumping Lemma for context-free languages is used to:", "options": ["Prove that a language is context-free.", "Prove that a language is regular.", "Define the grammar for a context-free language.", "Construct a non-deterministic pushdown automaton (NPDA)."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/pumping-lemma-for-context-free-languages-mcqs/"}
{"subject": "pumping-lemma-for-context-free-languages-mcqs", "topic": "pumping-lemma-for-context-free-languages-mcqs", "question": "Which part of the Pumping Lemma for context-free languages guarantees the existence of a decomposition xyz of a string in a context-free language?", "options": ["|xy| ≤ p", "|y| > 0", "xyⁱz ∈ L for all i ≥ 0", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pumping-lemma-for-context-free-languages-mcqs/"}
{"subject": "pumping-lemma-for-context-free-languages-mcqs", "topic": "pumping-lemma-for-context-free-languages-mcqs", "question": "If a language violates the conditions of the Pumping Lemma for context-free languages, it implies that the language is:", "options": ["Regular", "Context-free", "Not context-free", "Recursively enumerable"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pumping-lemma-for-context-free-languages-mcqs/"}
{"subject": "pumping-lemma-for-context-free-languages-mcqs", "topic": "pumping-lemma-for-context-free-languages-mcqs", "question": "Which of the following statements is true regarding the Pumping Lemma for context-free languages?", "options": ["It can be used to prove that a context-free grammar is ambiguous.", "It can be used to prove that a context-free language is infinite.", "It can be used to construct a deterministic pushdown automaton (DPDA).", "It can be used to convert a regular language into a context-free language."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pumping-lemma-for-context-free-languages-mcqs/"}
{"subject": "pumping-lemma-for-context-free-languages-mcqs", "topic": "pumping-lemma-for-context-free-languages-mcqs", "question": "The Pumping Lemma for context-free languages is an important tool in the study of:", "options": ["Finite automata", "Regular expressions", "Turing machines", "Pushdown automata"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/pumping-lemma-for-context-free-languages-mcqs/"}
{"subject": "pumping-lemma-for-context-free-languages-mcqs", "topic": "pumping-lemma-for-context-free-languages-mcqs", "question": "Which of the following languages satisfies the conditions of the Pumping Lemma for context-free languages?", "options": ["{aⁿ bⁿ cⁿ | n ≥ 0}", "{aⁿ bⁿ | n ≥ 0}", "{wwᴿ | w ∈ {a, b}*}", "{aⁱ bʲ | i ≠ j}"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/pumping-lemma-for-context-free-languages-mcqs/"}
{"subject": "pumping-lemma-for-context-free-languages-mcqs", "topic": "pumping-lemma-for-context-free-languages-mcqs", "question": "The Pumping Lemma for context-free languages helps to demonstrate that context-free languages are:", "options": ["Regular", "Recursive", "Decidable", "Closed under union"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/pumping-lemma-for-context-free-languages-mcqs/"}
{"subject": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "topic": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "question": "Which time complexity class represents the set of problems solvable in polynomial time on a deterministic Turing machine?", "options": ["P", "NP", "NP-complete", "NP-hard"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-classes-p-np-np-complete-np-hard-mcqs/"}
{"subject": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "topic": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "question": "The class NP stands for:", "options": ["Non-Polynomial", "Non-Polynomial Deterministic", "Non-deterministic Polynomial", "Non-deterministic Exponential"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-classes-p-np-np-complete-np-hard-mcqs/"}
{"subject": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "topic": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "question": "A problem is in NP if:", "options": ["It can be solved in exponential time.", "It can be solved in logarithmic time.", "Its solution can be verified in constant time.", "Its solution can be verified in polynomial time."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-classes-p-np-np-complete-np-hard-mcqs/"}
{"subject": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "topic": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "question": "A problem is NP-complete if:", "options": ["It is the hardest problem in NP.", "It can be solved in polynomial time.", "It has no known solution.", "It is easier than problems in P."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-classes-p-np-np-complete-np-hard-mcqs/"}
{"subject": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "topic": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "question": "Which of the following is true about NP-complete problems?", "options": ["They can be solved in polynomial time.", "They can be solved using non-deterministic Turing machines.", "They are always easier than problems in P.", "They are at least as hard as any problem in NP."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-classes-p-np-np-complete-np-hard-mcqs/"}
{"subject": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "topic": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "question": "The class NP-hard consists of problems that are:", "options": ["Easier than problems in P.", "At least as hard as any problem in NP.", "Solvable in logarithmic time.", "Deterministic polynomial time solvable."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-classes-p-np-np-complete-np-hard-mcqs/"}
{"subject": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "topic": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "question": "Which of the following is not a property of problems in P?", "options": ["They can be solved in polynomial time.", "Their solutions can be verified in polynomial time.", "They are generally easier than problems in NP.", "They can be solved using a deterministic Turing machine."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-classes-p-np-np-complete-np-hard-mcqs/"}
{"subject": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "topic": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "question": "A problem is NP if:", "options": ["It can be solved using a deterministic Turing machine in polynomial time.", "Its solution can be verified in polynomial time on a non-deterministic Turing machine.", "It can be solved in exponential time.", "It is equivalent to an NP-complete problem."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-classes-p-np-np-complete-np-hard-mcqs/"}
{"subject": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "topic": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "question": "Which class contains all problems that are as hard as the hardest problems in NP, but may not be in NP themselves?", "options": ["P", "NP", "NP-complete", "NP-hard"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-classes-p-np-np-complete-np-hard-mcqs/"}
{"subject": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "topic": "time-complexity-classes-p-np-np-complete-np-hard-mcqs", "question": "If a problem is NP-complete, it implies that:", "options": ["It can be solved in polynomial time.", "It is the easiest problem in NP.", "It is at least as hard as any problem in NP.", "Its solution can be verified in constant time."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/time-complexity-classes-p-np-np-complete-np-hard-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "Which of the following statements is true for a DFA?", "options": ["It has multiple start states.", "It has multiple accept states.", "It can have epsilon transitions.", "It has a unique next state for each input symbol."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "A DFA is called deterministic because:", "options": ["It has a fixed number of states.", "It can deterministically decide whether to accept or reject a string.", "It does not accept epsilon transitions.", "It has multiple transitions for a single input symbol."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "Which of the following is not a part of the 5-tuple representation of a DFA?", "options": ["A finite set of states.", "A finite set of input symbols.", "A finite set of output symbols.", "A transition function."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "In a DFA, the transition function:", "options": ["Maps a state and an input symbol to multiple states.", "Maps a state and an input symbol to a single state.", "Maps a state and an input symbol to an output symbol.", "Maps a state and an output symbol to an input symbol."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "The language accepted by a DFA is:", "options": ["Context-free.", "Context-sensitive.", "Regular.", "Recursively enumerable."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "Which of the following is true about the states of a DFA?", "options": ["There can be multiple start states.", "Every state must be a start state.", "Every state must be an accept state.", "There can be exactly one start state."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "In a DFA, what happens if there is no valid transition for a given input symbol from a particular state?", "options": ["The DFA halts and rejects the input.", "The DFA moves to a random state.", "The DFA accepts the input.", "The DFA returns to the start state."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "Which of the following is not true for a DFA?", "options": ["It can recognize regular languages.", "It can have epsilon transitions.", "It has a single start state.", "It has a set of final states."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "A DFA can be used to determine if a string:", "options": ["Is in a regular language.", "Is in a context-free language.", "Is in a context-sensitive language.", "Is in a recursively enumerable language."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "Which of the following operations can be performed on regular languages recognized by DFAs?", "options": ["Union", "All of the above", "Complement", "Intersection"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "The set of all strings over the alphabet {0, 1} that contain an even number of 1s can be recognized by:", "options": ["None of the above", "A PDA", "A Turing machine", "A DFA"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "The DFA for the language {w | w contains at least one ‘a’} over the alphabet {a, b} will have:", "options": ["2 states", "3 states", "1 state", "4 states"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "For a DFA, which of the following statements is false?", "options": ["It has a finite number of states.", "It can be represented using a transition table.", "It can accept all types of languages.", "It has a unique transition for each symbol from a state."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "The complement of a language recognized by a DFA can be obtained by:", "options": ["Reversing the transitions.", "Swapping the accept and non-accept states.", "Making the start state an accept state.", "Removing the start state."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "Which of the following is necessary for a language to be recognized by a DFA?", "options": ["The language must be infinite.", "The language must be context-free.", "The language must be regular.", "The language must be context-sensitive."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "Which one of the following cannot be recognized by any DFA?", "options": ["Strings with an even number of 0s.", "Palindromes.", "Strings containing ‘101’ as a substring.", "Strings ending with ‘0’."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "A DFA can be minimized by:", "options": ["Combining equivalent states.", "Adding more states.", "Adding more transitions.", "Removing all final states."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "In a minimized DFA, each state represents:", "options": ["A single string.", "An epsilon transition.", "A single input symbol.", "A set of strings."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "The product of two DFAs recognizing languages L₁ and L₂ will recognize:", "options": ["L₁ ∪ L₂", "L₁ – L₂", "L₁ ∩ L₂", "L₁ concatenated with L₂"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Deterministic Finite Automata Dfa Mcq", "question": "A DFA can be converted to:", "options": ["A PDA", "An NFA", "A Turing machine", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-finite-automata-dfa-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "Which of the following is true for an NFA?", "options": ["It has multiple transitions for a single input symbol from a given state.", "It has multiple start states.", "It cannot have epsilon transitions.", "It has a unique next state for each input symbol."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "An NFA is called non-deterministic because:", "options": ["It can deterministically decide whether to accept or reject a string.", "It can have multiple transitions for the same input symbol from a state.", "It does not accept epsilon transitions.", "It has a fixed number of states."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "Which of the following is not a part of the 5-tuple representation of an NFA?", "options": ["A finite set of output symbols", "A finite set of input symbols", "A finite set of states", "A transition function"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "In an NFA, the transition function:", "options": ["Maps a state and an output symbol to an input symbol", "Maps a state and an input symbol to a single state", "Maps a state and an input symbol to an output symbol", "Maps a state and an input symbol to multiple states"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "The language accepted by an NFA is:", "options": ["Context-free", "Context-sensitive", "Regular", "Recursively enumerable"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "Which of the following is true about the states of an NFA?", "options": ["Every state must be an accept state", "There can be multiple start states", "There can be exactly one start state", "Every state must be a start state"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "In an NFA, what happens if there is no valid transition for a given input symbol from a particular state?", "options": ["The NFA moves to a random state", "The NFA halts and rejects the input", "The NFA accepts the input", "The NFA nondeterministically chooses an epsilon transition"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "Which of the following is not true for an NFA?", "options": ["It can recognize regular languages", "It has a unique transition for each input symbol from a state", "It has a single start state", "It can have epsilon transitions"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "An NFA can be used to determine if a string:", "options": ["Is in a context-free language", "Is in a context-sensitive language", "Is in a regular language", "Is in a recursively enumerable language"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "Which of the following operations can be performed on regular languages recognized by NFAs?", "options": ["Union", "All of the above", "Complement", "Intersection"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "The NFA for the language {w | w contains at least one ‘a’} over the alphabet {a, b} will have:", "options": ["2 states", "3 states", "1 state", "4 states"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "For an NFA, which of the following statements is false?", "options": ["It has a finite number of states", "It can be represented using a transition table", "It can accept all types of languages", "It can have multiple transitions for a single input symbol"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "The complement of a language recognized by an NFA can be obtained by:", "options": ["Reversing the transitions", "Making the start state an accept state", "Swapping the accept and non-accept states", "Converting the NFA to a DFA and then complementing the DFA"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "Which of the following is necessary for a language to be recognized by an NFA?", "options": ["The language must be regular", "The language must be context-free", "The language must be infinite", "The language must be context-sensitive"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "Which one of the following cannot be recognized by any NFA?", "options": ["Strings with an even number of 0s", "Palindromes", "Strings containing ‘101’ as a substring", "Strings ending with ‘0’"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "An NFA can be minimized by:", "options": ["Adding more transitions", "Adding more states", "Combining equivalent states", "Removing all final states"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "In a minimized NFA, each state represents:", "options": ["A single string", "A single input symbol", "A set of strings", "An epsilon transition"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "The product of two NFAs recognizing languages L1 and L2 will recognize:", "options": ["L1 ∪ L2", "L1 concatenated with L2", "L1 − L2", "L1 ∩ L2"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "An NFA can be converted to:", "options": ["A PDA", "A DFA", "A Turing machine", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "Which of the following is true about the start state of an NFA?", "options": ["It is the state from which the machine starts processing the input", "It can be any state", "It is always an accept state", "It must have at least one incoming transition"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "A language L is recognized by an NFA if and only if:", "options": ["L is context-free", "L is context-sensitive", "L is regular", "L is recursively enumerable"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Non Deterministic Finite Automata Nfa Mcqs", "question": "The transition function of an NFA takes as input:", "options": ["Two input symbols", "A state and an output symbol", "Two states", "A state and an input symbol"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/non-deterministic-finite-automata-nfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "What is the purpose of minimizing a DFA?", "options": ["To reduce the number of input symbols.", "To reduce the number of states.", "To reduce the number of transitions.", "To reduce the length of accepted strings."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "Which of the following steps is part of the DFA minimization process?", "options": ["Removing all states.", "Combining equivalent states.", "Adding new states.", "Removing all transitions."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "The first step in minimizing a DFA is to:", "options": ["Identify unreachable states.", "Identify dead states.", "Combine equivalent states.", "Construct the transition table."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "During DFA minimization, states are considered equivalent if:", "options": ["They have the same number of incoming transitions.", "They have the same number of outgoing transitions.", "They have identical transitions for all input symbols.", "They cannot be distinguished by any string."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "In the process of DFA minimization, a state is considered unreachable if:", "options": ["There are no transitions leading to it.", "It has no outgoing transitions.", "It is not the start state.", "It is not an accept state."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "Which algorithm is commonly used for DFA minimization?", "options": ["Dijkstra’s algorithm", "Floyd–Warshall algorithm", "Hopcroft’s algorithm", "Kruskal’s algorithm"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "The minimization process of a DFA results in:", "options": ["A DFA with the maximum number of states.", "A DFA with a unique start state.", "A DFA with the minimum number of states.", "A DFA with a unique accept state."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "In the minimization of a DFA, when two states are combined, it is important that they:", "options": ["Have the same incoming transitions.", "Have the same outgoing transitions.", "Are both accept states or both non-accept states.", "Are reachable from the start state."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "After removing unreachable states in a DFA, what is the next step in the minimization process?", "options": ["Removing dead states.", "Combining equivalent states.", "Constructing the transition table.", "Adding new states."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "Which of the following is a result of DFA minimization?", "options": ["An NFA with fewer states.", "A DFA with more transitions.", "A minimized DFA that recognizes the same language.", "A context-free grammar."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "When two states are indistinguishable in a DFA, it means:", "options": ["They accept different sets of strings.", "They have different outgoing transitions.", "They cannot be distinguished by any string.", "They have the same incoming transitions."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "The process of minimizing a DFA involves constructing a partition of states. This partition is initially:", "options": ["Divided into reachable and unreachable states.", "Divided into accept and non-accept states.", "Divided based on incoming transitions.", "Divided based on outgoing transitions."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "Which of the following statements is true for a minimized DFA?", "options": ["It has more states than the original DFA.", "It recognizes a different language than the original DFA.", "It has fewer transitions than the original DFA.", "It has the same number of states as the original DFA."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "During the DFA minimization process, a pair of states is repeatedly split until:", "options": ["All states are reachable.", "No further splits are possible.", "All transitions are utilized.", "All states are dead."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "The table-filling method for DFA minimization is used to:", "options": ["Identify unreachable states.", "Identify and mark distinguishable pairs of states.", "Combine equivalent states.", "Add new transitions."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "Which of the following is not affected by the DFA minimization process?", "options": ["The number of states.", "The language recognized by the DFA.", "The number of transitions.", "The alphabet of the DFA."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "After minimizing a DFA, the resulting DFA is:", "options": ["Guaranteed to have exactly one start state and one accept state.", "Guaranteed to have the minimum number of states necessary to recognize the language.", "Guaranteed to have no unreachable states.", "Guaranteed to have the maximum number of states."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "Which of the following best describes an equivalence class in the context of DFA minimization?", "options": ["A set of states that are reachable from each other.", "A set of states that have the same transitions for all input symbols.", "A set of states that cannot be distinguished by any string.", "A set of states that all have the same outgoing transitions."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "A minimized DFA will have:", "options": ["The same number of states as the original DFA.", "Fewer or the same number of states as the original DFA.", "More states than the original DFA.", "Fewer transitions than the original DFA."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "minimization-of-dfa-mcqs", "topic": "minimization-of-dfa-mcqs", "question": "The final partition in the table-filling method represents:", "options": ["The unreachable states.", "The dead states.", "The equivalence classes of the minimized DFA.", "The initial states of the DFA."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/minimization-of-dfa-mcqs/"}
{"subject": "properties-of-regular-languages-mcqs", "topic": "properties-of-regular-languages-mcqs", "question": "Which of the following statements about regular languages is false?", "options": ["Every finite language is regular.", "The concatenation of two regular languages is regular.", "The set of all regular languages is closed under difference.", "The set of all regular languages is closed under homomorphism."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-regular-languages-mcqs/"}
{"subject": "properties-of-regular-languages-mcqs", "topic": "properties-of-regular-languages-mcqs", "question": "If L is a regular language, which of the following is also guaranteed to be regular?", "options": ["The reversal of L", "The intersection of L with a context-free language", "The set of prefixes of strings in L", "The set of suffixes of strings in L"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-regular-languages-mcqs/"}
{"subject": "properties-of-regular-languages-mcqs", "topic": "properties-of-regular-languages-mcqs", "question": "What does the Pumping Lemma for regular languages state?", "options": ["If a language is regular, then there exists a constant such that any string longer than this constant can be divided into three parts satisfying certain conditions.", "If a language is regular, it must contain an infinite number of strings.", "If a language is regular, it must be accepted by some DFA.", "If a language is regular, it can be represented by a regular expression."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-regular-languages-mcqs/"}
{"subject": "properties-of-regular-languages-mcqs", "topic": "properties-of-regular-languages-mcqs", "question": "Which of the following statements is true for regular languages?", "options": ["Regular languages are closed under union, but not under intersection.", "Regular languages are closed under both union and intersection.", "Regular languages are closed under union, but not under complementation.", "Regular languages are closed under neither union nor intersection."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-regular-languages-mcqs/"}
{"subject": "properties-of-regular-languages-mcqs", "topic": "properties-of-regular-languages-mcqs", "question": "If L is a regular language, which of the following is not necessarily regular?", "options": ["The complement of L", "The union of L with another regular language", "The intersection of L with a context-free language", "The set of all strings not in L"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/properties-of-regular-languages-mcqs/"}
{"subject": "deterministic-pda-vs-non-deterministic-pda-mcqs", "topic": "deterministic-pda-vs-non-deterministic-pda-mcqs", "question": "Which of the following statements is true about Deterministic Pushdown Automata (DPDA) and Non-deterministic Pushdown Automata (NPDA)?", "options": ["DPDA can accept all languages accepted by NPDA.", "NPDA can accept all languages accepted by DPDA.", "DPDA and NPDA accept exactly the same languages.", "DPDA and NPDA cannot accept any context-free languages."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-pda-vs-non-deterministic-pda-mcqs/"}
{"subject": "deterministic-pda-vs-non-deterministic-pda-mcqs", "topic": "deterministic-pda-vs-non-deterministic-pda-mcqs", "question": "In a DPDA, for each state and input symbol, there can be at most how many transitions?", "options": ["0", "1", "2", "Unlimited"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-pda-vs-non-deterministic-pda-mcqs/"}
{"subject": "deterministic-pda-vs-non-deterministic-pda-mcqs", "topic": "deterministic-pda-vs-non-deterministic-pda-mcqs", "question": "An NPDA can have multiple transitions from a state on the same input symbol and stack symbol combination due to:", "options": ["Its non-deterministic nature.", "Its stack operations.", "Its acceptance condition.", "Its input alphabet."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-pda-vs-non-deterministic-pda-mcqs/"}
{"subject": "deterministic-pda-vs-non-deterministic-pda-mcqs", "topic": "deterministic-pda-vs-non-deterministic-pda-mcqs", "question": "Which of the following operations is not allowed in a DPDA?", "options": ["Reading an input symbol.", "Pushing a symbol onto the stack.", "Popping a symbol from the stack.", "Non-deterministically choosing a transition."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-pda-vs-non-deterministic-pda-mcqs/"}
{"subject": "deterministic-pda-vs-non-deterministic-pda-mcqs", "topic": "deterministic-pda-vs-non-deterministic-pda-mcqs", "question": "The stack of a DPDA is used to:", "options": ["Store the input symbols.", "Store the current state.", "Implement a Last-In-First-Out (LIFO) structure.", "Implement deterministic transitions."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-pda-vs-non-deterministic-pda-mcqs/"}
{"subject": "deterministic-pda-vs-non-deterministic-pda-mcqs", "topic": "deterministic-pda-vs-non-deterministic-pda-mcqs", "question": "Which of the following is true for NPDA compared to DPDA?", "options": ["NPDA has more states.", "NPDA has fewer transitions.", "NPDA has non-deterministic transitions.", "NPDA has a simpler acceptance condition."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-pda-vs-non-deterministic-pda-mcqs/"}
{"subject": "deterministic-pda-vs-non-deterministic-pda-mcqs", "topic": "deterministic-pda-vs-non-deterministic-pda-mcqs", "question": "The transition function of a DPDA is of the form:", "options": ["δ: Q × Σ × Γ → Q × Γ", "δ: Q × Σ × Γ → P(Q × Γ*)", "δ: Q × Σ × Γ → Q × Γ*", "δ: Q × Σ × Γ → Q"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-pda-vs-non-deterministic-pda-mcqs/"}
{"subject": "deterministic-pda-vs-non-deterministic-pda-mcqs", "topic": "deterministic-pda-vs-non-deterministic-pda-mcqs", "question": "NPDA is more powerful than DPDA because:", "options": ["NPDA can accept non-context-free languages.", "NPDA has a simpler transition function.", "NPDA always uses fewer states.", "NPDA can accept some context-free languages that DPDA cannot."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-pda-vs-non-deterministic-pda-mcqs/"}
{"subject": "deterministic-pda-vs-non-deterministic-pda-mcqs", "topic": "deterministic-pda-vs-non-deterministic-pda-mcqs", "question": "Which of the following properties is true for DPDA but not necessarily for NPDA?", "options": ["Deterministic transitions.", "Non-deterministic transitions.", "Multiple final states.", "Infinite stack capacity."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-pda-vs-non-deterministic-pda-mcqs/"}
{"subject": "deterministic-pda-vs-non-deterministic-pda-mcqs", "topic": "deterministic-pda-vs-non-deterministic-pda-mcqs", "question": "The acceptance of a string by a DPDA is based on:", "options": ["Reaching a final state and emptying the stack.", "Reaching a final state and having a non-empty stack.", "Reaching any state with an empty stack.", "Reaching any state with a non-empty stack."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/deterministic-pda-vs-non-deterministic-pda-mcqs/"}
{"subject": "fa-dfa-nfa-mcqs-questions-answers", "topic": "fa-dfa-nfa-mcqs-questions-answers", "question": "For each symbolic representation of the alphabet, there is only one state transition in?", "options": ["DFA", "NFA", "FA", "All of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/fa-dfa-nfa-mcqs-questions-answers/"}
{"subject": "fa-dfa-nfa-mcqs-questions-answers", "topic": "fa-dfa-nfa-mcqs-questions-answers", "question": "Which of the following cannot use Empty String transition?", "options": ["FA", "NFA", "DFA", "All of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/fa-dfa-nfa-mcqs-questions-answers/"}
{"subject": "fa-dfa-nfa-mcqs-questions-answers", "topic": "fa-dfa-nfa-mcqs-questions-answers", "question": "Which of the following can use Empty String transition?", "options": ["FA", "NFA", "DFA", "All of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/fa-dfa-nfa-mcqs-questions-answers/"}
{"subject": "fa-dfa-nfa-mcqs-questions-answers", "topic": "fa-dfa-nfa-mcqs-questions-answers", "question": "Dead state may be required in which of the following?", "options": ["FA", "NFA", "DFA", "All of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/fa-dfa-nfa-mcqs-questions-answers/"}
{"subject": "fa-dfa-nfa-mcqs-questions-answers", "topic": "fa-dfa-nfa-mcqs-questions-answers", "question": "Dead state is not required in which of the following?", "options": ["FA", "NFA", "DFA", "All of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/fa-dfa-nfa-mcqs-questions-answers/"}
{"subject": "fa-dfa-nfa-mcqs-questions-answers", "topic": "fa-dfa-nfa-mcqs-questions-answers", "question": "The total time needed to run any input string in DFA is ……. than time required in NFA.", "options": ["More", "None of these", "Equal", "Less"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/fa-dfa-nfa-mcqs-questions-answers/"}
{"subject": "fa-dfa-nfa-mcqs-questions-answers", "topic": "fa-dfa-nfa-mcqs-questions-answers", "question": "Which statement is correct about DFA?", "options": ["All DFAs are derived from NFAs.", "All NFAs are derived from DFAs.", "Both can’t be derived from each other", "Both (A) and (B)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/fa-dfa-nfa-mcqs-questions-answers/"}
{"subject": "fa-dfa-nfa-mcqs-questions-answers", "topic": "fa-dfa-nfa-mcqs-questions-answers", "question": "When it is not fixed that with a specific input where to go next on which state, then it is called?", "options": ["DFA", "NFA", "DFSA", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/fa-dfa-nfa-mcqs-questions-answers/"}
{"subject": "fa-dfa-nfa-mcqs-questions-answers", "topic": "fa-dfa-nfa-mcqs-questions-answers", "question": "In which of the following, it’s not mandatory to generate transition for each alphabet in the language from a given state to its final state?", "options": ["DFA", "DFSA", "NFA", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/fa-dfa-nfa-mcqs-questions-answers/"}
{"subject": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "topic": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "question": "Which of the following best describes the role of a Turing machine in the context of language recognition?", "options": ["It recognizes all regular languages.", "It recognizes all context-free languages.", "It recognizes all recursively enumerable languages.", "It recognizes all context-sensitive languages."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/turing-machine-as-a-language-recognizer-and-transducer-mcqs/"}
{"subject": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "topic": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "question": "What is a characteristic feature of a Turing machine compared to a Finite Automaton or Pushdown Automaton?", "options": ["It has an infinite amount of memory.", "It can only recognize regular languages.", "It cannot recognize context-free languages.", "It has a fixed amount of memory."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/turing-machine-as-a-language-recognizer-and-transducer-mcqs/"}
{"subject": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "topic": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "question": "Which aspect of a Turing machine allows it to act as a transducer?", "options": ["Its ability to recognize regular languages", "Its transition function that maps input symbols to output symbols", "Its stack for storing symbols", "Its alphabet of input symbols"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/turing-machine-as-a-language-recognizer-and-transducer-mcqs/"}
{"subject": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "topic": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "question": "True or False: Every Turing machine that recognizes a language can also transduce strings into other strings.", "options": ["True", "False"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/turing-machine-as-a-language-recognizer-and-transducer-mcqs/"}
{"subject": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "topic": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "question": "Which of the following is a correct statement about Turing machines as transducers?", "options": ["They always produce a unique output for every input.", "They are limited to recognizing only regular languages.", "They can modify the input tape during computation.", "They have a finite number of states."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/turing-machine-as-a-language-recognizer-and-transducer-mcqs/"}
{"subject": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "topic": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "question": "In the context of Turing machines, what does the concept of decidability refer to?", "options": ["The ability to determine whether a given string is in the language", "The ability to recognize a language without errors", "The ability to transduce strings between different languages", "The ability to generate all strings in the language"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/turing-machine-as-a-language-recognizer-and-transducer-mcqs/"}
{"subject": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "topic": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "question": "Which of the following is a primary function of the tape head in a Turing machine?", "options": ["To store the input alphabet", "To control the transition between states", "To manage the stack operations", "To read and write symbols on the tape"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/turing-machine-as-a-language-recognizer-and-transducer-mcqs/"}
{"subject": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "topic": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "question": "Which property distinguishes a Turing machine from other automata in terms of computational power?", "options": ["The ability to recognize regular languages", "The use of a stack for temporary storage", "The presence of an infinite tape", "The requirement for a fixed number of states"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/turing-machine-as-a-language-recognizer-and-transducer-mcqs/"}
{"subject": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "topic": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "question": "Which type of Turing machine is capable of producing a sequence of symbols as output during computation?", "options": ["Deterministic Turing machine", "Non-deterministic Turing machine", "Universal Turing machine", "Transducer Turing machine"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/turing-machine-as-a-language-recognizer-and-transducer-mcqs/"}
{"subject": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "topic": "turing-machine-as-a-language-recognizer-and-transducer-mcqs", "question": "What is the primary limitation of Turing machines in practical computation, despite their theoretical power?", "options": ["They can only operate on finite input lengths.", "They require an infinite amount of time to compute any non-trivial function.", "They cannot recognize recursively enumerable languages.", "They are unable to handle real-time data processing."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/turing-machine-as-a-language-recognizer-and-transducer-mcqs/"}
{"subject": "rices-theorem-mcqs", "topic": "rices-theorem-mcqs", "question": "Rice’s theorem states that any non-trivial property of a language accepted by a Turing machine is:", "options": ["Decidable", "Recognizable", "Undecidable", "Context-free"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/rices-theorem-mcqs/"}
{"subject": "rices-theorem-mcqs", "topic": "rices-theorem-mcqs", "question": "A non-trivial property of Turing machines means that it holds for:", "options": ["All Turing machines", "Some Turing machines", "No Turing machines", "Regular languages"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/rices-theorem-mcqs/"}
{"subject": "rices-theorem-mcqs", "topic": "rices-theorem-mcqs", "question": "Which of the following is a consequence of Rice’s theorem?", "options": ["Every Turing machine accepts a regular language.", "Every Turing machine halts on every input.", "Every Turing machine can be simulated by a finite automaton.", "No algorithm can decide whether a Turing machine accepts a non-trivial property."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/rices-theorem-mcqs/"}
{"subject": "rices-theorem-mcqs", "topic": "rices-theorem-mcqs", "question": "Rice’s theorem implies that the problem of determining whether a Turing machine has a property that applies to some Turing machines and not to others is:", "options": ["Decidable", "Undecidable", "Context-free", "Regular"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/rices-theorem-mcqs/"}
{"subject": "rices-theorem-mcqs", "topic": "rices-theorem-mcqs", "question": "The set of all Turing machines that accept the same language forms a:", "options": ["Context-free language", "Regular language", "Decidable set", "Non-trivial property"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/rices-theorem-mcqs/"}
{"subject": "rices-theorem-mcqs", "topic": "rices-theorem-mcqs", "question": "According to Rice’s theorem, the problem of determining whether a Turing machine accepts a language that contains at least one string is:", "options": ["Undecidable", "Decidable", "Context-free", "Regular"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/rices-theorem-mcqs/"}
{"subject": "rices-theorem-mcqs", "topic": "rices-theorem-mcqs", "question": "Which of the following is an example of a non-trivial property of Turing machines?", "options": ["Having a specific number of states", "Halting on all inputs", "Having a finite tape alphabet", "Having a specific transition function"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/rices-theorem-mcqs/"}
{"subject": "rices-theorem-mcqs", "topic": "rices-theorem-mcqs", "question": "The set of Turing machines that accept all strings is:", "options": ["Finite", "Not closed under complement", "Context-free", "Decidable"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/rices-theorem-mcqs/"}
{"subject": "rices-theorem-mcqs", "topic": "rices-theorem-mcqs", "question": "Rice’s theorem applies to:", "options": ["Turing machines", "Context-free grammars", "Deterministic finite automata", "Regular expressions"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/rices-theorem-mcqs/"}
{"subject": "rices-theorem-mcqs", "topic": "rices-theorem-mcqs", "question": "A Turing machine that accepts all strings forms a:", "options": ["Regular language", "Context-free language", "Decidable set", "Trivial property"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/rices-theorem-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Regular Expressions Mcqs Theory Of Automata", "question": "Which strings are valid for the Regular Expression aa(bb)*?", "options": ["bb, bbbb, bbbbbb,…", "abb, abbbb, abbbbbb,…", "aabb, aabbbb, aabbb,…", "aabb, aabbbb, aabbbb,…"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/regular-expressions-mcqs-theory-of-automata/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Regular Expressions Mcqs Theory Of Automata", "question": "Regular Expression for all strings that start with ‘a’, defined over {a, b}:", "options": ["a(a+b)", "a(a+b)*", "a*", "a*(a+b)*"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/regular-expressions-mcqs-theory-of-automata/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Regular Expressions Mcqs Theory Of Automata", "question": "Regular Expression for all strings that start with ab and end with b, defined over {a, b}:", "options": ["ab(a+b)b", "ab(a+b)b", "abb", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/regular-expressions-mcqs-theory-of-automata/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Regular Expressions Mcqs Theory Of Automata", "question": "Regular Expression for all strings having always consecutive a’s, defined over {a, b}:", "options": ["(aa+b)", "aa(b)*", "(aa+b)*", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/regular-expressions-mcqs-theory-of-automata/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Regular Expressions Mcqs Theory Of Automata", "question": "Which one is correct regarding Regular Expressions?", "options": ["We can draw FA for each regular expression.", "We can’t draw FA for some regular expressions.", "Regular Expressions define Regular Languages.", "Both (A) and (C)."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/regular-expressions-mcqs-theory-of-automata/"}
{"subject": "undecidable-languages-and-problems-mcqs", "topic": "undecidable-languages-and-problems-mcqs", "question": "Which of the following statements about undecidable languages is true?", "options": ["Undecidable languages can be recognized by a Turing machine.", "Undecidable languages have a finite number of strings.", "Undecidable languages can be decided by a deterministic finite automaton.", "Undecidable languages cannot be recognized by any Turing machine."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/undecidable-languages-and-problems-mcqs/"}
{"subject": "undecidable-languages-and-problems-mcqs", "topic": "undecidable-languages-and-problems-mcqs", "question": "Which classical problem is known to be undecidable?", "options": ["The Halting Problem", "Sorting an array of integers", "Finding the shortest path in a graph", "Determining if a number is prime"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/undecidable-languages-and-problems-mcqs/"}
{"subject": "undecidable-languages-and-problems-mcqs", "topic": "undecidable-languages-and-problems-mcqs", "question": "True or False: Every recursively enumerable language is decidable.", "options": ["True", "False"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/undecidable-languages-and-problems-mcqs/"}
{"subject": "undecidable-languages-and-problems-mcqs", "topic": "undecidable-languages-and-problems-mcqs", "question": "Which theorem states that the Halting Problem is undecidable?", "options": ["Church-Turing thesis", "Rice’s theorem", "Gödel’s incompleteness theorem", "Myhill-Nerode theorem"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/undecidable-languages-and-problems-mcqs/"}
{"subject": "undecidable-languages-and-problems-mcqs", "topic": "undecidable-languages-and-problems-mcqs", "question": "Which property distinguishes a decidable language from an undecidable one?", "options": ["The ability to be recognized by a Turing machine", "The finite number of strings it contains", "The lack of computational complexity", "The ability to determine membership in finite time"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/undecidable-languages-and-problems-mcqs/"}
{"subject": "undecidable-languages-and-problems-mcqs", "topic": "undecidable-languages-and-problems-mcqs", "question": "In the context of formal languages, what does undecidability imply?", "options": ["The language is not context-free.", "The language has an infinite number of strings.", "The language cannot be recognized by any Turing machine.", "The language can only be recognized by a non-deterministic Turing machine."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/undecidable-languages-and-problems-mcqs/"}
{"subject": "undecidable-languages-and-problems-mcqs", "topic": "undecidable-languages-and-problems-mcqs", "question": "Which approach is commonly used to prove undecidability of a problem?", "options": ["Constructing a deterministic Turing machine", "Showing that the problem has a finite number of solutions", "Reducing the problem to a known undecidable problem", "Using a non-deterministic finite automaton"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/undecidable-languages-and-problems-mcqs/"}
{"subject": "undecidable-languages-and-problems-mcqs", "topic": "undecidable-languages-and-problems-mcqs", "question": "Which statement best describes the Church-Turing thesis in relation to undecidability?", "options": ["It proposes that every computable function is decidable.", "It asserts that there are no undecidable problems.", "It states that every undecidable problem can be solved using a non-deterministic Turing machine.", "It suggests that all decidable languages are recursively enumerable."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/undecidable-languages-and-problems-mcqs/"}
{"subject": "undecidable-languages-and-problems-mcqs", "topic": "undecidable-languages-and-problems-mcqs", "question": "Which of the following is an example of a problem that is undecidable but semi-decidable?", "options": ["Finding the shortest path in a graph", "Determining if two regular expressions are equivalent", "Checking if a number is even", "Recognizing if a Turing machine halts on all inputs"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/undecidable-languages-and-problems-mcqs/"}
{"subject": "undecidable-languages-and-problems-mcqs", "topic": "undecidable-languages-and-problems-mcqs", "question": "Which area of computer science heavily relies on understanding undecidability?", "options": ["Database management", "Artificial intelligence", "Network security", "Software engineering"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/undecidable-languages-and-problems-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linear Bounded Automata Mcqs", "question": "What is a linear-bounded automaton (LBA) primarily used to recognize?", "options": ["Regular languages", "Context-free languages", "Context-sensitive languages", "Recursively enumerable languages"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/linear-bounded-automata-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linear Bounded Automata Mcqs", "question": "How does an LBA differ from a Turing machine (TM)?", "options": ["LBAs have a restricted tape length.", "LBAs have a finite set of states.", "LBAs use a stack for storage.", "LBAs can only recognize regular languages."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/linear-bounded-automata-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linear Bounded Automata Mcqs", "question": "True or False — LBAs can recognize languages that Turing machines cannot recognize.", "options": ["True", "False"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-bounded-automata-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linear Bounded Automata Mcqs", "question": "Which of the following statements about LBAs is true?", "options": ["LBAs can simulate non-deterministic Turing machines.", "LBAs can simulate deterministic finite automata (DFAs).", "LBAs operate with a tape that is linearly bounded in size.", "LBAs are equivalent to pushdown automata."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/linear-bounded-automata-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linear Bounded Automata Mcqs", "question": "In what way are LBAs related to context-sensitive languages?", "options": ["LBAs can recognize all recursively enumerable languages.", "LBAs are less powerful than pushdown automata.", "LBAs are equivalent to regular languages.", "LBAs can recognize all context-sensitive languages."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/linear-bounded-automata-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linear Bounded Automata Mcqs", "question": "Which of the following is a limitation of LBAs compared to Turing machines?", "options": ["LBAs have a smaller tape alphabet.", "LBAs cannot simulate deterministic finite automata.", "LBAs cannot recognize recursively enumerable languages.", "LBAs have a restricted tape length."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/linear-bounded-automata-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linear Bounded Automata Mcqs", "question": "What computational model is LBA most closely related to in terms of power and recognition capability?", "options": ["Finite automaton (FA)", "Pushdown automaton (PDA)", "Non-deterministic Turing machine (NTM)", "Deterministic Turing machine (DTM)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-bounded-automata-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linear Bounded Automata Mcqs", "question": "Which property distinguishes LBAs from Turing machines in terms of computational complexity?", "options": ["LBAs have a finite tape.", "LBAs use a different set of transitions.", "LBAs operate in linear space.", "LBAs have a limited number of states."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/linear-bounded-automata-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linear Bounded Automata Mcqs", "question": "Which of the following languages can be recognized by an LBA?", "options": ["All recursively enumerable languages", "All regular languages", "All context-free languages", "All context-sensitive languages"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/linear-bounded-automata-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Linear Bounded Automata Mcqs", "question": "Which theoretical construct is essential for defining the computational power of LBAs?", "options": ["Halting problem", "Chomsky hierarchy", "Pumping lemma", "P versus NP problem"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/linear-bounded-automata-mcqs/"}
{"subject": "equivalence-of-dfa-and-nfa-mcqs", "topic": "equivalence-of-dfa-and-nfa-mcqs", "question": "Which of the following statements is true about the equivalence of DFA and NFA?", "options": ["Every DFA has an equivalent NFA, but not every NFA has an equivalent DFA.", "Every NFA has an equivalent DFA, but not every DFA has an equivalent NFA.", "Every NFA has an equivalent DFA, and every DFA has an equivalent NFA.", "DFA and NFA are not equivalent."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/equivalence-of-dfa-and-nfa-mcqs/"}
{"subject": "equivalence-of-dfa-and-nfa-mcqs", "topic": "equivalence-of-dfa-and-nfa-mcqs", "question": "Given an NFA with n states, the equivalent DFA will have at most:", "options": ["n states", "2ⁿ states", "n² states", "n + 1 states"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/equivalence-of-dfa-and-nfa-mcqs/"}
{"subject": "equivalence-of-dfa-and-nfa-mcqs", "topic": "equivalence-of-dfa-and-nfa-mcqs", "question": "What is the primary difference between a DFA and an NFA?", "options": ["A DFA can have epsilon transitions, while an NFA cannot.", "An NFA can have multiple transitions for a single input from a given state, while a DFA cannot.", "An NFA accepts different languages than a DFA.", "A DFA can be converted to a Pushdown Automaton, while an NFA cannot."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/equivalence-of-dfa-and-nfa-mcqs/"}
{"subject": "equivalence-of-dfa-and-nfa-mcqs", "topic": "equivalence-of-dfa-and-nfa-mcqs", "question": "Which construction method is used to convert an NFA to an equivalent DFA?", "options": ["Pumping Lemma", "Myhill–Nerode Theorem", "Subset Construction (also known as the Powerset Construction)", "Chomsky Normal Form"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/equivalence-of-dfa-and-nfa-mcqs/"}
{"subject": "equivalence-of-dfa-and-nfa-mcqs", "topic": "equivalence-of-dfa-and-nfa-mcqs", "question": "In the context of DFAs and NFAs, what does it mean for two automata to be equivalent?", "options": ["They have the same number of states.", "They accept the same language.", "They have the same transition function.", "They are in the same class of Chomsky hierarchy."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/equivalence-of-dfa-and-nfa-mcqs/"}
{"subject": "equivalence-of-dfa-and-nfa-mcqs", "topic": "equivalence-of-dfa-and-nfa-mcqs", "question": "Which of the following is not true about converting an NFA to a DFA?", "options": ["The start state of the DFA is the epsilon-closure of the start state of the NFA.", "Each state in the DFA represents a set of states in the NFA.", "The DFA may have more states than the NFA.", "The resulting DFA always has fewer states than the NFA."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/equivalence-of-dfa-and-nfa-mcqs/"}
{"subject": "equivalence-of-dfa-and-nfa-mcqs", "topic": "equivalence-of-dfa-and-nfa-mcqs", "question": "How does nondeterminism in an NFA affect its ability to recognize languages compared to a DFA?", "options": ["It allows the NFA to recognize a broader class of languages.", "It allows the NFA to recognize only a subset of regular languages.", "It does not affect the class of languages the NFA can recognize.", "It restricts the NFA to only recognize finite languages."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/equivalence-of-dfa-and-nfa-mcqs/"}
{"subject": "equivalence-of-dfa-and-nfa-mcqs", "topic": "equivalence-of-dfa-and-nfa-mcqs", "question": "When converting an NFA to a DFA, what does each state in the resulting DFA represent?", "options": ["A single state in the NFA", "A subset of states in the NFA", "A transition in the NFA", "An input symbol in the NFA"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/equivalence-of-dfa-and-nfa-mcqs/"}
{"subject": "equivalence-of-dfa-and-nfa-mcqs", "topic": "equivalence-of-dfa-and-nfa-mcqs", "question": "True or False: Every DFA can be simulated by an NFA.", "options": ["True", "False"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/equivalence-of-dfa-and-nfa-mcqs/"}
{"subject": "equivalence-of-dfa-and-nfa-mcqs", "topic": "equivalence-of-dfa-and-nfa-mcqs", "question": "Which of the following is an advantage of using an NFA over a DFA?", "options": ["NFAs are faster in processing input strings.", "NFAs can recognize a wider range of languages.", "NFAs can be more concise and have fewer states for certain languages.", "NFAs are easier to implement in hardware."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/equivalence-of-dfa-and-nfa-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "A parse tree is:", "options": ["A tree representation of a regular expression.", "A tree that shows how a string is derived from a context-free grammar.", "A tree used in the minimization of DFAs.", "A tree that represents the transitions of a Turing machine."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "In a parse tree, each internal node represents:", "options": ["An input symbol.", "A non-terminal symbol.", "A terminal symbol.", "A state in a DFA."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "In a parse tree, each leaf node represents:", "options": ["An input symbol.", "A non-terminal symbol.", "A terminal symbol.", "A production rule."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "The root of a parse tree represents:", "options": ["The start symbol of the grammar.", "A terminal symbol.", "The first production rule used.", "The last production rule used."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "Which of the following is true about leftmost derivation?", "options": ["It replaces the rightmost non-terminal at each step.", "It replaces the leftmost non-terminal at each step.", "It replaces all non-terminals simultaneously.", "It always leads to a right parse tree."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "Which of the following is true about rightmost derivation?", "options": ["It replaces the rightmost non-terminal at each step.", "It replaces the leftmost non-terminal at each step.", "It replaces all non-terminals simultaneously.", "It always leads to a left parse tree."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "In a parse tree, what does a node with children represent?", "options": ["A terminal symbol.", "A production rule application.", "A start symbol.", "An input string."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "Which of the following statements is true about derivations in context-free grammars?", "options": ["Leftmost and rightmost derivations always yield different parse trees.", "Leftmost and rightmost derivations may yield the same parse tree.", "Leftmost derivations are used only in ambiguous grammars.", "Rightmost derivations are used only in unambiguous grammars."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "Which of the following is a necessary condition for a grammar to be ambiguous?", "options": ["It generates more than one parse tree for some string.", "It generates no parse tree for some string.", "It has left recursion.", "It has right recursion."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "Which of the following grammars is ambiguous?", "options": ["S → aS | ε", "S → aSb | ε", "S → SS | a", "S → aSbS | ε"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "In a context-free grammar, if a string has more than one parse tree, the grammar is:", "options": ["Ambiguous", "Unambiguous", "Regular", "Context-sensitive"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "Which type of derivation is typically used to construct a parse tree?", "options": ["Leftmost derivation", "Rightmost derivation", "Both leftmost and rightmost derivations", "Parallel derivation"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "In a parse tree, if a node has a non-terminal symbol, its children can be:", "options": ["Only terminal symbols.", "Only non-terminal symbols.", "Both terminal and non-terminal symbols.", "Only the start symbol."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "The yield of a parse tree is:", "options": ["The sequence of terminal symbols from the root to the leaves.", "The sequence of non-terminal symbols from the root to the leaves.", "The sequence of terminal symbols from the leftmost leaf to the rightmost leaf.", "The sequence of non-terminal symbols from the leftmost leaf to the rightmost leaf."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "If a context-free grammar is unambiguous, then:", "options": ["Every string in the language has a unique parse tree.", "No string in the language has a parse tree.", "Every string in the language has more than one parse tree.", "The grammar must be left-recursive."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "In a derivation tree (parse tree), an interior node labeled with a non-terminal A and having children labeled with B1, B2, …, Bn represents:", "options": ["The production A → B1B2…Bn", "The production B1B2…Bn → A", "The production A → ε", "The production A → BnB(n-1)…B1"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "Which of the following statements is false about a parse tree?", "options": ["It uniquely represents a derivation of a string.", "It provides a hierarchical structure of the derivation.", "It can have multiple root nodes.", "It can be used to determine if a grammar is ambiguous."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "Which of the following can be used to check the syntax of a programming language?", "options": ["Deterministic Finite Automata", "Pushdown Automata", "Parse Tree", "Regular Expressions"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "In the context of context-free grammars, which of the following is true?", "options": ["Every regular language has a context-free grammar.", "Every context-free language has a regular grammar.", "Every context-free language is unambiguous.", "Every context-free grammar generates a regular language."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "parse-trees-and-derivations-mcqs", "topic": "parse-trees-and-derivations-mcqs", "question": "A derivation in a context-free grammar is called leftmost if:", "options": ["At each step, the leftmost non-terminal is replaced.", "At each step, the rightmost non-terminal is replaced.", "All non-terminals are replaced simultaneously.", "Only terminal symbols are replaced."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parse-trees-and-derivations-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Models Solved Mcqs Questions Answers", "question": "Letters, digits, and symbols are known as", "options": ["Bits", "Characters", "Fields", "Records"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/database-models-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Models Solved Mcqs Questions Answers", "question": "Which behavior allows the database to specify user-defined behavior for database operations?", "options": ["Stationary", "Semantic", "Dynamic", "Triggered"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-models-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Models Solved Mcqs Questions Answers", "question": "Which model concept must be used to describe database structure?", "options": ["Structural", "Server", "Client", "Data"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-models-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Models Solved Mcqs Questions Answers", "question": "DML statements converted to normal procedure calls in the host language are handled by", "options": ["DML Compiler", "DML Precompiler", "DML Executor", "DML Pre Executor"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/database-models-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Models Solved Mcqs Questions Answers", "question": "______ databases are classified to store data for data constraints, data relationships, and data types.", "options": ["Logical Design", "Client Module", "Server Module", "Structure"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-models-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Models Solved Mcqs Questions Answers", "question": "Which diagram is used to represent object-oriented attributes and functions?", "options": ["Functional", "Entity", "Attribute", "Class"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-models-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Models Solved Mcqs Questions Answers", "question": "Considering binary relationships, possible cardinality ratios are", "options": ["One : Two", "1 : N", "M : N", "Both B & C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-models-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Models Solved Mcqs Questions Answers", "question": "The attributes that can be arranged into hierarchy are called", "options": ["Derived", "Atomic", "Composite", "Simple"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-models-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Models Solved Mcqs Questions Answers", "question": "Which feature allows users to update the database?", "options": ["Basic set of operations", "Basic set of modules", "Basic set of design", "Basic set of instructions"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-models-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Models Solved Mcqs Questions Answers", "question": "Which smallest item can assume value 0 or 1 in a computer?", "options": ["Record", "Character", "Field", "Bit"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-models-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Models Solved Mcqs Questions Answers", "question": "Tables may be stored in", "options": ["System", "Files", "Storage", "Records"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/database-models-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Models Solved Mcqs Questions Answers", "question": "Which model uses a collection of tables to represent data relationships?", "options": ["Physical", "View", "Logical", "Relational"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-models-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Models Solved Mcqs Questions Answers", "question": "Java Database Connectivity (JDBC) standard corresponding features provide", "options": ["Java Language", "NET Language", "Structured Query Language", "C Language"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-models-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Models Solved Mcqs Questions Answers", "question": "The code representation used by C++ is", "options": ["ESCII", "ASCII", "BSCII", "PSCII"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/database-models-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Models Solved Mcqs Questions Answers", "question": "A single binary digit is called a", "options": ["Octal", "Decimal", "Hexadecimal", "Bit"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-models-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Models Solved Mcqs Questions Answers", "question": "Which abstraction process suppresses details to highlight important features for understanding storage?", "options": ["Structural", "Data", "Client", "Server"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/database-models-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Models Solved Mcqs Questions Answers", "question": "DML statements will convert through the DML precompiler to normal calls in the", "options": ["Host Language", "Query Language", "Compiler Language", "System Language"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-models-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "DBMS stands for what", "options": ["Database Management System", "Database Master System", "Database Management Structure", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "Database is an organized collection of related………", "options": ["Data", "Modules", "Programs", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "Before use of DBMS information was stored using __________.", "options": ["Cloud Storage", "Data System", "File Management System", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "Keys involved in relationship between tables is called", "options": ["Primary key", "Secondary key", "Foreign key", "A and B"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "The DBMS is the software that interacts with the ……………….and the database.", "options": ["User’s application programs", "User’s system programs", "User’s system database", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "DDL stands for what", "options": ["Database Definition Level", "Data Definition Language", "Data Device Latency", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "DBMS helps achieve", "options": ["Data independence", "Centralized control of data", "Both A and B", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "An advantage of the database management approach is", "options": ["Data is dependent on programs", "Data redundancy increases", "Data is integrated and can be accessed by multiple programs", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "How to write the database schema?", "options": ["HLL", "DML", "DDL", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "Which two files are used during operation of the DBMS", "options": ["Query languages and utilities", "DML and query language", "Data dictionary and transaction log", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "Select which is not an object-based logical model.", "options": ["The infological model", "The entity-relational model", "The binary model", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "Which design is both software and hardware independent?", "options": ["Conceptual", "Physical", "Logical", "Both A and B"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "The Object-based data models are used to define the abstraction __________ level.", "options": ["Only physical", "Physical and conceptual", "Both A and B", "Conceptual and view"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "An abstraction concept for building composite objects from their component objects is known as", "options": ["Aggregation", "Normalization", "Generalization", "Specialization"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "Which type of information is used by the top-level managers?", "options": ["Operational information", "Strategic information", "Both A and B", "Technical information"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "Identify the package that does not belong to DBMS.", "options": ["Ingress", "Unify", "IDMS", "All are DBMS packages"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "A collection of objects that use a common structure and a common behavior is known as", "options": ["Object", "Entity", "Class", "Both A and B"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "The data dictionary tells _________ to the DBMS:", "options": ["What files are in the database", "What these files contain", "What attributes are possessed by the data", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "A relationship among students and courses is", "options": ["M:M relationship", "1:M relationship", "1:1 relationship", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "The database has all of the mentioned components except", "options": ["Users", "Database administrator", "Database", "Separate files"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "The key used for cost-effective data input is", "options": ["Employee motivation", "Validity checks", "Validation", "OCR equipment"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "Complex entities can be formed by the following operation:", "options": ["SUM", "Union", "Collection", "Aggregation"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "Which belongs to metadata?", "options": ["Data dictionary", "Table", "E-R diagram", "View of a database"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "Periodically adding, changing, and deleting file records is known as", "options": ["Renewing", "Upgrading", "Restructuring", "Updating"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "The primitive operations usually applied to all record management systems are", "options": ["Look-up", "Sort", "Print", "All of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Dbms Mcq", "question": "Administrative supervision of a database is the responsibility of", "options": ["DP Administrator", "DP Manager", "DB Manager", "Database Administrator"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/dbms-mcq/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Hadoop Mcqs Big Data Science", "question": ": Who was written Hadoop?", "options": ["Java (software platform)", "Perl", "Lua (programming language)", "Java (programming language)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hadoop-mcqs-big-data-science/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Hadoop Mcqs Big Data Science", "question": ": Hadoop runs on which of the following platforms?", "options": ["Cross-platform", "Debian", "Bare-metal", "Unix-like"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hadoop-mcqs-big-data-science/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Hadoop Mcqs Big Data Science", "question": ": Reliability by replicating data achieves Hadoop across multiple hosts, and then Hadoop does not require ________ storage on hosts.", "options": ["Operating system", "Standard RAID levels", "ZFS", "RAID"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hadoop-mcqs-big-data-science/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Hadoop Mcqs Big Data Science", "question": ": The HBase database includes the Hadoop list, the Apache Mahout ________ system, and matrix operations.", "options": ["Statistical classification", "Pattern recognition", "Machine learning", "Artificial intelligence"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hadoop-mcqs-big-data-science/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Hadoop Mcqs Big Data Science", "question": ": After what was Hadoop named?", "options": ["A sound Cutting’s laptop made during Hadoop development", "Cutting’s high school rock band", "The toy elephant of Cutting’s son", "Creator Doug Cutting’s favorite circus act"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hadoop-mcqs-big-data-science/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Hadoop Mcqs Big Data Science", "question": ": These are the given are completely describe Hadoop, EXCEPT:", "options": ["Open-source", "Real-time", "Distributed computing approach", "Java-based"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hadoop-mcqs-big-data-science/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Hadoop Mcqs Big Data Science", "question": ": The world’s largest Hadoop cluster belongs to:", "options": ["Apple", "Facebook", "Datamatics", "None of the mentioned"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hadoop-mcqs-big-data-science/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Hadoop Mcqs Big Data Science", "question": ": The Big Data tackles at Facebook are based on ________ Hadoop.", "options": ["Project Data", "Prism", "Project Big", "Project Prism"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hadoop-mcqs-big-data-science/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "A preliminary investigation of the required database is called?", "options": ["Feasibility studies", "Data flow diagram", "All of these", "Feasibility study"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The possible inputs for the database are collected by?", "options": ["Data analysis", "Decision tree", "Decision table", "Feasibility study"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "What are the cost factors that are taken into consideration?", "options": ["Project planning", "Dataflow Diagram", "Requirement analysis", "Feasibility study"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "Which tools are involved in the data analysis?", "options": ["Decision tree", "Requirement analysis", "Data Flow Diagram", "A and C both"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The process of identifying the object and relationships between them is called?", "options": ["E-R diagram", "Data modeling", "Data flow diagram", "Both A & B"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "Graphical representations of the relationship between the entities are?", "options": ["Use case", "Flow chart", "E-R diagram", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The ingredient of data modeling is?", "options": ["Relationship", "Attributes", "Classes", "A & B both"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The entity is represented in the E-R diagram?", "options": ["Rectangular box", "Circle", "Diamond", "Filled diamond"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The attribute is represented in the E-R diagram by?", "options": ["Circle", "Diamond", "Oval", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The diamond shape is represented in an E-R diagram?", "options": ["Entity", "Classes", "Relationship", "Attributes"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "In the ERD model, the entity related to itself is referring to?", "options": ["One-to-one relationship", "Many-to-many relationship", "Recursive relationship", "Man-to-one relationship"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The entity and their relationship in an E-R diagram is represented by?", "options": ["Oval symbol", "Filled diamond", "Diamond symbol", "Triangle symbol"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "Which one represents an entity?", "options": ["Teacher", "Table", "Chair", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "That one is not related to an entity?", "options": ["Action", "Teacher", "Person", "Object"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "Person, Parts, chair, table, teacher are example of?", "options": ["An entity", "Attributes", "Class", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "Objects and their attributes are defined by?", "options": ["Attribute", "Classes", "Entity", "Relationship"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "Students name, their roll number, address, father name are an example of?", "options": ["Entities", "Attributes", "Occurrences", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The associate/link entities with one another are represented in?", "options": ["Relationship", "Identifier", "Attributes", "Classes"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "Which one is not the type of relationship?", "options": ["One-to-one", "One-to-many", "Many-to-many", "None of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The example of a one-to-one relationship is?", "options": ["Teacher and student", "Country-capital", "Moon and sun", "Dog and bitch"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "Which one of the following is an example of one to many relationships?", "options": ["Dog and bitch", "Country-capital", "Father and son", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The definition of the nature of Relationship is?", "options": ["Class", "Cardinality", "Modality", "Both B and C"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "In which option is related to Modality?", "options": ["Hybrid", "Optional", "Mandatory", "A & B both"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The mapping of a conceptual database involves in the database development process by:", "options": ["Spiral Model", "Agile model", "Network Model", "Implementation model"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The major objective of the Database designs is?", "options": ["To map conceptual database model to an implementation model", "To draw use case diagram", "To design integration model", "To design the database model"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "What are the activities performed in logical design process?", "options": ["Represent object", "Represents class", "Represents relationship", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The relationship of merging is also called?", "options": ["View E-R model", "View data model", "View integration", "View ERD"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The database organizing on secondary storage is related to?", "options": ["Logical design", "Normalization", "Physical design", "Specialization"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "This component is not the type of physical database design?", "options": ["Generalization", "Specialization", "Normalization", "Integrity constraints"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "In physical database design, the size of the database is estimated in?", "options": ["Indexes", "Normalization", "Data volume & usage analysis", "Integrity constraints"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The component of physical database design is related to the network through which the database is shared among different users are?", "options": ["Data distribution strategy", "Normalization", "Data volume and usage analysis", "Indexes"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "Which one is not related to the data basic distribution strategy?", "options": ["Replicated", "Centralized", "Partitioned", "Duplicated"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "Which one is related to the data basic distribution strategy?", "options": ["Centralized", "Partitioned", "Replicated", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "What strategies the data is located at a single point?", "options": ["Duplicated", "Centralized", "Partitioned", "Replicated"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "On which technique for physically arranging the record of a file on secondary storage is?", "options": ["File organization", "Centralization", "Normalization", "Data distribution"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The creation of indexes may be?", "options": ["Primary key", "Candidate key", "Alternate key", "All of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The _______ component of the physical database design refers to the correctness and consistency of data?", "options": ["Data distribution strategy", "Normalization", "Relationship", "Integrity constraints"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "The integrity constraints components of physical database design is another form of?", "options": ["Data distribution", "Data protection", "Normalization", "Specialization"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Design Process Solved Mcqs Questions Answers", "question": "Which kind of fragment is stored at only one site in hybrid distribution?", "options": ["Noncritical fragment", "Large fragment", "Critical fragment", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-design-process-solved-mcqs-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Mining Solved Mcqs With Answers", "question": "What is the adaptive system management?", "options": ["Machine language techniques", "Machine learning techniques", "Machine procedures techniques", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-mining-solved-mcqs-with-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Mining Solved Mcqs With Answers", "question": "An essential process used for applying intelligent methods to extract the data patterns is named as …", "options": ["Data mining", "Data analysis", "Data implementation", "Data computation"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/data-mining-solved-mcqs-with-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Mining Solved Mcqs With Answers", "question": "Classification and regression are the properties of…", "options": ["Data analysis", "Data manipulation", "Data mining", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-mining-solved-mcqs-with-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Mining Solved Mcqs With Answers", "question": "A class of learning algorithm that tries to find an optimum classification of a set of examples using the probabilistic theory is named as …", "options": ["Bayesian classifiers", "Dijkstra classifiers", "Doppler classifiers", "All of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/data-mining-solved-mcqs-with-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Mining Solved Mcqs With Answers", "question": "Which of the following can be used for finding deep knowledge?", "options": ["Stacks", "Algorithms", "Clues", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-mining-solved-mcqs-with-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Mining Solved Mcqs With Answers", "question": "We define a ______ as a subdivision of a set of examples into a number of classes.", "options": ["Kingdom", "Tree", "Classification", "Array"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-mining-solved-mcqs-with-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Mining Solved Mcqs With Answers", "question": "Group of similar objects that differ significantly from other objects is named as …", "options": ["Classification", "Cluster", "Community", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-mining-solved-mcqs-with-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Mining Solved Mcqs With Answers", "question": "Combining different types of methods or information is …", "options": ["Analysis", "Computation", "Stack", "Hybrid"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/data-mining-solved-mcqs-with-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Mining Solved Mcqs With Answers", "question": "What is the name of a database having a set of databases from different vendors, possibly using different database paradigms?", "options": ["Homogeneous database", "Heterogeneous database", "Hybrid database", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/data-mining-solved-mcqs-with-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Mining Solved Mcqs With Answers", "question": "What is the strategic value of data mining?", "options": ["Design sensitive", "Cost sensitive", "Technical sensitive", "Time sensitive"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/data-mining-solved-mcqs-with-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Mining Solved Mcqs With Answers", "question": "The amount of information within data as opposed to the amount of redundancy or noise is known as …", "options": ["Paragraph content", "Text content", "Information content", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/data-mining-solved-mcqs-with-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Data Mining Solved Mcqs With Answers", "question": "What is inductive learning?", "options": ["Learning by hypothesis", "Learning by analyzing", "None of these", "Learning by generalizing"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/data-mining-solved-mcqs-with-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "When we update any tuple in the relation, which authorization on a relation allows a user to?", "options": ["Select authorization", "Update authorization", "Grant authorization", "Define authorization"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "Grants privileges on SQL authorization mechanism apply to:", "options": ["Entire relation", "Specified tuples", "Specified attributes", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "Implicitly granted privileges to all users are called:", "options": ["Unnatural", "Private", "Natural", "Public"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "Which statement is used to revoke an authorization?", "options": ["Revoke", "Modify", "Alter", "Define"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "The SQL authorization mechanism doesn’t include:", "options": ["Specified attributes", "Specified tuples", "Entire relation", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "True dependencies generated in reflexive rule (IR1) are classified as:", "options": ["Nontrivial", "Inferential", "Functional", "Trivial"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "Rule stating that attributes determine any of its subsets is classified as:", "options": ["Closure rule", "Referential rule", "Reflexive rule", "Inferential rule"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "To represent both data and relationships among tables, the data model used is:", "options": ["Object-based Data model", "Entity-relationship model", "Relational model", "Semi-structured data model"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "Database structured record-based models are named so because of:", "options": ["Fixed format records", "Variable-format records", "Random-format records", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "In database design, the most widely used data model is:", "options": ["Semi-structured data model", "Object-based Data model", "Relational model", "Entity-relationship model"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "The entity-relationship model is mainly used in:", "options": ["Database implementation", "Database design", "Database direction", "Database processing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "The record that contains all data regarding tuples is called:", "options": ["Environment record", "Statement record", "Connection record", "Description record"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "To list types of attributes in a query result, which type of iterator is used?", "options": ["Non-positioned iterator", "Positional iterator", "Named iterator", "Unnamed iterator"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "COBOL and ADA are programming languages classified as:", "options": ["Referential language", "Server language", "Client language", "Host language"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "PMS in procedures stands for:", "options": ["Prepared Storage Module", "Permanent Storage Module", "Persistent Storage Module", "Prepared Statement Module"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "The identification of a procedure name is used as:", "options": ["Initialization", "Arguments", "Attributes", "Values"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "Syntax like formatted and repeat statements are supported by:", "options": ["SQL:2003", "SQL:2000", "SQL:2001", "SQL:1999"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "The full form of CLR is:", "options": ["Computing Language Runtime", "Communication Language Runtime", "Common Language Runtime", "Conditional Language Runtime"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "A non-dense index is:", "options": ["Primary index", "Ternary index", "Secondary index", "Clustering index"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "The first record of any block in a data file is called:", "options": ["Non-dense record", "Anchor record", "Dense record", "None of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "A row in a relational table is known as a:", "options": ["Tuple", "Relation", "Attribute", "Entity field"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "A relation instance in a relational model refers to a specific:", "options": ["Relation attribute", "Relation instance", "Relation entity", "Relation tuple"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "The primary data model used in commercial database systems today is the:", "options": ["Data program application", "Data management applications", "Data storage applications", "Data processing applications"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "Low-level data models are also called:", "options": ["Triggered data models", "Logical data models", "Conceptual data models", "Physical data models"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Database Security Mcqs Solved Questions Answers", "question": "In an E-R diagram, a specialization is represented by a:", "options": ["Dashed arrow-head", "Double arrow-head", "Hollow arrow-head", "Solid arrow-head"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/database-security-mcqs-solved-questions-answers/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Game Theory Mcqs Artificial Intelligence", "question": ": Which of the following is the complexity of minimax algorithm?", "options": ["Same as BFS", "Space – bm and time – bm", "Time – bm and space – bm", "Same as of DFS"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/game-theory-mcqs-artificial-intelligence/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Game Theory Mcqs Artificial Intelligence", "question": ": How many players in a Zero-sum game?", "options": ["Single player", "Two player", "Three player", "Multiplayer"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/game-theory-mcqs-artificial-intelligence/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Game Theory Mcqs Artificial Intelligence", "question": ": We can formally define a game as a type of search problem with the ……… components.", "options": ["Initial State", "Successor Function", "Terminal Test", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/game-theory-mcqs-artificial-intelligence/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Game Theory Mcqs Artificial Intelligence", "question": ": Which of the following is the general algorithm that can be applied on a game tree for deciding win or lose?", "options": ["DFS/BFS Search Algorithms", "MIN/MAX Algorithms", "Greedy Search Algorithms", "Heuristic Search Algorithms"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/game-theory-mcqs-artificial-intelligence/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Game Theory Mcqs Artificial Intelligence", "question": ": General games involve what kind of agents?", "options": ["Single-agent", "Multi-agent", "Only Single-agent and Multi-agent", "Neither Single-agent nor Multi-agent"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/game-theory-mcqs-artificial-intelligence/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Game Theory Mcqs Artificial Intelligence", "question": ": Adversarial search problems use which of the following environment?", "options": ["Only Competitive and Cooperative Environment", "Cooperative Environment", "Neither Competitive nor Cooperative Environment", "Competitive Environment"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/game-theory-mcqs-artificial-intelligence/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Game Theory Mcqs Artificial Intelligence", "question": ": Which of the following for the game can be defined by the initial state and the legal moves for each side?", "options": ["Search Tree", "Forest", "State Space Search", "Game Tree"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/game-theory-mcqs-artificial-intelligence/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "Probability of an event is always:", "options": ["Between 0 and 1", "Greater than 1", "Negative", "Equal to infinity"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "If an event is certain to happen, its probability is:", "options": ["0", "0.5", "Undefined", "1"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "The sum of probabilities of all mutually exclusive and exhaustive events is:", "options": ["0", "1", "Greater than 1", "Undefined"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "Two events A and B are independent if:", "options": ["P(A ∩ B) = P(A) + P(B)", "P(A ∪ B) = P(A) × P(B)", "P(A ∩ B) = P(A) × P(B)", "P(A ∩ B) = 0"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "Conditional probability of A given B is:", "options": ["P(A ∩ B) / P(A)", "P(A ∩ B) / P(B)", "P(A) × P(B)", "P(A) + P(B)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "If P(A) = 0.4, P(B) = 0.5 and A, B are mutually exclusive, then P(A ∪ B) is:", "options": ["0.9", "0.2", "0.4", "0.5"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "Law of total probability is used to:", "options": ["Calculate P(A ∩ B)", "Calculate P(A ∪ B)", "Calculate P(A) when partitioned by mutually exclusive events", "Estimate P(A) directly"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "Bayes’ theorem allows us to:", "options": ["Ignore independence", "Compute marginal probability only", "Compute conditional probability in reverse", "Compute probability of union"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "Probability distribution of a discrete random variable lists:", "options": ["Sample space", "Probabilities of each outcome", "Mean and variance", "Cumulative frequency only"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "A probability density function (PDF) is used for:", "options": ["Continuous random variables", "Discrete random variables", "Both discrete and continuous", "None"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "The expected value E(X) of a random variable X represents:", "options": ["Most frequent value", "Minimum value", "Maximum value", "Weighted average of all possible values"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "Variance of a random variable measures:", "options": ["Central tendency", "Probability of event", "Spread of distribution", "Maximum outcome"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "For independent random variables X and Y, E(X + Y) equals:", "options": ["E(X) × E(Y)", "E(X – Y)", "E(X) + E(Y)", "Var(X) + Var(Y)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "A Bernoulli trial has:", "options": ["Multiple outcomes", "Dependent outcomes", "Continuous outcomes", "Exactly two possible outcomes"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "Binomial distribution models:", "options": ["Number of successes in fixed independent Bernoulli trials", "Time between events", "Continuous measurements", "Sample mean"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "Poisson distribution is used for modeling:", "options": ["Success/failure experiments", "Number of occurrences of an event in a fixed interval", "Continuous uniform events", "Random walks"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "For a uniform random variable X over [a, b], the PDF is:", "options": ["(b – a) for x ∈ [a, b]", "1 / (b – a) for x ∈ [a, b]", "0 for x ∈ [a, b]", "x / (b – a)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "Central Limit Theorem states that:", "options": ["Sample mean approximates population variance", "Population must be normal", "Distribution of sample mean approaches normal for large n", "Sample variance is zero"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "probability-theory-mcqs", "topic": "probability-theory-mcqs", "question": "Independence of events implies:", "options": ["P(A ∩ B) = P(A) + P(B)", "P(A | B) = 0", "P(A ∪ B) = P(A) × P(B)", "P(A ∩ B) = P(A) × P(B)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/probability-theory-mcqs/"}
{"subject": "mcqs-of-arithmetic", "topic": "mcqs-of-arithmetic", "question": "What is the missing number in 2, 3, 5, 7, 11, _, 17?", "options": ["9", "15", "13", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-arithmetic/"}
{"subject": "mcqs-of-arithmetic", "topic": "mcqs-of-arithmetic", "question": "What will be the common difference of the sequence 5, 8, 11, 14, …?", "options": ["3", "4", "1", "0"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-arithmetic/"}
{"subject": "mcqs-of-arithmetic", "topic": "mcqs-of-arithmetic", "question": "This series is called 2, 4, 6, 8, 10, 12, … ?", "options": ["Geometric series", "A.P", "Arithmetic series", "G.P"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-arithmetic/"}
{"subject": "mcqs-of-arithmetic", "topic": "mcqs-of-arithmetic", "question": "What is the fraction of 5%?", "options": ["1/25", "1/20", "1/20", "1/30"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-arithmetic/"}
{"subject": "mcqs-of-arithmetic", "topic": "mcqs-of-arithmetic", "question": "What is the average of 1, 2, 3, 4, 5?", "options": ["3", "5", "4", "0"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-arithmetic/"}
{"subject": "mcqs-of-arithmetic", "topic": "mcqs-of-arithmetic", "question": "Express 10 percent of 100?", "options": ["5", "3", "15", "10"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-arithmetic/"}
{"subject": "mcqs-of-arithmetic", "topic": "mcqs-of-arithmetic", "question": "What is the percentage of 1.09?", "options": ["10.9%", "109%", "1.09%", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-arithmetic/"}
{"subject": "mcqs-of-arithmetic", "topic": "mcqs-of-arithmetic", "question": "What will be the answer to this series (-5) × (-4) × (-3)?", "options": ["180", "60", "-60", "All of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-arithmetic/"}
{"subject": "mcqs-of-arithmetic", "topic": "mcqs-of-arithmetic", "question": "6 + (5 × 42 + 3) is equal to?", "options": ["89", "98", "99", "100"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mcqs-of-arithmetic/"}
{"subject": "maths-mcqs", "topic": "maths-mcqs", "question": "Methods to find L.C.M is/are", "options": ["5", "4", "1", "2"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/maths-mcqs/"}
{"subject": "maths-mcqs", "topic": "maths-mcqs", "question": "What is meant by Prime Numbers?", "options": ["divided by any Number", "divided by Even Numbers", "divided by Number 1 & by itself Number", "divided by Odd Numbers"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/maths-mcqs/"}
{"subject": "maths-mcqs", "topic": "maths-mcqs", "question": "What is the greater of the two if the division of 2 consecutive odd integers gives 0.71 as the result?", "options": ["7", "6", "4", "9"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/maths-mcqs/"}
{"subject": "maths-mcqs", "topic": "maths-mcqs", "question": "Methods to find H.C.F are", "options": ["5", "2", "1", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/maths-mcqs/"}
{"subject": "maths-mcqs", "topic": "maths-mcqs", "question": "Which one is false if an integer R leaves a remainder 5 when it is divided by 8?", "options": ["Number 5 less than R is a multiple of 8.", "When multiplied by 3 R always gives a result which is completely divisible by 2.", "None of these", "All of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/maths-mcqs/"}
{"subject": "maths-mcqs", "topic": "maths-mcqs", "question": "12 inches equal to how many centimeters?", "options": ["30.48", "27", "32.12", "23"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/maths-mcqs/"}
{"subject": "maths-mcqs", "topic": "maths-mcqs", "question": "Simplify 5⁄2 ÷ 1⁄x", "options": ["2 ⁄ 5x", "2x ⁄ 5", "5x ⁄ 2", "5 ⁄ 2x"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/maths-mcqs/"}
{"subject": "maths-mcqs", "topic": "maths-mcqs", "question": "Which is closest to 0.5?", "options": ["1?9", "1?2", "1?3", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/maths-mcqs/"}
{"subject": "maths-mcqs", "topic": "maths-mcqs", "question": "What comes next in the sequence: 2, 4, 10, 28, __?", "options": ["74", "80", "66", "82"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/maths-mcqs/"}
{"subject": "maths-mcqs", "topic": "maths-mcqs", "question": "Who is known as the Father of Calculus?", "options": ["Isaac Newton", "Herodotus", "Aristotle", "Al-Khwarizmi"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/maths-mcqs/"}
{"subject": "maths-mcqs", "topic": "maths-mcqs", "question": "√(6400/22500) =?", "options": ["101021", "5?43", "8?21", "8?15"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/maths-mcqs/"}
{"subject": "biology-solved-multiple-choice-questions-mcqs", "topic": "biology-solved-multiple-choice-questions-mcqs", "question": ": What are the parts of “Brain”?", "options": ["Hind brain", "Fore Brain", "Mid Brain", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/biology-solved-multiple-choice-questions-mcqs/"}
{"subject": "biology-solved-multiple-choice-questions-mcqs", "topic": "biology-solved-multiple-choice-questions-mcqs", "question": ": The Thermoreceptors respond to …..", "options": ["Light", "Cold", "Warmth", "B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/biology-solved-multiple-choice-questions-mcqs/"}
{"subject": "biology-solved-multiple-choice-questions-mcqs", "topic": "biology-solved-multiple-choice-questions-mcqs", "question": ": The Principal Effectors are called …", "options": ["Nerves", "Muscles", "Glands", "B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/biology-solved-multiple-choice-questions-mcqs/"}
{"subject": "biology-solved-multiple-choice-questions-mcqs", "topic": "biology-solved-multiple-choice-questions-mcqs", "question": ": Which of the following includes in RNA virus?", "options": ["Pox virus", "HBV", "Herpes virus", "Influenza virus"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/biology-solved-multiple-choice-questions-mcqs/"}
{"subject": "biology-solved-multiple-choice-questions-mcqs", "topic": "biology-solved-multiple-choice-questions-mcqs", "question": ": Where the Temperate phage may exist?", "options": ["Viron", "Retro virus", "Prophage", "Capsid"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/biology-solved-multiple-choice-questions-mcqs/"}
{"subject": "biology-solved-multiple-choice-questions-mcqs", "topic": "biology-solved-multiple-choice-questions-mcqs", "question": ": The Kingdom Monera is also called ….", "options": ["Archae", "Protista", "Prokaryote", "D and A"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/biology-solved-multiple-choice-questions-mcqs/"}
{"subject": "biology-solved-multiple-choice-questions-mcqs", "topic": "biology-solved-multiple-choice-questions-mcqs", "question": ": Which of the following contains no preventive vaccine is available?", "options": ["HCV", "HAV", "HEV", "HBV"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/biology-solved-multiple-choice-questions-mcqs/"}
{"subject": "biology-solved-multiple-choice-questions-mcqs", "topic": "biology-solved-multiple-choice-questions-mcqs", "question": ": The Nicotine may induce ….", "options": ["Tetanus", "Diarrhea", "Vomiting", "B and C"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/biology-solved-multiple-choice-questions-mcqs/"}
{"subject": "biology-solved-multiple-choice-questions-mcqs", "topic": "biology-solved-multiple-choice-questions-mcqs", "question": ": Which of the following is not a “Steroid”?", "options": ["Glucagon", "Cortisone", "Oestrogens", "Testosterone"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/biology-solved-multiple-choice-questions-mcqs/"}
{"subject": "biology-solved-multiple-choice-questions-mcqs", "topic": "biology-solved-multiple-choice-questions-mcqs", "question": ": What the Prolactin stimulates?", "options": ["Excretion", "Digestion", "Milk production", "Urination"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/biology-solved-multiple-choice-questions-mcqs/"}
{"subject": "biology-solved-multiple-choice-questions-mcqs", "topic": "biology-solved-multiple-choice-questions-mcqs", "question": ": Which of the following one can be protected by vertebral column?", "options": ["Liver", "Brain", "Notochord", "Spinal cord"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/biology-solved-multiple-choice-questions-mcqs/"}
{"subject": "biology-solved-multiple-choice-questions-mcqs", "topic": "biology-solved-multiple-choice-questions-mcqs", "question": ": Where the DNA or RNA of viruses is enclosed in ——— coat?", "options": ["DNA", "Lipids", "Proteins", "Carbohydrates"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/biology-solved-multiple-choice-questions-mcqs/"}
{"subject": "coreldraw-vectorization-mcqs", "topic": "coreldraw-vectorization-mcqs", "question": "How can you adjust the level of detail in a traced vector image in CorelDRAW?", "options": ["All of the above", "Convert the traced object to curves and use the Shape Tool", "Go to Object > Trace > Adjust Detail", "Use the Trace Tool and adjust the detail slider"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-vectorization-mcqs/"}
{"subject": "coreldraw-vectorization-mcqs", "topic": "coreldraw-vectorization-mcqs", "question": "How can you convert a complex logo from a scanned image into a vector graphic in CorelDRAW?", "options": ["All of the above", "Use the Eraser Tool to trace manually", "Convert the image to grayscale", "Use the Auto Trace feature"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-vectorization-mcqs/"}
{"subject": "coreldraw-vectorization-mcqs", "topic": "coreldraw-vectorization-mcqs", "question": "How can you convert a vector object back into a bitmap image in CorelDRAW?", "options": ["Use the Convert Tool", "All of the above", "Use the Crop Tool", "Export the object as a bitmap file"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-vectorization-mcqs/"}
{"subject": "coreldraw-vectorization-mcqs", "topic": "coreldraw-vectorization-mcqs", "question": "How can you edit individual nodes in a traced vector image in CorelDRAW?", "options": ["All of the above", "Use the Shape Tool", "Go to Object > Edit Nodes", "Use the Node Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-vectorization-mcqs/"}
{"subject": "coreldraw-vectorization-mcqs", "topic": "coreldraw-vectorization-mcqs", "question": "How can you simplify a traced vector image in CorelDRAW?", "options": ["Use the Simplify Tool from the Shape menu", "Convert the traced object to curves and delete unnecessary nodes", "Go to Object > Simplify Traced Object", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-vectorization-mcqs/"}
{"subject": "coreldraw-vectorization-mcqs", "topic": "coreldraw-vectorization-mcqs", "question": "What does the ‘Centerline Trace’ feature in CorelDRAW allow you to do?", "options": ["Trace outlines of objects", "Create outlines around objects", "Convert complex images into simple vector shapes", "Trace text and typography"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-vectorization-mcqs/"}
{"subject": "coreldraw-vectorization-mcqs", "topic": "coreldraw-vectorization-mcqs", "question": "What does the ‘Convert Outline to Object’ feature in CorelDRAW allow you to do?", "options": ["Convert vector graphics to bitmap images", "Apply effects to vector outlines", "Convert text into vector outlines", "Convert bitmap images into vector graphics"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-vectorization-mcqs/"}
{"subject": "coreldraw-vectorization-mcqs", "topic": "coreldraw-vectorization-mcqs", "question": "What does the ‘Outline Trace’ feature in CorelDRAW allow you to do?", "options": ["Create an outline around objects", "Convert bitmap images into vector graphics with outlines", "Trace bitmap images with distinct outlines", "Apply a border around vector objects"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-vectorization-mcqs/"}
{"subject": "coreldraw-vectorization-mcqs", "topic": "coreldraw-vectorization-mcqs", "question": "What does the term ‘vectorization’ mean in CorelDRAW?", "options": ["Converting vector graphics to bitmap images", "Applying effects to vector graphics", "Adjusting colors in vector graphics", "Converting bitmap images to vector graphics"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-vectorization-mcqs/"}
{"subject": "coreldraw-vectorization-mcqs", "topic": "coreldraw-vectorization-mcqs", "question": "What is the benefit of using vector graphics over bitmap images for logos and illustrations in CorelDRAW?", "options": ["Vector graphics support more colors", "Bitmap images are easier to edit", "Bitmap images have smaller file sizes", "Vector graphics can be scaled infinitely without loss of quality"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-vectorization-mcqs/"}
{"subject": "coreldraw-vectorization-mcqs", "topic": "coreldraw-vectorization-mcqs", "question": "What is the primary advantage of vector graphics over bitmap images in CorelDRAW?", "options": ["Vector graphics can be edited without losing quality", "Vector graphics have higher resolution", "Bitmap images are smaller in file size", "Bitmap images support transparency"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-vectorization-mcqs/"}
{"subject": "coreldraw-vectorization-mcqs", "topic": "coreldraw-vectorization-mcqs", "question": "What is the purpose of the ‘Enhanced Outline Trace’ feature in CorelDRAW?", "options": ["To convert vector graphics into bitmap images", "To add special effects to vector graphics", "To adjust the color balance of vector graphics", "To improve the accuracy of traced vector graphics"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-vectorization-mcqs/"}
{"subject": "coreldraw-vectorization-mcqs", "topic": "coreldraw-vectorization-mcqs", "question": "Which format is suitable for saving vector graphics in CorelDRAW?", "options": ["PNG", "JPEG", "TIFF", "AI (Adobe Illustrator)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-vectorization-mcqs/"}
{"subject": "coreldraw-vectorization-mcqs", "topic": "coreldraw-vectorization-mcqs", "question": "Which tool in CorelDRAW is used for vectorization of bitmap images?", "options": ["Trace Tool", "Vector Tool", "Convert Tool", "Pick Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-vectorization-mcqs/"}
{"subject": "coreldraw-vectorization-mcqs", "topic": "coreldraw-vectorization-mcqs", "question": "Which tracing method in CorelDRAW is suitable for converting sketches and line drawings into vector graphics?", "options": ["Line Art Trace", "Centerline Trace", "Color Trace", "Outline Trace"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-vectorization-mcqs/"}
{"subject": "coreldraw-colors-and-fills-mcqs", "topic": "coreldraw-colors-and-fills-mcqs", "question": "How can you apply a bitmap fill to an object in CorelDRAW?", "options": ["Use the Fill Tool and select a bitmap from the Bitmap Fill menu", "Convert the object to curves and use the Interactive Fill Tool", "All of the above", "Go to Object > Fill > Bitmap Fill"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-colors-and-fills-mcqs/"}
{"subject": "coreldraw-colors-and-fills-mcqs", "topic": "coreldraw-colors-and-fills-mcqs", "question": "How can you apply a gradient fill to an object in CorelDRAW?", "options": ["Use the Gradient Fill Tool from the toolbox", "All of the above", "Convert the object to curves and apply the gradient using the Interactive Fill Tool", "Select the object and go to Object > Fill > Gradient Fill"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-colors-and-fills-mcqs/"}
{"subject": "coreldraw-colors-and-fills-mcqs", "topic": "coreldraw-colors-and-fills-mcqs", "question": "How can you apply a pattern fill to an object in CorelDRAW?", "options": ["Use the Fill Tool and select a pattern from the Pattern Fill menu", "Convert the object to curves and use the Interactive Fill Tool", "All of the above", "Go to Object > Fill > Pattern Fill"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-colors-and-fills-mcqs/"}
{"subject": "coreldraw-colors-and-fills-mcqs", "topic": "coreldraw-colors-and-fills-mcqs", "question": "How can you change the fill color of an object in CorelDRAW?", "options": ["Use the Fill Tool and click on the object", "Right-click on the object and select \"Change Fill Color\"", "Go to Object > Fill and choose a color", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-colors-and-fills-mcqs/"}
{"subject": "coreldraw-colors-and-fills-mcqs", "topic": "coreldraw-colors-and-fills-mcqs", "question": "How do you remove the fill from an object in CorelDRAW?", "options": ["All of the above", "Use the Fill Tool and click on the \"No Fill\" option", "Right-click on the object and select \"Clear Fill\"", "Select the object and press Delete"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-colors-and-fills-mcqs/"}
{"subject": "coreldraw-colors-and-fills-mcqs", "topic": "coreldraw-colors-and-fills-mcqs", "question": "What does the ‘Outline Pen’ docker allow you to adjust in CorelDRAW?", "options": ["Fill color of objects", "Stroke width and style of outlines", "Gradient fills", "Text formatting"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-colors-and-fills-mcqs/"}
{"subject": "coreldraw-colors-and-fills-mcqs", "topic": "coreldraw-colors-and-fills-mcqs", "question": "What is the purpose of the ‘Color Styles’ docker in CorelDRAW?", "options": ["To manage and apply predefined color combinations", "To adjust the transparency of objects", "To organize layers within a project", "To convert objects to curves"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-colors-and-fills-mcqs/"}
{"subject": "coreldraw-colors-and-fills-mcqs", "topic": "coreldraw-colors-and-fills-mcqs", "question": "What is the purpose of the ‘Eyedropper Tool’ in CorelDRAW?", "options": ["To select text", "To create freehand drawings", "To pick colors from an image or object", "To align objects"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-colors-and-fills-mcqs/"}
{"subject": "coreldraw-colors-and-fills-mcqs", "topic": "coreldraw-colors-and-fills-mcqs", "question": "What is the shortcut key to apply the last used fill or outline in CorelDRAW?", "options": ["Ctrl+F", "Ctrl+G", "Ctrl+Alt+F", "Ctrl+Shift+F"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-colors-and-fills-mcqs/"}
{"subject": "coreldraw-colors-and-fills-mcqs", "topic": "coreldraw-colors-and-fills-mcqs", "question": "What tool in CorelDRAW allows you to apply color to objects?", "options": ["Fill Tool", "Shape Tool", "Pick Tool", "Pen Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-colors-and-fills-mcqs/"}
{"subject": "coreldraw-colors-and-fills-mcqs", "topic": "coreldraw-colors-and-fills-mcqs", "question": "Which color model does CorelDRAW primarily use for color selection?", "options": ["RGB (Red, Green, Blue)", "CMYK (Cyan, Magenta, Yellow, Black)", "All of the above", "HSB (Hue, Saturation, Brightness)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-colors-and-fills-mcqs/"}
{"subject": "coreldraw-colors-and-fills-mcqs", "topic": "coreldraw-colors-and-fills-mcqs", "question": "Which docker allows you to manage and customize colors in CorelDRAW?", "options": ["Layers docker", "Object Manager docker", "Align and Distribute docker", "Swatches docker"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-colors-and-fills-mcqs/"}
{"subject": "coreldraw-colors-and-fills-mcqs", "topic": "coreldraw-colors-and-fills-mcqs", "question": "Which option allows you to adjust the transparency of an object in CorelDRAW?", "options": ["Opacity slider in the Fill Tool options", "Transparency Tool from the toolbox", "Use the Object Manager docker", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-colors-and-fills-mcqs/"}
{"subject": "coreldraw-colors-and-fills-mcqs", "topic": "coreldraw-colors-and-fills-mcqs", "question": "Which option allows you to apply a fountain fill to an object in CorelDRAW?", "options": ["Use the Fountain Fill Tool from the toolbox", "Select the object and go to Object > Fill > Fountain Fill", "All of the above", "Convert the object to curves and apply the fountain using the Interactive Fill Tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-colors-and-fills-mcqs/"}
{"subject": "coreldraw-colors-and-fills-mcqs", "topic": "coreldraw-colors-and-fills-mcqs", "question": "Which tool allows you to interactively adjust the direction and position of a gradient fill in CorelDRAW?", "options": ["Fill Tool", "Eyedropper Tool", "Transparency Tool", "Gradient Fill Tool"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-colors-and-fills-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Coreldraw Web Graphics Mcqs", "question": "How can you create responsive web graphics in CorelDRAW?", "options": ["Use the Responsive Design tool", "Use Flash animations", "Export multiple versions for different screen sizes", "Convert graphics to PNG format"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-web-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Coreldraw Web Graphics Mcqs", "question": "How can you embed videos into web graphics using CorelDRAW?", "options": ["Use the Video Tool", "Insert HTML code", "Use the Animation Wizard", "Convert videos to GIF format"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-web-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Coreldraw Web Graphics Mcqs", "question": "How can you ensure colors in your CorelDRAW project are web-safe?", "options": ["Use CMYK color mode", "Use RGB color mode", "Use Pantone color mode", "Use Grayscale color mode"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-web-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Coreldraw Web Graphics Mcqs", "question": "How can you ensure compatibility of web graphics across different browsers in CorelDRAW?", "options": ["Export as PDF files", "Use only HTML5 graphics", "Test in multiple browsers", "Use Flash animations"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-web-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Coreldraw Web Graphics Mcqs", "question": "How can you optimize text for web graphics in CorelDRAW?", "options": ["Convert text to outlines", "Use web fonts only", "Embed fonts in the exported file", "Use standard system fonts"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-web-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Coreldraw Web Graphics Mcqs", "question": "What does the Web Export Wizard in CorelDRAW help you do?", "options": ["Optimize images for web use", "Preview web graphics in a browser", "Export graphics to HTML format", "Manage web fonts"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-web-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Coreldraw Web Graphics Mcqs", "question": "What is the advantage of using vector graphics for web graphics in CorelDRAW?", "options": ["Smaller file sizes", "Better color accuracy", "Supports more effects", "Faster loading times"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-web-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Coreldraw Web Graphics Mcqs", "question": "What is the purpose of the Web Safe Color palette in CorelDRAW?", "options": ["To create animations", "To optimize images for web use", "To ensure colors are consistent across web browsers", "To edit HTML code"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-web-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Coreldraw Web Graphics Mcqs", "question": "What is the recommended resolution for web graphics in CorelDRAW?", "options": ["300 dpi", "150 dpi", "600 dpi", "72 dpi"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-web-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Coreldraw Web Graphics Mcqs", "question": "Which feature in CorelDRAW allows you to create and manage hyperlinks in web graphics?", "options": ["Interactive Link Tool", "Link Tool", "Web Links Palette", "Hyperlink Manager"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-web-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Coreldraw Web Graphics Mcqs", "question": "Which feature in CorelDRAW allows you to preview how your web graphics will appear in a browser?", "options": ["Web Preview Tool", "Web Safe Tool", "Web Export Tool", "Web Preview Mode"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-web-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Coreldraw Web Graphics Mcqs", "question": "Which file format is commonly used for web graphics and can be exported from CorelDRAW?", "options": ["cdr", "bmp", "ai", "jpg"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-web-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Coreldraw Web Graphics Mcqs", "question": "Which tool in CorelDRAW allows you to create rollover effects for web buttons?", "options": ["Rollover Tool", "Hover Tool", "Web Button Tool", "Interactive Button Tool"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-web-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Coreldraw Web Graphics Mcqs", "question": "Which tool in CorelDRAW allows you to optimize images for web use by adjusting file size and quality?", "options": ["Image Adjustment Tool", "Web Image Tool", "Web Optimizer Tool", "JPEG Export Tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-web-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Coreldraw Web Graphics Mcqs", "question": "Which tool in CorelDRAW allows you to slice and export parts of your design for web use?", "options": ["Web Export Wizard", "Export Tool", "Slice Tool", "Web Slice Tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-web-graphics-mcqs/"}
{"subject": "options-bar-mcqs-adobe-photoshop", "topic": "options-bar-mcqs-adobe-photoshop", "question": "What is the primary function of the Options Bar in Adobe Photoshop?", "options": ["To handle file operations like open, save, and export.", "To manage layer properties.", "To adjust color settings.", "To display tool options and settings for the currently selected tool."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/options-bar-mcqs-adobe-photoshop/"}
{"subject": "options-bar-mcqs-adobe-photoshop", "topic": "options-bar-mcqs-adobe-photoshop", "question": "Where is the Options Bar typically located in the Photoshop interface?", "options": ["At the bottom of the screen.", "On the right side of the screen.", "At the top of the screen.", "On the left side of the screen."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/options-bar-mcqs-adobe-photoshop/"}
{"subject": "options-bar-mcqs-adobe-photoshop", "topic": "options-bar-mcqs-adobe-photoshop", "question": "When selecting the Brush Tool, what can you adjust in the Options Bar?", "options": ["Brush size and hardness.", "Layer opacity.", "Image resolution.", "Color balance."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/options-bar-mcqs-adobe-photoshop/"}
{"subject": "options-bar-mcqs-adobe-photoshop", "topic": "options-bar-mcqs-adobe-photoshop", "question": "Which of the following tools will NOT have settings displayed in the Options Bar?", "options": ["Move Tool.", "Type Tool.", "Pen Tool.", "Navigator Tool."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/options-bar-mcqs-adobe-photoshop/"}
{"subject": "options-bar-mcqs-adobe-photoshop", "topic": "options-bar-mcqs-adobe-photoshop", "question": "When using the Crop Tool, which option in the Options Bar allows you to constrain the crop to a specific aspect ratio?", "options": ["Feather.", "Size.", "Aspect Ratio.", "Width and Height."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/options-bar-mcqs-adobe-photoshop/"}
{"subject": "options-bar-mcqs-adobe-photoshop", "topic": "options-bar-mcqs-adobe-photoshop", "question": "What does the Options Bar display when you select the Text Tool?", "options": ["Blending modes.", "Image filters.", "Layer effects.", "Text size, font, and alignment options."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/options-bar-mcqs-adobe-photoshop/"}
{"subject": "options-bar-mcqs-adobe-photoshop", "topic": "options-bar-mcqs-adobe-photoshop", "question": "If you want to adjust the opacity of a shape drawn with the Shape Tool, where would you find this option?", "options": ["In the Options Bar.", "In the Layers Panel.", "In the Color Picker.", "In the Filter Menu."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/options-bar-mcqs-adobe-photoshop/"}
{"subject": "options-bar-mcqs-adobe-photoshop", "topic": "options-bar-mcqs-adobe-photoshop", "question": "Which option in the Options Bar can be used to change the blending mode of a selected tool?", "options": ["Blending Options.", "Mode.", "Opacity.", "Filter."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/options-bar-mcqs-adobe-photoshop/"}
{"subject": "options-bar-mcqs-adobe-photoshop", "topic": "options-bar-mcqs-adobe-photoshop", "question": "How can you reset the Options Bar to its default settings for a particular tool?", "options": ["Double-click the tool icon in the Toolbar.", "Right-click on the Options Bar and select “Reset Tool.”", "Go to Edit > Preferences > Tools.", "Close and reopen Photoshop."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/options-bar-mcqs-adobe-photoshop/"}
{"subject": "options-bar-mcqs-adobe-photoshop", "topic": "options-bar-mcqs-adobe-photoshop", "question": "What type of information does the Options Bar provide when using the Marquee Tool?", "options": ["Brush presets.", "Feathering, style, and fixed size.", "Layer masks.", "Image adjustments."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/options-bar-mcqs-adobe-photoshop/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Mcqs", "question": ": Erasing of the screen either selective or a part is not possible in …", "options": ["DVST", "SCR", "OCR", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Mcqs", "question": ": Computer graphics are classified as", "options": ["Raster and pixels", "Vector and raster", "Vector and paths", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Mcqs", "question": ": DTP is abbreviated as …", "options": ["Desktop publishing", "Desk town publishing", "Draw top publishing", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Mcqs", "question": ": Complex graphics include which of the following operation?", "options": ["Selection", "Clipping", "Sorting", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Mcqs", "question": ": What happens if the pixels of an image are increased?", "options": ["Blur", "Hide", "Better", "Smaller"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Mcqs", "question": ": Graphic software is a tool used to create", "options": ["Designs", "Images & animated pictures", "Text", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Mcqs", "question": ": Which ink is used in laser printer?", "options": ["Wet", "Solid", "Dry", "None of these above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Mcqs", "question": ": LCD projectors are of how many types?", "options": ["1", "2", "3", "4"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Mcqs", "question": ": Bit map and vector graphics are used for …", "options": ["DRO image file format", "ECR image file format", "EPS image file format", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Mcqs", "question": ": Pixel is defined as", "options": ["Medium sized screen element", "Largest addressable screen element", "Smallest addressable screen element", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Mcqs", "question": ": The fifth major key element in design of multimedia application is …", "options": ["Graphics", "Styling", "Designing", "All of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Computer Graphics Mcqs", "question": ": The most simplest output primitive is …", "options": ["Circle", "Point", "Line", "All of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/computer-graphics-mcqs/"}
{"subject": "coreldraw-basic-shapes-and-lines-mcqs", "topic": "coreldraw-basic-shapes-and-lines-mcqs", "question": "How can you change the number of points on a star created with the Star Tool in CorelDRAW?", "options": ["By double-clicking the star", "By using the Shape Tool and adjusting the nodes", "By holding down the Ctrl key while drawing", "By selecting the star and changing the number of points in the Property Bar"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-basic-shapes-and-lines-mcqs/"}
{"subject": "coreldraw-basic-shapes-and-lines-mcqs", "topic": "coreldraw-basic-shapes-and-lines-mcqs", "question": "How can you draw a star shape in CorelDRAW?", "options": ["Using the Rectangle Tool", "Using the Star Tool", "Using the Polygon Tool", "Using the Ellipse Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-basic-shapes-and-lines-mcqs/"}
{"subject": "coreldraw-basic-shapes-and-lines-mcqs", "topic": "coreldraw-basic-shapes-and-lines-mcqs", "question": "How can you draw a symmetrical polygon in CorelDRAW?", "options": ["Hold down the Ctrl key while using the Freehand Tool", "Hold down the Shift key while using the Polygon Tool", "Hold down the Alt key while using the Ellipse Tool", "Hold down the Ctrl key while using the Polygon Tool"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-basic-shapes-and-lines-mcqs/"}
{"subject": "coreldraw-basic-shapes-and-lines-mcqs", "topic": "coreldraw-basic-shapes-and-lines-mcqs", "question": "How do you create a multi-sided polygon in CorelDRAW?", "options": ["Use the Rectangle Tool and modify the sides", "Use the Freehand Tool and draw each side manually", "Use the Ellipse Tool and convert to polygon", "Use the Polygon Tool and adjust the number of sides"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-basic-shapes-and-lines-mcqs/"}
{"subject": "coreldraw-basic-shapes-and-lines-mcqs", "topic": "coreldraw-basic-shapes-and-lines-mcqs", "question": "How do you create a perfect circle in CorelDRAW?", "options": ["Use the Ellipse Tool while holding down the Alt key", "Use the Ellipse Tool while holding down the Ctrl key", "Use the Ellipse Tool while holding down the Shift key", "Use the Ellipse Tool while holding down the Spacebar"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-basic-shapes-and-lines-mcqs/"}
{"subject": "coreldraw-basic-shapes-and-lines-mcqs", "topic": "coreldraw-basic-shapes-and-lines-mcqs", "question": "What does the ‘Polygon Tool’ allow you to create in CorelDRAW?", "options": ["Polygons and stars", "Circles and ellipses", "Squares and rectangles", "Freehand shapes"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-basic-shapes-and-lines-mcqs/"}
{"subject": "coreldraw-basic-shapes-and-lines-mcqs", "topic": "coreldraw-basic-shapes-and-lines-mcqs", "question": "What does the ‘Smart Drawing Tool’ do in CorelDRAW?", "options": ["Fills objects with color", "Draws only straight lines", "Creates random shapes", "Converts freehand drawings into precise shapes and lines"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-basic-shapes-and-lines-mcqs/"}
{"subject": "coreldraw-basic-shapes-and-lines-mcqs", "topic": "coreldraw-basic-shapes-and-lines-mcqs", "question": "What is the function of the ‘Freehand Tool’ in CorelDRAW?", "options": ["To draw straight lines", "To draw circles and ellipses", "To draw freehand lines and curves", "To draw rectangles and squares"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-basic-shapes-and-lines-mcqs/"}
{"subject": "coreldraw-basic-shapes-and-lines-mcqs", "topic": "coreldraw-basic-shapes-and-lines-mcqs", "question": "What is the shortcut key to select the ‘Rectangle Tool’ in CorelDRAW?", "options": ["F6", "F7", "F8", "F9"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-basic-shapes-and-lines-mcqs/"}
{"subject": "coreldraw-basic-shapes-and-lines-mcqs", "topic": "coreldraw-basic-shapes-and-lines-mcqs", "question": "Which tool allows you to draw curves and straight lines by clicking and dragging in CorelDRAW?", "options": ["Bezier Tool", "Pen Tool", "Freehand Tool", "2-Point Line Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-basic-shapes-and-lines-mcqs/"}
{"subject": "coreldraw-basic-shapes-and-lines-mcqs", "topic": "coreldraw-basic-shapes-and-lines-mcqs", "question": "Which tool in CorelDRAW is used to draw lines between two points?", "options": ["Freehand Tool", "2-Point Line Tool", "Bezier Tool", "Pen Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-basic-shapes-and-lines-mcqs/"}
{"subject": "coreldraw-basic-shapes-and-lines-mcqs", "topic": "coreldraw-basic-shapes-and-lines-mcqs", "question": "Which tool is used to create spirals in CorelDRAW?", "options": ["Bezier Tool", "Spiral Tool", "Pen Tool", "Polyline Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-basic-shapes-and-lines-mcqs/"}
{"subject": "coreldraw-basic-shapes-and-lines-mcqs", "topic": "coreldraw-basic-shapes-and-lines-mcqs", "question": "Which tool is used to draw rectangles and squares in CorelDRAW?", "options": ["Ellipse Tool", "Polygon Tool", "Rectangle Tool", "Freehand Tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-basic-shapes-and-lines-mcqs/"}
{"subject": "coreldraw-basic-shapes-and-lines-mcqs", "topic": "coreldraw-basic-shapes-and-lines-mcqs", "question": "Which tool would you use to create a series of connected straight lines and curves?", "options": ["Polyline Tool", "Pen Tool", "Freehand Tool", "Bezier Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-basic-shapes-and-lines-mcqs/"}
{"subject": "coreldraw-basic-shapes-and-lines-mcqs", "topic": "coreldraw-basic-shapes-and-lines-mcqs", "question": "Which tool would you use to draw an ellipse in CorelDRAW?", "options": ["Rectangle Tool", "Ellipse Tool", "Polygon Tool", "Spiral Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-basic-shapes-and-lines-mcqs/"}
{"subject": "coreldraw-page-layout-and-design-mcqs", "topic": "coreldraw-page-layout-and-design-mcqs", "question": "How can you apply a background color or image to a page in CorelDRAW?", "options": ["Use the Background Tool", "Use the Fill Tool", "Convert the page to curves", "All of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-page-layout-and-design-mcqs/"}
{"subject": "coreldraw-page-layout-and-design-mcqs", "topic": "coreldraw-page-layout-and-design-mcqs", "question": "How can you create bleeds for printing purposes in CorelDRAW?", "options": ["Extend objects beyond the page edge", "Use the Bleed Tool", "Convert pages to bitmap images", "All of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-page-layout-and-design-mcqs/"}
{"subject": "coreldraw-page-layout-and-design-mcqs", "topic": "coreldraw-page-layout-and-design-mcqs", "question": "How can you group and ungroup objects in CorelDRAW for better page organization?", "options": ["Convert objects to curves", "Use the Group and Ungroup commands", "Apply fill colors to objects", "All of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-page-layout-and-design-mcqs/"}
{"subject": "coreldraw-page-layout-and-design-mcqs", "topic": "coreldraw-page-layout-and-design-mcqs", "question": "What does the ‘Align and Distribute’ docker in CorelDRAW allow you to do?", "options": ["Apply color gradients to objects", "Align and arrange objects on the page", "Convert pages to bitmap images", "Add transparency effects to objects"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-page-layout-and-design-mcqs/"}
{"subject": "coreldraw-page-layout-and-design-mcqs", "topic": "coreldraw-page-layout-and-design-mcqs", "question": "What does the ‘Snap to Objects’ feature in CorelDRAW help you achieve in page layout?", "options": ["Align objects to the page grid", "Adjust transparency levels", "Add textures to objects", "Snap objects to other objects for precise alignment"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-page-layout-and-design-mcqs/"}
{"subject": "coreldraw-page-layout-and-design-mcqs", "topic": "coreldraw-page-layout-and-design-mcqs", "question": "What is the benefit of using master pages in CorelDRAW?", "options": ["To add special effects to pages", "To convert pages to bitmap images", "To apply consistent layout elements across multiple pages", "To export pages to other formats"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-page-layout-and-design-mcqs/"}
{"subject": "coreldraw-page-layout-and-design-mcqs", "topic": "coreldraw-page-layout-and-design-mcqs", "question": "What is the purpose of using guidelines in CorelDRAW for page layout?", "options": ["To add color to the page", "To align and position objects accurately", "To apply special effects", "To create gradients"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-page-layout-and-design-mcqs/"}
{"subject": "coreldraw-page-layout-and-design-mcqs", "topic": "coreldraw-page-layout-and-design-mcqs", "question": "What is the purpose of using layers in CorelDRAW for page layout?", "options": ["To adjust the brightness of the page", "To add shadow effects to text", "To organize and manage objects on different levels", "To apply page transitions"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-page-layout-and-design-mcqs/"}
{"subject": "coreldraw-page-layout-and-design-mcqs", "topic": "coreldraw-page-layout-and-design-mcqs", "question": "Which feature in CorelDRAW allows you to check the layout and appearance of pages before printing?", "options": ["Print Preview", "Layout Check", "Proofing Tool", "Page Inspector"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-page-layout-and-design-mcqs/"}
{"subject": "coreldraw-page-layout-and-design-mcqs", "topic": "coreldraw-page-layout-and-design-mcqs", "question": "Which feature in CorelDRAW allows you to create grids and align objects based on the grid?", "options": ["Layout Grid", "Grid Tool", "Align Tool", "Object Grid"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-page-layout-and-design-mcqs/"}
{"subject": "coreldraw-page-layout-and-design-mcqs", "topic": "coreldraw-page-layout-and-design-mcqs", "question": "Which tool in CorelDRAW allows you to create multi-column text layouts?", "options": ["Column Tool", "Text Tool", "Layout Tool", "Paragraph Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-page-layout-and-design-mcqs/"}
{"subject": "coreldraw-page-layout-and-design-mcqs", "topic": "coreldraw-page-layout-and-design-mcqs", "question": "Which tool in CorelDRAW allows you to manage color profiles and ensure consistent colors across pages?", "options": ["Color Tool", "Color Management Tool", "Color Profile Tool", "Color Consistency Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-page-layout-and-design-mcqs/"}
{"subject": "coreldraw-page-layout-and-design-mcqs", "topic": "coreldraw-page-layout-and-design-mcqs", "question": "Which tool in CorelDRAW allows you to set up multiple pages within a single document?", "options": ["Page Setup Tool", "Pages Panel", "Layout Tool", "Artboard Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-page-layout-and-design-mcqs/"}
{"subject": "coreldraw-text-and-typography-mcqs", "topic": "coreldraw-text-and-typography-mcqs", "question": "How can you align text to the left, center, or right within a text frame in CorelDRAW?", "options": ["Using the alignment options in the Property Bar", "Using the Text > Paragraph Formatting menu", "Using the Text > Align Text menu", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-text-and-typography-mcqs/"}
{"subject": "coreldraw-text-and-typography-mcqs", "topic": "coreldraw-text-and-typography-mcqs", "question": "How can you apply a gradient fill to text in CorelDRAW?", "options": ["Both A and B", "Select the text and use the Fill Tool", "Use the Text > Gradient Fill menu", "Convert the text to curves, then use the Interactive Fill Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-text-and-typography-mcqs/"}
{"subject": "coreldraw-text-and-typography-mcqs", "topic": "coreldraw-text-and-typography-mcqs", "question": "How can you convert text to curves in CorelDRAW?", "options": ["Select the text and press Ctrl+Q", "Select the text and go to Arrange > Convert to Curves", "All of the above", "Right-click on the text and choose \"Convert to Curves\""], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-text-and-typography-mcqs/"}
{"subject": "coreldraw-text-and-typography-mcqs", "topic": "coreldraw-text-and-typography-mcqs", "question": "How can you create a drop shadow effect for text in CorelDRAW?", "options": ["Both A and B", "Select the text and go to Effects > Shadow", "Use the Text > Shadow menu", "Select the text and use the Shadow Tool from the toolbox"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-text-and-typography-mcqs/"}
{"subject": "coreldraw-text-and-typography-mcqs", "topic": "coreldraw-text-and-typography-mcqs", "question": "How do you access the ‘Character Formatting’ options for text in CorelDRAW?", "options": ["Both B and C", "Use the Property Bar when text is selected", "Go to Text > Character Formatting", "Right-click on the text and select \"Format Text\""], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-text-and-typography-mcqs/"}
{"subject": "coreldraw-text-and-typography-mcqs", "topic": "coreldraw-text-and-typography-mcqs", "question": "How do you access the ‘Paragraph Formatting’ options in CorelDRAW?", "options": ["Both B and C", "Use the Property Bar when text is selected", "Go to Text > Paragraph Formatting", "Right-click on the text and select \"Format Paragraph\""], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-text-and-typography-mcqs/"}
{"subject": "coreldraw-text-and-typography-mcqs", "topic": "coreldraw-text-and-typography-mcqs", "question": "How do you convert paragraph text to artistic text in CorelDRAW?", "options": ["All of the above", "Use the Text > Convert to Artistic Text menu", "Select the text and press Ctrl+F8", "Right-click the text and select \"Convert to Artistic Text\""], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-text-and-typography-mcqs/"}
{"subject": "coreldraw-text-and-typography-mcqs", "topic": "coreldraw-text-and-typography-mcqs", "question": "What is the purpose of the ‘Baseline Shift’ option in CorelDRAW’s text formatting?", "options": ["To change the font size of selected text", "To adjust the horizontal spacing between words", "To adjust the vertical position of individual characters relative to the baseline", "To change the color of the text"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-text-and-typography-mcqs/"}
{"subject": "coreldraw-text-and-typography-mcqs", "topic": "coreldraw-text-and-typography-mcqs", "question": "What is the shortcut key to bold selected text in CorelDRAW?", "options": ["Ctrl+B", "Ctrl+Shift+B", "Ctrl+I", "Ctrl+U"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-text-and-typography-mcqs/"}
{"subject": "coreldraw-text-and-typography-mcqs", "topic": "coreldraw-text-and-typography-mcqs", "question": "What is the shortcut key to open the ‘Text Properties’ docker in CorelDRAW?", "options": ["Ctrl+P", "Ctrl+Q", "Ctrl+F", "Ctrl+T"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-text-and-typography-mcqs/"}
{"subject": "coreldraw-text-and-typography-mcqs", "topic": "coreldraw-text-and-typography-mcqs", "question": "Which option allows you to adjust the horizontal spacing between characters in a block of text in CorelDRAW?", "options": ["Kerning", "Leading", "Indentation", "Tracking"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-text-and-typography-mcqs/"}
{"subject": "coreldraw-text-and-typography-mcqs", "topic": "coreldraw-text-and-typography-mcqs", "question": "Which option allows you to adjust the spacing between characters in CorelDRAW?", "options": ["Indentation", "Leading", "Tracking", "Kerning"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-text-and-typography-mcqs/"}
{"subject": "coreldraw-text-and-typography-mcqs", "topic": "coreldraw-text-and-typography-mcqs", "question": "Which text property allows you to adjust the space between lines of text in a paragraph?", "options": ["Leading", "Kerning", "Tracking", "Baseline Shift"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-text-and-typography-mcqs/"}
{"subject": "coreldraw-text-and-typography-mcqs", "topic": "coreldraw-text-and-typography-mcqs", "question": "Which tool in CorelDRAW is used to create and edit text?", "options": ["Shape Tool", "Freehand Tool", "Pick Tool", "Text Tool"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-text-and-typography-mcqs/"}
{"subject": "coreldraw-drawing-and-editing-tools-mcqs", "topic": "coreldraw-drawing-and-editing-tools-mcqs", "question": "Which tool in CorelDRAW is used to create rectangles and squares?", "options": ["Ellipse Tool", "Polygon Tool", "Rectangle Tool", "Freehand Tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-drawing-and-editing-tools-mcqs/"}
{"subject": "coreldraw-drawing-and-editing-tools-mcqs", "topic": "coreldraw-drawing-and-editing-tools-mcqs", "question": "What is the primary function of the ‘Shape Tool’ in CorelDRAW?", "options": ["To select objects", "To create text", "To modify the shape of objects", "To fill objects with color"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-drawing-and-editing-tools-mcqs/"}
{"subject": "coreldraw-drawing-and-editing-tools-mcqs", "topic": "coreldraw-drawing-and-editing-tools-mcqs", "question": "Which tool would you use to draw a perfect circle in CorelDRAW?", "options": ["Freehand Tool", "Ellipse Tool with the Ctrl key pressed", "Polygon Tool", "Shape Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-drawing-and-editing-tools-mcqs/"}
{"subject": "coreldraw-drawing-and-editing-tools-mcqs", "topic": "coreldraw-drawing-and-editing-tools-mcqs", "question": "What does the ‘Pen Tool’ allow you to do in CorelDRAW?", "options": ["Draw freehand lines", "Draw straight lines and curves", "Fill objects with color", "Apply text effects"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-drawing-and-editing-tools-mcqs/"}
{"subject": "coreldraw-drawing-and-editing-tools-mcqs", "topic": "coreldraw-drawing-and-editing-tools-mcqs", "question": "Which tool is used to convert a bitmap image to a vector image in CorelDRAW?", "options": ["Shape Tool", "Pick Tool", "Freehand Tool", "PowerTRACE"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-drawing-and-editing-tools-mcqs/"}
{"subject": "coreldraw-drawing-and-editing-tools-mcqs", "topic": "coreldraw-drawing-and-editing-tools-mcqs", "question": "How do you add a node to a curve in CorelDRAW?", "options": ["Select the curve and press Ctrl+N", "Select the curve with the Shape Tool and double-click on the curve", "Use the Pen Tool to click on the curve", "Select the curve and press Ctrl+A"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-drawing-and-editing-tools-mcqs/"}
{"subject": "coreldraw-drawing-and-editing-tools-mcqs", "topic": "coreldraw-drawing-and-editing-tools-mcqs", "question": "Which tool is used to draw polygons and stars in CorelDRAW?", "options": ["Rectangle Tool", "Ellipse Tool", "Polygon Tool", "Spiral Tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-drawing-and-editing-tools-mcqs/"}
{"subject": "coreldraw-drawing-and-editing-tools-mcqs", "topic": "coreldraw-drawing-and-editing-tools-mcqs", "question": "What is the function of the ‘Interactive Blend Tool’ in CorelDRAW?", "options": ["To combine two objects", "To create a series of intermediate objects between two shapes", "To fill objects with gradients", "To align objects"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-drawing-and-editing-tools-mcqs/"}
{"subject": "coreldraw-drawing-and-editing-tools-mcqs", "topic": "coreldraw-drawing-and-editing-tools-mcqs", "question": "Which tool allows you to draw straight lines, curves, and freehand shapes by combining multiple segments?", "options": ["Freehand Tool", "B-Spline Tool", "Polyline Tool", "3-Point Curve Tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-drawing-and-editing-tools-mcqs/"}
{"subject": "coreldraw-drawing-and-editing-tools-mcqs", "topic": "coreldraw-drawing-and-editing-tools-mcqs", "question": "How can you duplicate an object in CorelDRAW?", "options": ["Select the object and press Ctrl+C, Ctrl+V", "Select the object, then drag it while holding down the Ctrl key", "Select the object, then drag it while holding down the Spacebar", "Both A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-drawing-and-editing-tools-mcqs/"}
{"subject": "coreldraw-drawing-and-editing-tools-mcqs", "topic": "coreldraw-drawing-and-editing-tools-mcqs", "question": "Which tool in CorelDRAW is used to fill an object with a mesh fill?", "options": ["Interactive Fill Tool", "Shape Tool", "Mesh Fill Tool", "Interactive Blend Tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-drawing-and-editing-tools-mcqs/"}
{"subject": "coreldraw-drawing-and-editing-tools-mcqs", "topic": "coreldraw-drawing-and-editing-tools-mcqs", "question": "What does the ‘Knife Tool’ in CorelDRAW do?", "options": ["Splits an object into two or more parts", "Combines multiple objects into one", "Rounds the corners of an object", "Adds a shadow to an object"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-drawing-and-editing-tools-mcqs/"}
{"subject": "coreldraw-drawing-and-editing-tools-mcqs", "topic": "coreldraw-drawing-and-editing-tools-mcqs", "question": "Which tool is used to draw spirals in CorelDRAW?", "options": ["Spiral Tool", "Polygon Tool", "Freehand Tool", "Pen Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-drawing-and-editing-tools-mcqs/"}
{"subject": "coreldraw-drawing-and-editing-tools-mcqs", "topic": "coreldraw-drawing-and-editing-tools-mcqs", "question": "Which tool is used to draw perfect straight lines in CorelDRAW?", "options": ["Freehand Tool", "Bezier Tool", "Straight Line Tool", "B-Spline Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-drawing-and-editing-tools-mcqs/"}
{"subject": "tools-panel-mcqs-adobe-photoshop", "topic": "tools-panel-mcqs-adobe-photoshop", "question": "Which tool in Adobe Photoshop is used for painting soft-edged strokes of color?", "options": ["Magic Wand Tool", "Pencil Tool", "Eraser Tool", "Brush Tool"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/tools-panel-mcqs-adobe-photoshop/"}
{"subject": "tools-panel-mcqs-adobe-photoshop", "topic": "tools-panel-mcqs-adobe-photoshop", "question": "What does the Magic Wand Tool in Adobe Photoshop do?", "options": ["Creates vector shapes", "Removes red-eye from photos", "Selects areas of similar color", "Rotates the canvas"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/tools-panel-mcqs-adobe-photoshop/"}
{"subject": "tools-panel-mcqs-adobe-photoshop", "topic": "tools-panel-mcqs-adobe-photoshop", "question": "Which tool in Adobe Photoshop allows you to move a selection or entire layer?", "options": ["Move Tool", "Lasso Tool", "Crop Tool", "Healing Brush Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/tools-panel-mcqs-adobe-photoshop/"}
{"subject": "tools-panel-mcqs-adobe-photoshop", "topic": "tools-panel-mcqs-adobe-photoshop", "question": "What is the primary function of the Crop Tool in Adobe Photoshop?", "options": ["Resize and trim the canvas", "Adjust brightness and contrast", "Select parts of an image", "Add text to the image"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/tools-panel-mcqs-adobe-photoshop/"}
{"subject": "tools-panel-mcqs-adobe-photoshop", "topic": "tools-panel-mcqs-adobe-photoshop", "question": "Which tool would you use to make a freehand selection in Adobe Photoshop?", "options": ["Quick Selection Tool", "Rectangular Marquee Tool", "Pen Tool", "Lasso Tool"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/tools-panel-mcqs-adobe-photoshop/"}
{"subject": "tools-panel-mcqs-adobe-photoshop", "topic": "tools-panel-mcqs-adobe-photoshop", "question": "Which tool in Adobe Photoshop is used to fill an area with a single color?", "options": ["Paint Bucket Tool", "Gradient Tool", "Clone Stamp Tool", "Blur Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/tools-panel-mcqs-adobe-photoshop/"}
{"subject": "tools-panel-mcqs-adobe-photoshop", "topic": "tools-panel-mcqs-adobe-photoshop", "question": "What does the Clone Stamp Tool in Adobe Photoshop do?", "options": ["Changes the color balance", "Blurs the image", "Duplicates part of an image", "Draws straight lines"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/tools-panel-mcqs-adobe-photoshop/"}
{"subject": "tools-panel-mcqs-adobe-photoshop", "topic": "tools-panel-mcqs-adobe-photoshop", "question": "Which tool would you use to remove blemishes and imperfections in an image?", "options": ["Eraser Tool", "Gradient Tool", "Smudge Tool", "Healing Brush Tool"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/tools-panel-mcqs-adobe-photoshop/"}
{"subject": "tools-panel-mcqs-adobe-photoshop", "topic": "tools-panel-mcqs-adobe-photoshop", "question": "What is the function of the Gradient Tool in Adobe Photoshop?", "options": ["Removes the background from an image", "Creates a smooth transition between colors", "Adds text to an image", "Resizes the image"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/tools-panel-mcqs-adobe-photoshop/"}
{"subject": "tools-panel-mcqs-adobe-photoshop", "topic": "tools-panel-mcqs-adobe-photoshop", "question": "Which tool in Adobe Photoshop is used to make precise selections by drawing straight-edged segments?", "options": ["Polygonal Lasso Tool", "Lasso Tool", "Magnetic Lasso Tool", "Quick Selection Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/tools-panel-mcqs-adobe-photoshop/"}
{"subject": "tools-panel-mcqs-adobe-photoshop", "topic": "tools-panel-mcqs-adobe-photoshop", "question": "What does the Eyedropper Tool in Adobe Photoshop do?", "options": ["Zooms into a specific area", "Adds a new layer", "Selects a color from an image", "Crops the image"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/tools-panel-mcqs-adobe-photoshop/"}
{"subject": "tools-panel-mcqs-adobe-photoshop", "topic": "tools-panel-mcqs-adobe-photoshop", "question": "Which tool would you use to create vector shapes in Adobe Photoshop?", "options": ["Eraser Tool", "Brush Tool", "Pen Tool", "Magic Wand Tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/tools-panel-mcqs-adobe-photoshop/"}
{"subject": "tools-panel-mcqs-adobe-photoshop", "topic": "tools-panel-mcqs-adobe-photoshop", "question": "What is the function of the Smudge Tool in Adobe Photoshop?", "options": ["Adds a blur effect", "Blends the pixels in an image", "Duplicates part of an image", "Draws shapes"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/tools-panel-mcqs-adobe-photoshop/"}
{"subject": "tools-panel-mcqs-adobe-photoshop", "topic": "tools-panel-mcqs-adobe-photoshop", "question": "Which tool would you use to draw straight lines or geometric shapes in Adobe Photoshop?", "options": ["Line Tool", "Brush Tool", "Lasso Tool", "Healing Brush Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/tools-panel-mcqs-adobe-photoshop/"}
{"subject": "tools-panel-mcqs-adobe-photoshop", "topic": "tools-panel-mcqs-adobe-photoshop", "question": "What does the Quick Selection Tool in Adobe Photoshop do?", "options": ["Adds filters to an image", "Resizes the canvas", "Draws freehand selections", "Makes selections based on color and texture"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/tools-panel-mcqs-adobe-photoshop/"}
{"subject": "coreldraw-printing-and-exporting-mcqs", "topic": "coreldraw-printing-and-exporting-mcqs", "question": "How can you adjust the resolution of an exported bitmap image in CorelDRAW?", "options": ["Use the Print Setup dialog", "Convert the image to grayscale", "Use the Export Settings dialog", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-printing-and-exporting-mcqs/"}
{"subject": "coreldraw-printing-and-exporting-mcqs", "topic": "coreldraw-printing-and-exporting-mcqs", "question": "How can you ensure that all fonts used in a CorelDRAW document are embedded when exporting for printing?", "options": ["Convert all text to curves", "Use the Embed Fonts option in the export settings", "Convert the document to grayscale", "Use the Print Setup dialog"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-printing-and-exporting-mcqs/"}
{"subject": "coreldraw-printing-and-exporting-mcqs", "topic": "coreldraw-printing-and-exporting-mcqs", "question": "How can you set up bleeds for printing purposes in CorelDRAW?", "options": ["Use the Bleed Tool", "Convert pages to bitmap images", "Extend objects beyond the page edge", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-printing-and-exporting-mcqs/"}
{"subject": "coreldraw-printing-and-exporting-mcqs", "topic": "coreldraw-printing-and-exporting-mcqs", "question": "What does the ‘Separations’ feature in CorelDRAW allow you to do?", "options": ["Create color separations for printing", "Separate different layers of the document", "Apply transparency effects", "Convert objects to grayscale"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-printing-and-exporting-mcqs/"}
{"subject": "coreldraw-printing-and-exporting-mcqs", "topic": "coreldraw-printing-and-exporting-mcqs", "question": "What is the benefit of using the ‘Convert to PDF’ feature in CorelDRAW before printing?", "options": ["To compress file sizes", "To apply special effects", "To ensure compatibility and preserve document formatting", "To convert text to curves"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-printing-and-exporting-mcqs/"}
{"subject": "coreldraw-printing-and-exporting-mcqs", "topic": "coreldraw-printing-and-exporting-mcqs", "question": "What is the benefit of using vector graphics over bitmap images when preparing documents for printing in CorelDRAW?", "options": ["Vector graphics have smaller file sizes", "Vector graphics can be scaled without loss of quality", "Bitmap images support more colors", "Bitmap images are easier to edit"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-printing-and-exporting-mcqs/"}
{"subject": "coreldraw-printing-and-exporting-mcqs", "topic": "coreldraw-printing-and-exporting-mcqs", "question": "What is the purpose of using the Print Preview feature in CorelDRAW?", "options": ["To preview how the document will appear when printed", "To adjust printer settings", "To print documents directly", "To convert documents to PDF format"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-printing-and-exporting-mcqs/"}
{"subject": "coreldraw-printing-and-exporting-mcqs", "topic": "coreldraw-printing-and-exporting-mcqs", "question": "Which file format is recommended for printing high-quality images with no loss of detail in CorelDRAW?", "options": ["JPEG", "TIFF", "PNG", "GIF"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-printing-and-exporting-mcqs/"}
{"subject": "coreldraw-printing-and-exporting-mcqs", "topic": "coreldraw-printing-and-exporting-mcqs", "question": "Which file format is suitable for exporting vector graphics with transparent backgrounds in CorelDRAW?", "options": ["JPEG", "PNG", "TIFF", "BMP"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-printing-and-exporting-mcqs/"}
{"subject": "coreldraw-printing-and-exporting-mcqs", "topic": "coreldraw-printing-and-exporting-mcqs", "question": "Which option in CorelDRAW allows you to select the color profile when exporting documents?", "options": ["Export Options", "Print Settings", "File > Export", "Color Profile Settings"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-printing-and-exporting-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Corel Draw Mcqs For Graphic Designer Job Test", "question": "For cropping, a tool is used called?", "options": ["Zoom tool", "Pick tool", "Knife tool", "Shape tool"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-mcqs-for-graphic-designer-job-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Corel Draw Mcqs For Graphic Designer Job Test", "question": "For displaying a full-screen preview of the drawing or graph, which shortcut key is used?", "options": ["F2", "F9", "F7", "F1"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-mcqs-for-graphic-designer-job-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Corel Draw Mcqs For Graphic Designer Job Test", "question": "If we apply filters to file types, which of the following type will modify?", "options": ["Vector", "Raster", "Animation", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-mcqs-for-graphic-designer-job-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Corel Draw Mcqs For Graphic Designer Job Test", "question": "For toggling snapping objects, a shortcut key is used?", "options": ["Ctrl + j", "Alt + O", "Ctrl + L", "None of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-mcqs-for-graphic-designer-job-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Corel Draw Mcqs For Graphic Designer Job Test", "question": "Which tool is used for selecting and deselecting objects?", "options": ["Freehand tool", "Pick tool", "Bezier tool", "Shape tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-mcqs-for-graphic-designer-job-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Corel Draw Mcqs For Graphic Designer Job Test", "question": "For removing overlapping segments in the objects, a tool is used called?", "options": ["Crop Tool", "Knife", "Eraser", "Virtual Segment Tool"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-mcqs-for-graphic-designer-job-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Corel Draw Mcqs For Graphic Designer Job Test", "question": "For filling the shape with the gradient, a tool is used?", "options": ["Interactive tool -> Square", "Interactive tool -> Linear", "Interactive tool -> Radial", "Interactive tool -> Conical"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-mcqs-for-graphic-designer-job-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Corel Draw Mcqs For Graphic Designer Job Test", "question": "For creating a title, which type of text is mostly used?", "options": ["Freehand", "Artistic", "Paragraph", "Bezier"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-mcqs-for-graphic-designer-job-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Corel Draw Mcqs For Graphic Designer Job Test", "question": "The object is closed and can be known by?", "options": ["It has a line", "It can be filled", "It has nodes", "It has a shape"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-mcqs-for-graphic-designer-job-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Corel Draw Mcqs For Graphic Designer Job Test", "question": "Getting a closer look at an object is allowed by a tool called?", "options": ["Eyedropper", "Zoom", "Pick", "Text"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-mcqs-for-graphic-designer-job-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Corel Draw Mcqs For Graphic Designer Job Test", "question": "If a curve is not closed, it can be identified by?", "options": ["It can be filled with a color", "It is white and not a color", "It cannot be filled", "It is highlighted"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-mcqs-for-graphic-designer-job-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Corel Draw Mcqs For Graphic Designer Job Test", "question": "In the 2D image program, which of the following is not a basic drawing tool?", "options": ["Pencil", "Eyedropper", "Bezier", "Freehand"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-mcqs-for-graphic-designer-job-test/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Corel Draw Mcqs For Graphic Designer Job Test", "question": "In 2D and 3D images, which of the following color models is not used?", "options": ["CMYK", "RGB", "HSV", "LZW"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/corel-draw-mcqs-for-graphic-designer-job-test/"}
{"subject": "coreldraw-bitmaps-and-tracing-mcqs", "topic": "coreldraw-bitmaps-and-tracing-mcqs", "question": "How can you adjust the color balance of a bitmap image in CorelDRAW?", "options": ["All of the above", "Convert the image to grayscale", "Go to Object > Adjust Color Balance", "Use the Color Balance Tool from the Image menu"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-bitmaps-and-tracing-mcqs/"}
{"subject": "coreldraw-bitmaps-and-tracing-mcqs", "topic": "coreldraw-bitmaps-and-tracing-mcqs", "question": "How can you adjust the level of detail in a traced bitmap in CorelDRAW?", "options": ["Convert the traced object to curves and use the Shape Tool", "Use the Trace Tool and adjust the detail slider", "Go to Object > Trace > Adjust Detail", "All of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-bitmaps-and-tracing-mcqs/"}
{"subject": "coreldraw-bitmaps-and-tracing-mcqs", "topic": "coreldraw-bitmaps-and-tracing-mcqs", "question": "How can you adjust the resolution of a bitmap image in CorelDRAW?", "options": ["None of the above", "Convert the image to grayscale", "Export the image to another format", "Use the Resize Tool"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-bitmaps-and-tracing-mcqs/"}
{"subject": "coreldraw-bitmaps-and-tracing-mcqs", "topic": "coreldraw-bitmaps-and-tracing-mcqs", "question": "How can you align a traced object with other vector objects in CorelDRAW?", "options": ["All of the above", "Convert the traced object to curves and adjust manually", "Go to Object > Align Traced Object", "Use the Align and Distribute docker"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-bitmaps-and-tracing-mcqs/"}
{"subject": "coreldraw-bitmaps-and-tracing-mcqs", "topic": "coreldraw-bitmaps-and-tracing-mcqs", "question": "How can you resize a bitmap image without losing quality in CorelDRAW?", "options": ["Export the image to another format", "Use the Crop Tool", "Convert the image to a vector object", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-bitmaps-and-tracing-mcqs/"}
{"subject": "coreldraw-bitmaps-and-tracing-mcqs", "topic": "coreldraw-bitmaps-and-tracing-mcqs", "question": "What does the ‘Anti-Alias’ option do when tracing bitmap images in CorelDRAW?", "options": ["Adds noise to the image", "Smooths jagged edges in the traced image", "Changes the color balance", "Converts the image to grayscale"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-bitmaps-and-tracing-mcqs/"}
{"subject": "coreldraw-bitmaps-and-tracing-mcqs", "topic": "coreldraw-bitmaps-and-tracing-mcqs", "question": "What does the ‘Remove Background’ feature in CorelDRAW allow you to do?", "options": ["Remove unwanted objects from an image", "Remove the white or colored background from bitmap images", "Remove vector objects from a project", "Remove outlines from objects"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-bitmaps-and-tracing-mcqs/"}
{"subject": "coreldraw-bitmaps-and-tracing-mcqs", "topic": "coreldraw-bitmaps-and-tracing-mcqs", "question": "What does the ‘Sharpen’ tool in CorelDRAW allow you to do with bitmap images?", "options": ["Add blur effects", "Increase the sharpness and clarity of images", "Apply gradient fills", "Convert images to grayscale"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-bitmaps-and-tracing-mcqs/"}
{"subject": "coreldraw-bitmaps-and-tracing-mcqs", "topic": "coreldraw-bitmaps-and-tracing-mcqs", "question": "What is the benefit of using vector tracing over directly using bitmap images in CorelDRAW?", "options": ["Vector images are smaller in file size", "Vector images can be scaled without losing quality", "All of the above", "Vector images are easier to edit and modify"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-bitmaps-and-tracing-mcqs/"}
{"subject": "coreldraw-bitmaps-and-tracing-mcqs", "topic": "coreldraw-bitmaps-and-tracing-mcqs", "question": "What is the purpose of the ‘Trace Bitmap’ feature in CorelDRAW?", "options": ["To apply special effects", "To apply filters to bitmap images", "To adjust color balance", "To convert bitmap images into vector graphics"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-bitmaps-and-tracing-mcqs/"}
{"subject": "coreldraw-bitmaps-and-tracing-mcqs", "topic": "coreldraw-bitmaps-and-tracing-mcqs", "question": "What is the purpose of using bitmaps in CorelDRAW?", "options": ["To create vector graphics", "To create gradients", "To apply text effects", "To edit photographs and images"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-bitmaps-and-tracing-mcqs/"}
{"subject": "coreldraw-bitmaps-and-tracing-mcqs", "topic": "coreldraw-bitmaps-and-tracing-mcqs", "question": "Which format is suitable for saving bitmap images with transparent backgrounds in CorelDRAW?", "options": ["JPEG", "TIFF", "BMP", "PNG"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-bitmaps-and-tracing-mcqs/"}
{"subject": "coreldraw-bitmaps-and-tracing-mcqs", "topic": "coreldraw-bitmaps-and-tracing-mcqs", "question": "Which tool in CorelDRAW allows you to crop bitmap images?", "options": ["Pick Tool", "Bitmap Tool", "Crop Tool", "Trace Tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-bitmaps-and-tracing-mcqs/"}
{"subject": "coreldraw-bitmaps-and-tracing-mcqs", "topic": "coreldraw-bitmaps-and-tracing-mcqs", "question": "Which tool in CorelDRAW allows you to import and manipulate bitmap images?", "options": ["Bitmap Tool", "Trace Tool", "Pick Tool", "Image Tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-bitmaps-and-tracing-mcqs/"}
{"subject": "coreldraw-bitmaps-and-tracing-mcqs", "topic": "coreldraw-bitmaps-and-tracing-mcqs", "question": "Which tracing method in CorelDRAW is suitable for converting photos and images with many colors into vector graphics?", "options": ["Outline Trace", "Centerline Trace", "Color Trace", "Line Art Trace"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-bitmaps-and-tracing-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": What does the “Workspace” menu in Adobe Photoshop allow you to do?", "options": ["Change the document size", "Customize and switch between different interface layouts", "Adjust image resolution", "Apply filters to images"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which panel in Adobe Photoshop shows the currently active layer and allows for layer management?", "options": ["Tools Panel", "Color Panel", "Layers Panel", "History Panel"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which menu provides access to commonly used image adjustments and filters in Photoshop?", "options": ["Image Menu", "Layer Menu", "Filter Menu", "View Menu"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": What does the “Panels” option in the workspace allow you to do?", "options": ["Add or remove interface panels", "Adjust the color settings", "Set up image filters", "Change the document resolution"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which tool in Adobe Photoshop is used to select an area of an image based on color similarity?", "options": ["Marquee Tool", "Lasso Tool", "Magic Wand Tool", "Quick Selection Tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which tool allows you to remove unwanted objects from an image by blending the surrounding areas?", "options": ["Clone Stamp Tool", "Healing Brush Tool", "Eraser Tool", "Smudge Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": What is the function of the “Pen Tool” in Photoshop?", "options": ["To draw freehand lines", "To create precise paths and shapes", "To select areas of an image", "To apply brush strokes"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which Photoshop tool allows you to adjust the opacity of a layer?", "options": ["Color Picker", "Opacity Slider in the Layers Panel", "Gradient Tool", "Eraser Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which tool is used to draw basic geometric shapes in Photoshop?", "options": ["Shape Tool", "Line Tool", "Path Tool", "Brush Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": How do you constrain proportions when drawing a shape in Photoshop?", "options": ["Hold Shift while dragging", "Hold Alt while dragging", "Hold Ctrl while dragging", "Hold Spacebar while dragging"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": What is the purpose of the “Direct Selection Tool” in Photoshop?", "options": ["To select whole objects", "To move anchor points and direction handles on a path", "To fill paths with color", "To delete paths"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which option in the “Path” panel allows you to create a new path from selected shapes or text?", "options": ["Convert to Path", "Create New Path", "Add Anchor Points", "Make Work Path"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which text effect option allows you to apply a gradient to text in Photoshop?", "options": ["Gradient Overlay", "Pattern Overlay", "Stroke", "Bevel & Emboss"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": How can you create a new layer in Photoshop?", "options": ["Right-click in the Layers Panel and select “New Layer”", "Use the New Layer button at the bottom of the Layers Panel", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": What does the “Layer Mask” feature do in Photoshop?", "options": ["Adds text to the layer", "Hides parts of the layer without deleting them", "Changes the layer’s color", "Applies a filter to the layer"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which tool is used to fill a selected area with color in Photoshop?", "options": ["Paint Bucket Tool", "Brush Tool", "Gradient Tool", "Eraser Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": How can you access the color picker dialog in Photoshop?", "options": ["Double-click the foreground color swatch in the Tools Panel", "Use the Color Picker Tool in the Tools Panel", "Right-click on the color swatch in the Layers Panel"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which feature allows you to resize and distort an image or layer in Photoshop?", "options": ["Free Transform", "Crop Tool", "Resize Tool", "Transform Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which filter in Photoshop can be used to add a blur effect to an image?", "options": ["Gaussian Blur", "Motion Blur", "Radial Blur", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": What does the “Liquify” filter do in Photoshop?", "options": ["Adjusts color balance", "Creates a texture effect", "Allows you to distort and warp images", "Applies a sharpening effect"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which tool is used for tracing a bitmap image into vector paths in Photoshop?", "options": ["Trace Bitmap Tool", "Vectorize Tool", "Magic Wand Tool", "Image Trace (found in Adobe Illustrator, not Photoshop)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": What is the purpose of using the “Threshold” adjustment in Photoshop?", "options": ["To adjust brightness and contrast", "To convert an image to black and white based on intensity levels", "To apply a color gradient", "To add noise to an image"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which tool in Photoshop is used to create vector shapes?", "options": ["Pen Tool", "Brush Tool", "Clone Stamp Tool", "Smudge Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": What is the primary benefit of using vector graphics in Photoshop?", "options": ["High resolution and clarity at any size", "Ability to create photo-realistic images", "Easy to apply filters and effects", "Provides a wide range of color adjustments"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which panel in Photoshop helps you to arrange multiple pages or layouts in a document?", "options": ["Pages Panel", "Artboards Panel", "Document Setup Panel", "Layout Panel"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": What is the purpose of the “Save for Web” feature in Photoshop?", "options": ["To create high-quality prints", "To optimize images for online use by adjusting quality and file size", "To create vector graphics", "To apply artistic effects to images"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which feature in Photoshop allows you to automate repetitive tasks using recorded actions?", "options": ["Actions Panel", "Scripts Panel", "Automation Panel", "Batch Processing"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which tool in Photoshop allows you to remove background elements from an image?", "options": ["Magic Eraser Tool", "Background Eraser Tool", "Clone Stamp Tool", "Healing Brush Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which tool in Photoshop is used to create interactive web elements like buttons and hotspots?", "options": ["Slice Tool", "Marquee Tool", "Path Tool", "Pen Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": How can you preview the interactive elements of a web design in Photoshop?", "options": ["Use the “Preview in Browser” feature", "Use the “Web Preview” tool", "Check the interactive elements in the “Slice Tool” options", "Save the document and view in a web browser"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which file format is best suited for web graphics with transparent backgrounds?", "options": ["JPEG", "PNG", "GIF", "TIFF"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": What is the purpose of the “Save for Web” option in Photoshop?", "options": ["To optimize and compress images for web use", "To print images at high resolution", "To save images as vector graphics", "To create PDF documents"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Where can you find tutorials and resources for learning Adobe Photoshop?", "options": ["Adobe Help Center", "Photoshop User Forums", "Adobe Creative Cloud Learn and Support", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-user-interface-mcqs", "topic": "coreldraw-user-interface-mcqs", "question": ": Which platform provides access to Adobe Photoshop community forums and discussions?", "options": ["Adobe Community", "Reddit", "Quora", "Stack Overflow"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-user-interface-mcqs/"}
{"subject": "coreldraw-layers-and-object-management-mcqs", "topic": "coreldraw-layers-and-object-management-mcqs", "question": "How can you change the stacking order of objects within a layer in CorelDRAW?", "options": ["Use the Object Manager docker to drag objects up or down", "Right-click on an object and select \"Bring to Front\" or \"Send to Back\"", "Use the Layers docker and drag objects to rearrange", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-layers-and-object-management-mcqs/"}
{"subject": "coreldraw-layers-and-object-management-mcqs", "topic": "coreldraw-layers-and-object-management-mcqs", "question": "How can you create a new layer in CorelDRAW?", "options": ["All of the above", "Go to Object > New Layer", "Use the Layers docker and click on \"Add New Layer\"", "Right-click on an existing layer and select \"New Layer\""], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-layers-and-object-management-mcqs/"}
{"subject": "coreldraw-layers-and-object-management-mcqs", "topic": "coreldraw-layers-and-object-management-mcqs", "question": "How can you lock a layer in CorelDRAW to prevent accidental changes?", "options": ["Right-click on the layer and select \"Lock Layer\"", "Both A and B", "Go to Object > Lock Layer", "Use the Layers docker and click on the lock icon next to the layer"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-layers-and-object-management-mcqs/"}
{"subject": "coreldraw-layers-and-object-management-mcqs", "topic": "coreldraw-layers-and-object-management-mcqs", "question": "How can you move an object to a different layer in CorelDRAW?", "options": ["Drag the object to the desired layer in the Layers docker", "All of the above", "Use the Object Manager docker to assign a new layer", "Right-click on the object and select \"Move to Layer\""], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-layers-and-object-management-mcqs/"}
{"subject": "coreldraw-layers-and-object-management-mcqs", "topic": "coreldraw-layers-and-object-management-mcqs", "question": "How can you select all objects on a specific layer in CorelDRAW?", "options": ["Use the Layers docker and right-click on the layer, then choose \"Select All Objects\"", "Click on the layer in the Layers docker and press Ctrl+A", "Use the Object Manager docker and drag a selection around objects on the layer", "Both A and B"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-layers-and-object-management-mcqs/"}
{"subject": "coreldraw-layers-and-object-management-mcqs", "topic": "coreldraw-layers-and-object-management-mcqs", "question": "How do you delete a layer in CorelDRAW?", "options": ["All of the above", "Use the Layers docker and click on the trash bin icon next to the layer", "Go to Object > Delete Layer", "Right-click on the layer and select \"Delete Layer\""], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-layers-and-object-management-mcqs/"}
{"subject": "coreldraw-layers-and-object-management-mcqs", "topic": "coreldraw-layers-and-object-management-mcqs", "question": "What does the ‘Merge Mode’ option in the Layers docker allow you to do in CorelDRAW?", "options": ["Apply effects to text", "Combine layers together into a single layer", "Convert objects to curves", "Create new layers"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-layers-and-object-management-mcqs/"}
{"subject": "coreldraw-layers-and-object-management-mcqs", "topic": "coreldraw-layers-and-object-management-mcqs", "question": "What does the ‘Show/Hide All Layers’ button in CorelDRAW do?", "options": ["Locks all layers", "Deletes all layers", "Shows or hides all layers at once", "Unlocks all layers"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-layers-and-object-management-mcqs/"}
{"subject": "coreldraw-layers-and-object-management-mcqs", "topic": "coreldraw-layers-and-object-management-mcqs", "question": "What is the purpose of the ‘Create Sublayer’ option in CorelDRAW?", "options": ["To group multiple layers together", "To add a new layer above the selected layer", "To lock a specific part of the drawing", "To create a hierarchy within layers"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-layers-and-object-management-mcqs/"}
{"subject": "coreldraw-layers-and-object-management-mcqs", "topic": "coreldraw-layers-and-object-management-mcqs", "question": "What is the purpose of using layers in CorelDRAW?", "options": ["To organize objects and elements within a project", "To apply effects to text", "To convert objects to curves", "To create gradients"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-layers-and-object-management-mcqs/"}
{"subject": "coreldraw-layers-and-object-management-mcqs", "topic": "coreldraw-layers-and-object-management-mcqs", "question": "What is the shortcut key to hide or show a layer in CorelDRAW?", "options": ["Ctrl+H", "Ctrl+L", "Ctrl+S", "Ctrl+D"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-layers-and-object-management-mcqs/"}
{"subject": "coreldraw-layers-and-object-management-mcqs", "topic": "coreldraw-layers-and-object-management-mcqs", "question": "Which docker in CorelDRAW allows you to manage layers?", "options": ["Objects docker", "Align and Distribute docker", "Layers docker", "Transform docker"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-layers-and-object-management-mcqs/"}
{"subject": "coreldraw-layers-and-object-management-mcqs", "topic": "coreldraw-layers-and-object-management-mcqs", "question": "Which option allows you to duplicate an entire layer in CorelDRAW?", "options": ["Right-click on the layer and select \"Duplicate Layer\"", "Both A and B", "Go to Object > Duplicate Layer", "Use the Layers docker and drag the layer while holding down Ctrl"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-layers-and-object-management-mcqs/"}
{"subject": "coreldraw-layers-and-object-management-mcqs", "topic": "coreldraw-layers-and-object-management-mcqs", "question": "Which option allows you to rename a layer in CorelDRAW?", "options": ["All of the above", "Double-click on the layer name in the Layers docker", "Use the Object Manager docker and click on the layer name", "Right-click on the layer and select \"Rename Layer\""], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-layers-and-object-management-mcqs/"}
{"subject": "coreldraw-layers-and-object-management-mcqs", "topic": "coreldraw-layers-and-object-management-mcqs", "question": "Which tool allows you to select and manipulate objects within a layer in CorelDRAW?", "options": ["Layers Tool", "Shape Tool", "Pick Tool", "Object Manager Tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-layers-and-object-management-mcqs/"}
{"subject": "coreldraw-curves-and-paths-mcqs", "topic": "coreldraw-curves-and-paths-mcqs", "question": "How can you add a node to an existing curve in CorelDRAW?", "options": ["Select the curve with the Shape Tool and double-click on the curve", "Select the curve and press Ctrl+N", "Use the Pen Tool to click on the curve", "Select the curve and press Ctrl+A"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-curves-and-paths-mcqs/"}
{"subject": "coreldraw-curves-and-paths-mcqs", "topic": "coreldraw-curves-and-paths-mcqs", "question": "How can you close an open curve in CorelDRAW?", "options": ["Both B and C", "Select the curve with the Shape Tool and drag the endpoints together", "Select the curve and click on the 'Close Curve' button in the Property Bar", "Select the curve and press Ctrl+W"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-curves-and-paths-mcqs/"}
{"subject": "coreldraw-curves-and-paths-mcqs", "topic": "coreldraw-curves-and-paths-mcqs", "question": "How can you convert a straight line segment into a curve in CorelDRAW?", "options": ["Select the segment with the Pick Tool and double-click", "Select the segment and press Ctrl+C", "Select the segment and press Ctrl+Q", "Select the segment with the Shape Tool and drag the midpoint"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-curves-and-paths-mcqs/"}
{"subject": "coreldraw-curves-and-paths-mcqs", "topic": "coreldraw-curves-and-paths-mcqs", "question": "What does the ‘Join Curves’ command do in CorelDRAW?", "options": ["Splits a curve into multiple segments", "Creates a new curve by blending two existing curves", "Converts curves into straight lines", "Combines two or more curves into a single object"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-curves-and-paths-mcqs/"}
{"subject": "coreldraw-curves-and-paths-mcqs", "topic": "coreldraw-curves-and-paths-mcqs", "question": "What is the function of the ‘Interactive Contour Tool’ in CorelDRAW?", "options": ["To join multiple curves", "To draw freehand lines", "To convert objects to curves", "To create a series of evenly spaced concentric shapes around an object"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-curves-and-paths-mcqs/"}
{"subject": "coreldraw-curves-and-paths-mcqs", "topic": "coreldraw-curves-and-paths-mcqs", "question": "What is the purpose of the ‘Bezier Tool’ in CorelDRAW?", "options": ["To draw freehand shapes", "To create precise curves and straight lines by clicking and dragging", "To draw rectangles and squares", "To fill objects with color"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-curves-and-paths-mcqs/"}
{"subject": "coreldraw-curves-and-paths-mcqs", "topic": "coreldraw-curves-and-paths-mcqs", "question": "What is the purpose of the ‘Convert to Curves’ command in CorelDRAW?", "options": ["To change a shape into a bitmap image", "To join multiple objects into one", "To enable node editing and shape modification", "To convert text into editable shapes"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-curves-and-paths-mcqs/"}
{"subject": "coreldraw-curves-and-paths-mcqs", "topic": "coreldraw-curves-and-paths-mcqs", "question": "What is the shortcut key for converting a selected object to curves in CorelDRAW?", "options": ["Ctrl+C", "Ctrl+Q", "Ctrl+V", "Ctrl+X"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-curves-and-paths-mcqs/"}
{"subject": "coreldraw-curves-and-paths-mcqs", "topic": "coreldraw-curves-and-paths-mcqs", "question": "Which tool allows you to draw freehand lines and automatically smooth out the curves in CorelDRAW?", "options": ["B-Spline Tool", "Freehand Tool", "Pen Tool", "2-Point Line Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-curves-and-paths-mcqs/"}
{"subject": "coreldraw-curves-and-paths-mcqs", "topic": "coreldraw-curves-and-paths-mcqs", "question": "Which tool in CorelDRAW is primarily used to draw curves and straight lines?", "options": ["Freehand Tool", "Shape Tool", "Pen Tool", "Ellipse Tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-curves-and-paths-mcqs/"}
{"subject": "coreldraw-curves-and-paths-mcqs", "topic": "coreldraw-curves-and-paths-mcqs", "question": "Which tool is used to draw symmetrical curves by clicking and dragging in CorelDRAW?", "options": ["Pen Tool", "Bezier Tool", "Symmetrical Tool", "Freehand Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-curves-and-paths-mcqs/"}
{"subject": "coreldraw-curves-and-paths-mcqs", "topic": "coreldraw-curves-and-paths-mcqs", "question": "Which tool is used to modify the shape of curves and lines by adjusting nodes and control handles?", "options": ["Pick Tool", "Freehand Tool", "Shape Tool", "Pen Tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-curves-and-paths-mcqs/"}
{"subject": "coreldraw-curves-and-paths-mcqs", "topic": "coreldraw-curves-and-paths-mcqs", "question": "Which tool would you use to create a series of connected straight lines and curves in CorelDRAW?", "options": ["Polyline Tool", "Bezier Tool", "Freehand Tool", "Shape Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-curves-and-paths-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "What does the Interactive Artistic Media Tool do in CorelDRAW?", "options": ["Applies special effects to text", "Adds brush strokes and effects", "Creates complex blends", "Distorts and warps shapes"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "What does the Interactive Blend Tool do in CorelDRAW?", "options": ["Creates interactive charts and graphs", "Blends colors and shapes smoothly", "Applies special effects to text", "Adds shadows and highlights to objects"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "What does the Interactive Contour Tool do in CorelDRAW?", "options": ["Smooths jagged edges", "Creates interactive charts and graphs", "Distorts and reshapes objects", "Adds a border around objects"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "What does the Interactive Eraser Tool do in CorelDRAW?", "options": ["Applies transparency effects", "Distorts and smudges objects", "Erases parts of objects", "Creates blends between objects"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "What does the Interactive Fill tool allow you to do in CorelDRAW?", "options": ["Apply transparency effects to objects", "Apply interactive lighting effects", "Apply 3D effects to objects", "Apply gradients and patterns to objects"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "What does the Interactive Smudge Tool do in CorelDRAW?", "options": ["Applies blur and sharpen effects", "Applies transparency effects", "Applies 3D effects to objects", "Distorts and smudges objects"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "What is the function of the Interactive Knife Tool in CorelDRAW?", "options": ["Cuts shapes into pieces", "Applies soft shadows", "Applies 3D effects", "Creates blends between objects"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "What is the purpose of the Interactive Drop Shadow tool in CorelDRAW?", "options": ["To apply a soft shadow behind objects", "To create perspective effects", "To distort and reshape objects", "To add 3D effects to objects"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "What is the purpose of the Interactive Perspective Tool in CorelDRAW?", "options": ["To create perspective distortions", "To apply 3D effects to objects", "To apply interactive lighting effects", "To warp and bend objects"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "What is the purpose of the Interactive Spiral Tool in CorelDRAW?", "options": ["To create complex blends", "To distort and reshape objects", "To apply 3D effects", "To create spirals and twists"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "Which tool allows you to apply interactive transparency and adjust its intensity in CorelDRAW?", "options": ["Interactive Transparency Tool", "Interactive Mesh Tool", "Interactive Distortion Tool", "Interactive Fill Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "Which tool allows you to create and edit complex blends between objects in CorelDRAW?", "options": ["Interactive Blend Tool", "Interactive Extrude Tool", "Interactive Perspective Tool", "Interactive Distortion Tool"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "Which tool allows you to create interactive charts and graphs based on data in CorelDRAW?", "options": ["Interactive Graph Tool", "Interactive Chart Tool", "Interactive Data Tool", "Interactive Plot Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "Which tool in CorelDRAW allows you to apply a mesh fill and interactively adjust its nodes?", "options": ["Interactive Blend Tool", "Interactive Fill Tool", "Interactive Mesh Tool", "Interactive Artistic Media Tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "Which tool in CorelDRAW allows you to interactively adjust the size and shape of objects?", "options": ["Interactive Reshape Tool", "Interactive Transform Tool", "Interactive Scale Tool", "Interactive Rotate Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "Which tool in CorelDRAW allows you to interactively apply and adjust color adjustments to objects?", "options": ["Interactive Color Balance Tool", "Interactive Hue Tool", "Interactive Saturation Tool", "Interactive Color Tool"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "Which tool in CorelDRAW allows you to interactively apply brush strokes and effects?", "options": ["Interactive Brush Tool", "Interactive Artistic Tool", "Interactive Paint Tool", "Interactive Drawing Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "Which tool in CorelDRAW allows you to interactively edit the nodes and curves of shapes?", "options": ["Interactive Shape Tool", "Interactive Node Tool", "Interactive Edit Tool", "Interactive Curve Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "Which tool in CorelDRAW allows you to reshape and distort objects interactively?", "options": ["Interactive Fill Tool", "Interactive Distortion Tool", "Interactive Transparency Tool", "Interactive Envelope Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "coreldraw-interactive-tools-mcqs", "topic": "coreldraw-interactive-tools-mcqs", "question": "Which tool in CorelDRAW lets you interactively apply and adjust bitmap effects such as blur and sharpen?", "options": ["Interactive Bitmap Tool", "Interactive Effect Tool", "Interactive Artistic Tool", "Interactive Image Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-interactive-tools-mcqs/"}
{"subject": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "topic": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "question": "Which panel in Adobe Photoshop allows you to view and manipulate individual color channels of an image?", "options": ["Layers", "Channels", "Paths", "History"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop/"}
{"subject": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "topic": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "question": "In Photoshop, which panel displays a list of all actions performed on an image during the current editing session?", "options": ["Layers", "Channels", "History", "Paths"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop/"}
{"subject": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "topic": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "question": "Which panel in Photoshop provides access to various saved selections and paths in an image?", "options": ["Layers", "Channels", "Paths", "History"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop/"}
{"subject": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "topic": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "question": "Which panel allows you to organize and manage different elements of your project, such as images, text, and adjustment layers?", "options": ["History", "Channels", "Paths", "Layers"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop/"}
{"subject": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "topic": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "question": "Which panel in Photoshop is primarily used for managing and applying adjustments to color, brightness, and contrast?", "options": ["Layers", "Channels", "History", "Adjustments"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop/"}
{"subject": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "topic": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "question": "In Photoshop, which panel allows you to manage and apply different blending modes to layers?", "options": ["Layers", "Blending Modes", "Paths", "Channels"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop/"}
{"subject": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "topic": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "question": "Which panel allows you to toggle the visibility of different layers in your Photoshop document?", "options": ["Paths", "Channels", "Layers", "History"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop/"}
{"subject": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "topic": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "question": "Which panel provides access to various preset shapes and custom shapes that can be used in your Photoshop projects?", "options": ["Layers", "Channels", "Paths", "Shapes"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop/"}
{"subject": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "topic": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "question": "Which panel in Photoshop allows you to manage and apply different brush settings and presets?", "options": ["Layers", "Channels", "Brush Settings", "History"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop/"}
{"subject": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "topic": "panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop", "question": "In Photoshop, which panel allows you to manage and apply different text formatting options?", "options": ["Layers", "Channels", "History", "Character"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/panels-layers-channels-paths-history-etc-mcqs-adobe-photoshop/"}
{"subject": "workspace-layout-mcqs-adobe-photoshop", "topic": "workspace-layout-mcqs-adobe-photoshop", "question": "Which of the following is the default workspace in Adobe Photoshop?", "options": ["3D", "Photography", "Painting", "Essentials"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/workspace-layout-mcqs-adobe-photoshop/"}
{"subject": "workspace-layout-mcqs-adobe-photoshop", "topic": "workspace-layout-mcqs-adobe-photoshop", "question": "Where can you find the ‘Layers’ panel in Adobe Photoshop by default?", "options": ["Right side", "Left side", "Top bar", "Bottom"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/workspace-layout-mcqs-adobe-photoshop/"}
{"subject": "workspace-layout-mcqs-adobe-photoshop", "topic": "workspace-layout-mcqs-adobe-photoshop", "question": "Which menu allows you to reset the workspace layout in Photoshop?", "options": ["Edit", "File", "Window", "View"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/workspace-layout-mcqs-adobe-photoshop/"}
{"subject": "workspace-layout-mcqs-adobe-photoshop", "topic": "workspace-layout-mcqs-adobe-photoshop", "question": "Which panel is NOT available by default in the Essentials workspace?", "options": ["Properties", "Libraries", "3D", "Adjustments"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/workspace-layout-mcqs-adobe-photoshop/"}
{"subject": "workspace-layout-mcqs-adobe-photoshop", "topic": "workspace-layout-mcqs-adobe-photoshop", "question": "What is the purpose of the ‘History’ panel in Photoshop?", "options": ["To keep track of and undo/redo actions", "To navigate between different layers", "To show a list of applied filters", "To adjust the properties of a layer"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/workspace-layout-mcqs-adobe-photoshop/"}
{"subject": "workspace-layout-mcqs-adobe-photoshop", "topic": "workspace-layout-mcqs-adobe-photoshop", "question": "What does the ‘Navigator’ panel help with in Photoshop?", "options": ["Zooming and panning the canvas", "Navigating through the layers", "Navigating between different tools", "Managing text properties"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/workspace-layout-mcqs-adobe-photoshop/"}
{"subject": "workspace-layout-mcqs-adobe-photoshop", "topic": "workspace-layout-mcqs-adobe-photoshop", "question": "In which menu can you find the ‘Workspace’ option?", "options": ["Window", "File", "View", "Edit"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/workspace-layout-mcqs-adobe-photoshop/"}
{"subject": "workspace-layout-mcqs-adobe-photoshop", "topic": "workspace-layout-mcqs-adobe-photoshop", "question": "Which workspace would you choose if you primarily work with text in Photoshop?", "options": ["Graphic and Web", "Photography", "Painting", "Motion"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/workspace-layout-mcqs-adobe-photoshop/"}
{"subject": "coreldraw-effects-and-transformations-mcqs", "topic": "coreldraw-effects-and-transformations-mcqs", "question": "How can you apply a drop shadow effect to an object in CorelDRAW?", "options": ["All of the above", "Convert the object to curves and use the Interactive Shadow Tool", "Go to Object > Drop Shadow", "Use the Effects > Drop Shadow menu"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-effects-and-transformations-mcqs/"}
{"subject": "coreldraw-effects-and-transformations-mcqs", "topic": "coreldraw-effects-and-transformations-mcqs", "question": "How can you apply a mesh fill effect to an object in CorelDRAW?", "options": ["Use the Effects > Mesh Fill menu", "Convert the object to curves and use the Interactive Fill Tool", "All of the above", "Go to Object > Fill > Mesh Fill"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-effects-and-transformations-mcqs/"}
{"subject": "coreldraw-effects-and-transformations-mcqs", "topic": "coreldraw-effects-and-transformations-mcqs", "question": "How can you distort an object’s shape in CorelDRAW?", "options": ["Use the Effects > Distort menu", "Convert the object to curves and use the Warp Tool", "All of the above", "Go to Object > Transform > Distort"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-effects-and-transformations-mcqs/"}
{"subject": "coreldraw-effects-and-transformations-mcqs", "topic": "coreldraw-effects-and-transformations-mcqs", "question": "What does the ‘Blend Tool’ in CorelDRAW allow you to do?", "options": ["Apply 3D effects to objects", "Create a smooth transition between objects or colors", "Warp and distort objects", "Change the stroke width of lines"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-effects-and-transformations-mcqs/"}
{"subject": "coreldraw-effects-and-transformations-mcqs", "topic": "coreldraw-effects-and-transformations-mcqs", "question": "What does the ‘Envelope Tool’ in CorelDRAW allow you to do?", "options": ["Apply perspective transformations to objects", "Apply 3D effects to objects", "Change the stroke width of lines", "Adjust the shape and distortion of objects"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-effects-and-transformations-mcqs/"}
{"subject": "coreldraw-effects-and-transformations-mcqs", "topic": "coreldraw-effects-and-transformations-mcqs", "question": "What does the ‘PowerClip’ feature in CorelDRAW allow you to do?", "options": ["Apply gradient fills to objects", "Create perspective transformations", "Mask one object inside another", "Change the transparency of objects"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-effects-and-transformations-mcqs/"}
{"subject": "coreldraw-effects-and-transformations-mcqs", "topic": "coreldraw-effects-and-transformations-mcqs", "question": "What is the purpose of the ‘Contour Tool’ in CorelDRAW?", "options": ["To apply three-dimensional effects", "To create an outline or border around an object", "To create multiple copies of an object in a circular pattern", "To create smooth transitions between colors"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-effects-and-transformations-mcqs/"}
{"subject": "coreldraw-effects-and-transformations-mcqs", "topic": "coreldraw-effects-and-transformations-mcqs", "question": "What is the purpose of the ‘Smart Fill Tool’ in CorelDRAW?", "options": ["To warp and distort objects", "To apply gradient fills", "To create three-dimensional effects", "To fill enclosed areas with color"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-effects-and-transformations-mcqs/"}
{"subject": "coreldraw-effects-and-transformations-mcqs", "topic": "coreldraw-effects-and-transformations-mcqs", "question": "Which effect in CorelDRAW allows you to create a three-dimensional appearance for objects?", "options": ["Contour Tool", "Shadow Tool", "Transparency Tool", "Extrude Tool"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-effects-and-transformations-mcqs/"}
{"subject": "coreldraw-effects-and-transformations-mcqs", "topic": "coreldraw-effects-and-transformations-mcqs", "question": "Which tool allows you to apply a transparency effect to objects in CorelDRAW?", "options": ["Opacity Tool", "Fill Tool", "Effects Tool", "Transparency Tool"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-effects-and-transformations-mcqs/"}
{"subject": "coreldraw-effects-and-transformations-mcqs", "topic": "coreldraw-effects-and-transformations-mcqs", "question": "Which tool allows you to mirror an object in CorelDRAW?", "options": ["Mirror Tool", "Reflect Tool", "Transform Tool", "Flip Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-effects-and-transformations-mcqs/"}
{"subject": "coreldraw-effects-and-transformations-mcqs", "topic": "coreldraw-effects-and-transformations-mcqs", "question": "Which tool in CorelDRAW allows you to apply various effects such as drop shadow and blur to objects?", "options": ["Transparency Tool", "Effects Tool", "Interactive Fill Tool", "Shape Tool"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-effects-and-transformations-mcqs/"}
{"subject": "3d-editing-and-compositing-mcqs", "topic": "3d-editing-and-compositing-mcqs", "question": ": Which panel in Adobe Photoshop allows you to manage 3D objects and scenes?", "options": ["Layers Panel", "Channels Panel", "3D Panel", "Paths Panel"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/3d-editing-and-compositing-mcqs/"}
{"subject": "3d-editing-and-compositing-mcqs", "topic": "3d-editing-and-compositing-mcqs", "question": ": What does the “3D Extrusion” option in Photoshop allow you to do?", "options": ["Convert a 2D layer into a 3D object by adding depth", "Apply a 3D filter to a layer", "Create a 3D animation", "Convert 3D objects to 2D layers"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/3d-editing-and-compositing-mcqs/"}
{"subject": "3d-editing-and-compositing-mcqs", "topic": "3d-editing-and-compositing-mcqs", "question": ": Which tool is used to manipulate 3D objects in Photoshop?", "options": ["3D Object Tool", "Move Tool", "3D Axis Widget", "Transform Tool"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/3d-editing-and-compositing-mcqs/"}
{"subject": "3d-editing-and-compositing-mcqs", "topic": "3d-editing-and-compositing-mcqs", "question": ": What is the purpose of the “3D Mesh” options in Photoshop?", "options": ["To adjust lighting and shadows on 3D objects", "To create and edit the surface and geometry of 3D objects", "To adjust the color and texture of 3D objects", "To apply filters to 3D layers"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/3d-editing-and-compositing-mcqs/"}
{"subject": "3d-editing-and-compositing-mcqs", "topic": "3d-editing-and-compositing-mcqs", "question": ": How do you apply a texture to a 3D object in Photoshop?", "options": ["Use the Texture panel in the 3D workspace", "Apply a pattern overlay in the Layers panel", "Drag and drop an image onto the 3D object", "Use the “New Texture” option in the Edit menu"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/3d-editing-and-compositing-mcqs/"}
{"subject": "3d-editing-and-compositing-mcqs", "topic": "3d-editing-and-compositing-mcqs", "question": ": Which option in the 3D panel allows you to change the material properties of a 3D object?", "options": ["Lighting", "Shading", "Material Properties", "Render Settings"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/3d-editing-and-compositing-mcqs/"}
{"subject": "3d-editing-and-compositing-mcqs", "topic": "3d-editing-and-compositing-mcqs", "question": ": What does the “Render” option in the 3D menu do?", "options": ["Saves the 3D object as a 3D file", "Converts the 3D scene into a 2D image with realistic lighting and shadows", "Creates a 3D mesh from a 2D image", "Applies a texture to a 3D object"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/3d-editing-and-compositing-mcqs/"}
{"subject": "3d-editing-and-compositing-mcqs", "topic": "3d-editing-and-compositing-mcqs", "question": ": Which file format is commonly used to save 3D objects and scenes in Photoshop?", "options": [".PSD", ".OBJ", ".JPG", ".PNG"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/3d-editing-and-compositing-mcqs/"}
{"subject": "3d-editing-and-compositing-mcqs", "topic": "3d-editing-and-compositing-mcqs", "question": ": How can you adjust the camera angle in a 3D scene in Photoshop?", "options": ["Use the Camera Tool in the 3D workspace", "Adjust the perspective using the Transform tool", "Change the camera settings in the Preferences menu", "Move the 3D object instead of the camera"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/3d-editing-and-compositing-mcqs/"}
{"subject": "3d-editing-and-compositing-mcqs", "topic": "3d-editing-and-compositing-mcqs", "question": ": What does the “3D Light” option in Photoshop allow you to control?", "options": ["The position and intensity of light sources in a 3D scene", "The texture applied to 3D objects", "The color balance of 3D layers", "The depth of field effect in 3D scenes"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/3d-editing-and-compositing-mcqs/"}
{"subject": "3d-editing-and-compositing-mcqs", "topic": "3d-editing-and-compositing-mcqs", "question": ": Which feature allows you to create and edit shadows for 3D objects in Photoshop?", "options": ["3D Lights", "Shadow Map", "Render Settings", "3D Materials"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/3d-editing-and-compositing-mcqs/"}
{"subject": "3d-editing-and-compositing-mcqs", "topic": "3d-editing-and-compositing-mcqs", "question": ": How do you merge a 3D layer with a 2D layer in Photoshop?", "options": ["By converting the 3D layer to a 2D layer and then merging", "By applying a 3D filter to the 2D layer", "By using the Merge Layers command", "By converting both layers to Smart Objects before merging"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/3d-editing-and-compositing-mcqs/"}
{"subject": "3d-editing-and-compositing-mcqs", "topic": "3d-editing-and-compositing-mcqs", "question": ": What is the purpose of the “3D Print” option in Photoshop?", "options": ["To create a 3D printable model from the 3D object", "To print the 3D object on a standard printer", "To save the 3D scene as a 2D image", "To generate a PDF of the 3D object"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/3d-editing-and-compositing-mcqs/"}
{"subject": "3d-editing-and-compositing-mcqs", "topic": "3d-editing-and-compositing-mcqs", "question": ": What does the “Render Settings” dialog allow you to adjust in a 3D scene?", "options": ["The quality and output size of the rendered image", "The color and texture of 3D objects", "The position of the camera in the scene", "The material properties of 3D layers"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/3d-editing-and-compositing-mcqs/"}
{"subject": "coreldraw-customization-and-automation-mcqs", "topic": "coreldraw-customization-and-automation-mcqs", "question": "How can you extend CorelDRAW’s functionality using scripts?", "options": ["By creating custom tools and effects", "By importing fonts", "By exporting files to PDF format", "By resizing images"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-customization-and-automation-mcqs/"}
{"subject": "coreldraw-customization-and-automation-mcqs", "topic": "coreldraw-customization-and-automation-mcqs", "question": "In CorelDRAW, what does VBA stand for?", "options": ["Visual Basic Application", "Vector-Based Automation", "Visual Basic for Applications", "Vector-Based Animation"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-customization-and-automation-mcqs/"}
{"subject": "coreldraw-customization-and-automation-mcqs", "topic": "coreldraw-customization-and-automation-mcqs", "question": "What is the purpose of using macros in CorelDRAW?", "options": ["To create animations", "To automate repetitive tasks", "To edit bitmap images", "To design web pages"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-customization-and-automation-mcqs/"}
{"subject": "coreldraw-customization-and-automation-mcqs", "topic": "coreldraw-customization-and-automation-mcqs", "question": "Which feature allows you to customize the user interface in CorelDRAW?", "options": ["Dockers", "Script Editor", "Macro Manager", "Styles Editor"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-customization-and-automation-mcqs/"}
{"subject": "coreldraw-customization-and-automation-mcqs", "topic": "coreldraw-customization-and-automation-mcqs", "question": "Which file format is commonly used for sharing CorelDRAW macros?", "options": ["cdr", "gms", "cmx", "ai"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-customization-and-automation-mcqs/"}
{"subject": "coreldraw-customization-and-automation-mcqs", "topic": "coreldraw-customization-and-automation-mcqs", "question": "Which scripting language is used for automation in CorelDRAW?", "options": ["Python", "VBA (Visual Basic for Applications)", "JavaScript", "C++"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/coreldraw-customization-and-automation-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": Who was the first wife of Prophet Muhammad (PBUH)?", "options": ["Khadijah bint Khuwaylid", "Aisha bint Abi Bakr", "Sauda bint Zam’a", "Hafsah bint Umar"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": In which year did the migration (Hijra) of Prophet Muhammad (PBUH) from Mecca to Medina take place?", "options": ["620 CE", "622 CE", "632 CE", "610 CE"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": Who was the first caliph (successor) of Prophet Muhammad (PBUH)?", "options": ["Abu Bakr", "Umar ibn al-Khattab", "Uthman ibn Affan", "Ali ibn Abi Talib"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": The Battle of Badr, the first major battle in Islam, occurred in which year of the Islamic calendar?", "options": ["2 AH (After Hijra)", "3 AH (After Hijra)", "1 AH (After Hijra)", "4 AH (After Hijra)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": Who was the cousin and son-in-law of Prophet Muhammad (PBUH)?", "options": ["Umar ibn al-Khattab", "Abu Bakr", "Uthman ibn Affan", "Ali ibn Abi Talib"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": The Battle of Uhud took place between the Muslims of Medina and the Quraysh of Mecca in which year?", "options": ["624 CE", "625 CE", "627 CE", "626 CE"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": Which Islamic caliphate witnessed the compilation of the Quran into a single book?", "options": ["Umayyad Caliphate", "Rashidun Caliphate", "Abbasid Caliphate", "Fatimid Caliphate"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": Who was the last of the Rightly Guided Caliphs?", "options": ["Umar ibn al-Khattab", "Abu Bakr", "Uthman ibn Affan", "Ali ibn Abi Talib"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": The Battle of Karbala, in which Imam Hussain (RA) was martyred, occurred during the caliphate of which Umayyad caliph?", "options": ["Yazid I", "Muawiya I", "Marwan I", "Abdul-Malik ibn Marwan"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": The Abbasid Revolution led to the overthrow of which ruling dynasty?", "options": ["Umayyad Caliphate", "Rashidun Caliphate", "Fatimid Caliphate", "Ayyubid Caliphate"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": The Battle of Siffin, a conflict between Ali (RA) and Muawiyah I, took place in which year?", "options": ["656 CE", "657 CE", "658 CE", "659 CE"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": Who was the first caliph from the Umayyad dynasty?", "options": ["Muawiya I", "Yazid I", "Marwan I", "Abdul-Malik ibn Marwan"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": Which caliph is credited with the establishment of the city of Baghdad as the Abbasid capital?", "options": ["Al-Mansur", "Al-Mahdi", "Harun al-Rashid", "Al-Mu’tasim"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": The Battle of Yarmouk, a decisive battle in the Muslim conquests, took place during the caliphate of:", "options": ["Abu Bakr", "Umar ibn al-Khattab", "Uthman ibn Affan", "Ali ibn Abi Talib"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": Which caliph is known for initiating the construction of the Dome of the Rock in Jerusalem?", "options": ["Umar ibn al-Khattab", "Uthman ibn Affan", "Muawiya I", "Abd al-Malik ibn Marwan"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": Who was the founder of the Umayyad Caliphate?", "options": ["Abu Bakr", "Uthman ibn Affan", "Muawiya ibn Abi Sufyan", "Ali ibn Abi Talib"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": The Abbasid Caliphate is known for its golden age of:", "options": ["Science and Philosophy", "Military Conquests", "Economic Prosperity", "Religious Pilgrimages"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": The Battle of Tours in 732 CE halted the expansion of which Islamic empire into Europe?", "options": ["Umayyad Caliphate", "Abbasid Caliphate", "Fatimid Caliphate", "Rashidun Caliphate"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": The city of Medina was previously known as:", "options": ["Yathrib", "Damascus", "Kufa", "Mecca"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": Which Islamic caliphate is credited with the spread of Islamic civilization to Spain and North Africa?", "options": ["Umayyad Caliphate", "Abbasid Caliphate", "Fatimid Caliphate", "Rashidun Caliphate"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": Who was the first Muslim to call the adhan (Islamic call to prayer)?", "options": ["Bilal ibn Rabah", "Abu Bakr", "Umar ibn al-Khattab", "Abdullah ibn Masud"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": The Umayyad Caliphate was established in which year?", "options": ["661 CE", "632 CE", "680 CE", "750 CE"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": Which Abbasid caliph is known for his patronage of learning and the translation of Greek works into Arabic?", "options": ["Al-Mansur", "Al-Mahdi", "Harun al-Rashid", "Al-Ma’mun"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": Which Islamic caliphate witnessed the reign of the infamous caliph, Al-Hakim bi-Amr Allah?", "options": ["Abbasid Caliphate", "Umayyad Caliphate", "Fatimid Caliphate", "Rashidun Caliphate"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": The Battle of Hattin in 1187 CE led to the Muslim recapture of which holy city from the Crusaders?", "options": ["Jerusalem", "Mecca", "Medina", "Damascus"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": Who was the first child to accept Islam and was the son of Abu Bakr?", "options": ["Abdullah ibn Abu Bakr", "Qasim ibn Muhammad", "Ali ibn Abu Talib", "Hasan ibn Ali"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": Which Islamic scholar and theologian is known for his influential work, “The Incoherence of the Philosophers”?", "options": ["Al-Ghazali", "Ibn Sina (Avicenna)", "Ibn Khaldun", "Ibn Rushd (Averroes)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": The Treaty of Hudaybiyyah was signed between Prophet Muhammad (PBUH) and which tribe of Mecca?", "options": ["Quraysh", "Banu Hashim", "Banu Qurayza", "Banu Thaqif"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": Who was the youngest wife of Prophet Muhammad (PBUH) and the daughter of his close companion, Abu Bakr?", "options": ["Aisha bint Abi Bakr", "Khadijah bint Khuwaylid", "Hafsa bint Umar", "Zaynab bint Khuzayma"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "islamic-history-mcqs", "topic": "islamic-history-mcqs", "question": ": Which Islamic empire was founded by Salahuddin Ayyubi (Saladin), known for his victory over the Crusaders at the Battle of Hattin?", "options": ["Ayyubid Sultanate", "Mamluk Sultanate", "Ottoman Empire", "Safavid Empire"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-history-mcqs/"}
{"subject": "importance-of-ethics-in-islam-islamic-study-mcqs", "topic": "importance-of-ethics-in-islam-islamic-study-mcqs", "question": ": What is the significance of ethics in Islam?", "options": ["It is optional for Muslims to follow ethical principles.", "Ethics are fundamental to Islamic teachings and guide Muslims in their conduct.", "Ethics have no role in Islam.", "Ethics are only relevant for certain professions."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-ethics-in-islam-islamic-study-mcqs/"}
{"subject": "importance-of-ethics-in-islam-islamic-study-mcqs", "topic": "importance-of-ethics-in-islam-islamic-study-mcqs", "question": ": Which term in Islam refers to moral conduct and behavior?", "options": ["Taqwa", "Sunnah", "Akhirah", "Adab"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-ethics-in-islam-islamic-study-mcqs/"}
{"subject": "importance-of-ethics-in-islam-islamic-study-mcqs", "topic": "importance-of-ethics-in-islam-islamic-study-mcqs", "question": ": How does Islamic ethics contribute to society?", "options": ["By promoting dishonesty", "By encouraging injustice", "By fostering honesty, justice, and compassion", "By endorsing corruption"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-ethics-in-islam-islamic-study-mcqs/"}
{"subject": "importance-of-ethics-in-islam-islamic-study-mcqs", "topic": "importance-of-ethics-in-islam-islamic-study-mcqs", "question": ": What role does the Quran play in guiding Islamic ethics?", "options": ["It does not address ethical matters.", "It serves as the ultimate guide for ethical behavior.", "It contradicts ethical principles.", "It provides suggestions but is not obligatory to follow."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-ethics-in-islam-islamic-study-mcqs/"}
{"subject": "importance-of-ethics-in-islam-islamic-study-mcqs", "topic": "importance-of-ethics-in-islam-islamic-study-mcqs", "question": ": Which of the following is NOT a principle of Islamic ethics?", "options": ["Forgiveness", "Humility", "Greed", "Compassion"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-ethics-in-islam-islamic-study-mcqs/"}
{"subject": "importance-of-ethics-in-islam-islamic-study-mcqs", "topic": "importance-of-ethics-in-islam-islamic-study-mcqs", "question": ": What does the term “Akhlaq” refer to in Islam?", "options": ["Ritual prayers", "Moral character and behavior", "Pilgrimage to Mecca", "Fasting during Ramadan"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-ethics-in-islam-islamic-study-mcqs/"}
{"subject": "importance-of-ethics-in-islam-islamic-study-mcqs", "topic": "importance-of-ethics-in-islam-islamic-study-mcqs", "question": ": How does Islamic ethics guide interpersonal relationships?", "options": ["By encouraging dishonesty", "By promoting kindness, respect, and compassion towards others", "By advocating for discrimination", "By endorsing arrogance and pride"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-ethics-in-islam-islamic-study-mcqs/"}
{"subject": "importance-of-ethics-in-islam-islamic-study-mcqs", "topic": "importance-of-ethics-in-islam-islamic-study-mcqs", "question": ": What does the concept of “Amr Bil Ma’ruf” entail in Islam?", "options": ["Enjoining good and forbidding evil", "Promoting division and conflict", "Ignoring societal issues", "Embracing corruption"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-ethics-in-islam-islamic-study-mcqs/"}
{"subject": "importance-of-ethics-in-islam-islamic-study-mcqs", "topic": "importance-of-ethics-in-islam-islamic-study-mcqs", "question": ": Which of the following is NOT a virtue emphasized in Islamic ethics?", "options": ["Justice", "Honesty", "Arrogance", "Generosity"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-ethics-in-islam-islamic-study-mcqs/"}
{"subject": "importance-of-ethics-in-islam-islamic-study-mcqs", "topic": "importance-of-ethics-in-islam-islamic-study-mcqs", "question": ": How does Islamic ethics influence decision-making?", "options": ["By encouraging selfishness", "By promoting integrity, fairness, and accountability", "By advocating for deception", "By endorsing corruption"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-ethics-in-islam-islamic-study-mcqs/"}
{"subject": "contribution-to-islamic-culture-islamic-study-mcqs", "topic": "contribution-to-islamic-culture-islamic-study-mcqs", "question": ": Which civilization preserved and translated numerous works of Greek philosophy, mathematics, and science into Arabic during the Islamic Golden Age?", "options": ["Abbasid Caliphate", "Umayyad Caliphate", "Ottoman Empire", "Seljuk Empire"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/contribution-to-islamic-culture-islamic-study-mcqs/"}
{"subject": "contribution-to-islamic-culture-islamic-study-mcqs", "topic": "contribution-to-islamic-culture-islamic-study-mcqs", "question": ": Which Islamic scholar is known for his contributions to astronomy, mathematics, and optics, including the invention of the camera obscura?", "options": ["Ibn Sina", "Al-Khwarizmi", "Al-Biruni", "Ibn al-Haytham"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/contribution-to-islamic-culture-islamic-study-mcqs/"}
{"subject": "contribution-to-islamic-culture-islamic-study-mcqs", "topic": "contribution-to-islamic-culture-islamic-study-mcqs", "question": ": Which Muslim polymath wrote the influential medical encyclopedia “The Canon of Medicine,” which remained a standard medical text in Europe for centuries?", "options": ["Ibn Khaldun", "Ibn Rushd", "Al-Razi", "Ibn Sina"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/contribution-to-islamic-culture-islamic-study-mcqs/"}
{"subject": "contribution-to-islamic-culture-islamic-study-mcqs", "topic": "contribution-to-islamic-culture-islamic-study-mcqs", "question": ": Which Islamic philosopher is known for his commentaries on Aristotle and his synthesis of Greek philosophy with Islamic theology?", "options": ["Al-Ghazali", "Ibn Rushd", "Al-Farabi", "Avicenn"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/contribution-to-islamic-culture-islamic-study-mcqs/"}
{"subject": "contribution-to-islamic-culture-islamic-study-mcqs", "topic": "contribution-to-islamic-culture-islamic-study-mcqs", "question": ": Which Islamic scholar made significant contributions to geography, geology, and anthropology, and is known for his work “The Book of Healing”?", "options": ["Al-Battani", "Al-Farabi", "Al-Biruni", "Al-Khwarizm"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/contribution-to-islamic-culture-islamic-study-mcqs/"}
{"subject": "contribution-to-islamic-culture-islamic-study-mcqs", "topic": "contribution-to-islamic-culture-islamic-study-mcqs", "question": ": Which Islamic civilization excelled in the fields of architecture, art, and calligraphy, leaving behind iconic structures such as the Alhambra and the Great Mosque of Cordoba?", "options": ["Abbasid Caliphate", "Umayyad Caliphate", "Fatimid Caliphate", "Andalusian Caliphate"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/contribution-to-islamic-culture-islamic-study-mcqs/"}
{"subject": "contribution-to-islamic-culture-islamic-study-mcqs", "topic": "contribution-to-islamic-culture-islamic-study-mcqs", "question": ": Which Islamic civilization is credited with the development of the Persianate style of literature, art, and architecture?", "options": ["Mamluk Sultanate", "Safavid Empire", "Ottoman Empire", "Seljuk Empire"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/contribution-to-islamic-culture-islamic-study-mcqs/"}
{"subject": "contribution-to-islamic-culture-islamic-study-mcqs", "topic": "contribution-to-islamic-culture-islamic-study-mcqs", "question": ": Which Islamic scholar is known as the “Father of Algebra” for his pioneering work in algebra and his book “The Compendious Book on Calculation by Completion and Balancing”?", "options": ["Al-Battani", "Al-Khwarizmi", "Al-Razi", "Al-Ghazali"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/contribution-to-islamic-culture-islamic-study-mcqs/"}
{"subject": "contribution-to-islamic-culture-islamic-study-mcqs", "topic": "contribution-to-islamic-culture-islamic-study-mcqs", "question": ": Which Islamic civilization is credited with the development of intricate geometric patterns and designs seen in Islamic art and architecture?", "options": ["Mughal Empire", "Abbasid Caliphate", "Fatimid Caliphate", "Umayyad Caliphate"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/contribution-to-islamic-culture-islamic-study-mcqs/"}
{"subject": "contribution-to-islamic-culture-islamic-study-mcqs", "topic": "contribution-to-islamic-culture-islamic-study-mcqs", "question": ": Which Islamic scholar is known for his encyclopedic work “The Comprehensive Book on Medicine,” which became a standard medical textbook in Europe for centuries?", "options": ["Al-Razi", "Ibn Sina", "Al-Biruni", "Ibn Khaldun"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/contribution-to-islamic-culture-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Which Surah is known as the “Opening” or the “Opener”?", "options": ["Surah Al-Baqarah", "Surah Al-Fatiha", "Surah Al-Ikhlas", "Surah Al-Anfal"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Which Surah is called the “Heart of the Quran”?", "options": ["Surah Al-Baqarah", "Surah Al-Ikhlas", "Surah Al-Fatiha", "Surah Al-Rahman"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": How many verses are there in Surah Al-Fatiha?", "options": ["6", "7", "5", "4"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Which Surah is known as the “Chapter of Sincerity”?", "options": ["Surah Al-Ikhlas", "Surah Al-Fatiha", "Surah Al-Baqarah", "Surah Al-Anfal"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Kawthar is translated as:", "options": ["The Opening", "The Night", "The Purity", "The Abundance"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Kafirun emphasizes:", "options": ["The Oneness of Allah", "The Day of Judgment", "The importance of charity", "The rejection of polytheism"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Baqarah is the _____ Surah of the Quran.", "options": ["First", "Second", "Last", "Middle"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": The longest Surah in the Quran is:", "options": ["Surah Al-Fatiha", "Surah Al-Baqarah", "Surah Al-Ikhlas", "Surah Al-Kahf"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Mulk is also known as:", "options": ["The Protection", "The Dominion", "The Forgiver", "The Disbelievers"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Nas is translated as:", "options": ["The Help", "The Daybreak", "The Dawn", "The Mankind"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Which Surah begins with “Say: He is Allah, [Who is] One”?", "options": ["Surah Al-Falaq", "Surah Al-Kafirun", "Surah Al-Ikhlas", "Surah Al-Nas"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Asr emphasizes the importance of:", "options": ["Patience", "Charity", "Time", "Prayer"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Falaq is translated as:", "options": ["The Dawn", "The Daybreak", "The Sun", "The Splitting"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Nasr discusses:", "options": ["Victory", "Unity", "Guidance", "Forgiveness"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": The Surah which begins with “When the victory of Allah has come and the conquest” is:", "options": ["Surah Al-Falaq", "Surah Al-Nas", "Surah Al-Fil", "Surah Al-Qadr"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Qadr discusses:", "options": ["The Night of Power", "The Day of Judgment", "The Resurrection", "The Creation"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Adiyat is translated as:", "options": ["The Coursers", "The Dawn", "The Disbelievers", "The Time"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Ma’un emphasizes the importance of:", "options": ["Prayer", "Charity", "Patience", "Fasting"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Inshiqaq describes:", "options": ["The Day of Judgment", "The Creation", "The Resurrection", "The Splitting Open"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Qariah discusses:", "options": ["The Striking Calamity", "The Sun", "The Moon", "The Final Hour"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": The Surah which emphasizes the concept of resurrection and accountability is:", "options": ["Surah Al-Rahman", "Surah Al-Infitar", "Surah Al-Muzzammil", "Surah Al-Mulk"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Muzzammil is translated as:", "options": ["The Cloaked One", "The Nightly Recitation", "The Enshrouded One", "The Resurrection"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Qiyamah discusses:", "options": ["The Day of Judgment", "The Night Journey", "The Covenant", "The Creation of Man"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Which Surah is also known as “The Brightness”?", "options": ["Surah Al-Sharh", "Surah Al-Duha", "Surah Al-Kawthar", "Surah Al-Fajr"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Ghashiyah is translated as:", "options": ["The Overwhelming", "The Morning Hours", "The Sun", "The Night"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": The Surah which emphasizes the importance of patience and prayer is:", "options": ["Surah Al-Qadr", "Surah Al-Balad", "Surah Al-Asr", "Surah Al-Fajr"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Humazah describes:", "options": ["The Slanderer", "The Disbelievers", "The Adoration", "The Splitters"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Fil discusses:", "options": ["The Elephant", "The Daybreak", "The Dawn", "The Night"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": Surah Al-Ma’arij emphasizes:", "options": ["The Day of Judgment", "The Ascending Ways", "The Resurrection", "The Covenant"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "surahs-and-ayahs-islamic-study-mcqs", "topic": "surahs-and-ayahs-islamic-study-mcqs", "question": ": The Surah which begins with “By the morning brightness” is:", "options": ["Surah Al-Sharh", "Surah Al-Duha", "Surah Al-Kawthar", "Surah Al-Fajr"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/surahs-and-ayahs-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": Who was the first person to receive revelations from Allah?", "options": ["Prophet Muhammad (PBUH)", "Prophet Adam (AS)", "Prophet Moses (AS)", "Prophet Jesus (AS)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": In which month was the first revelation sent down to Prophet Muhammad (PBUH)?", "options": ["Rabi’ al-Awwal", "Ramadan", "Shawwal", "Muharram"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": What was the name of the cave where Prophet Muhammad (PBUH) received his first revelation?", "options": ["Hira Cave", "Thawr Cave", "Cave of Uhud", "Cave of Hera"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": Who was the angel that brought the revelations to Prophet Muhammad (PBUH)?", "options": ["Angel Gabriel (Jibril)", "Angel Michael (Mikail)", "Angel Israfil", "Angel Azrael"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": How long did the revelation of the Quran span?", "options": ["22 years", "40 days", "12 years", "10 years"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": Who was the first person to write down the revelations of the Quran during the lifetime of Prophet Muhammad (PBUH)?", "options": ["Abu Bakr (RA)", "Umar ibn al-Khattab (RA)", "Ali ibn Abi Talib (RA)", "Zaid ibn Thabit (RA)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": Which Khalifa ordered the compilation of the Quran into a single book?", "options": ["Abu Bakr (RA)", "Umar ibn al-Khattab (RA)", "Uthman ibn Affan (RA)", "Ali ibn Abi Talib (RA)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": How many copies of the Quran were distributed by Uthman ibn Affan (RA)?", "options": ["Five", "Ten", "Twenty", "Seven"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": Which script was used for the compilation of the Quran during Uthman’s (RA) time?", "options": ["Kufic script", "Naskh script", "Thuluth script", "Diwani script"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": Where is the original copy of the Quran compiled during Uthman’s (RA) time preserved?", "options": ["Madinah", "Makkah", "Istanbul", "Cairo"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": Which companion of the Prophet (PBUH) was known for his expertise in writing?", "options": ["Ali ibn Abi Talib (RA)", "Umar ibn al-Khattab (RA)", "Abu Bakr (RA)", "Zaid ibn Thabit (RA)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": How many chapters (Surahs) are there in the Quran?", "options": ["114", "100", "120", "110"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": Who was responsible for arranging the chapters (Surahs) of the Quran in the order we have today?", "options": ["Abu Bakr (RA)", "Umar ibn al-Khattab (RA)", "Zaid ibn Thabit (RA)", "Uthman ibn Affan (RA)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": Which chapter (Surah) of the Quran is known as the “heart of the Quran”?", "options": ["Surah Yasin", "Surah Al-Fatiha", "Surah Al-Baqarah", "Surah Al-Ikhlas"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": What is the meaning of the word “Quran”?", "options": ["Complete Guidance", "Recitation", "Revelation", "Book of Wisdom"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": How many times did Angel Gabriel (Jibril) deliver the entire Quran to Prophet Muhammad (PBUH)?", "options": ["Once", "Twice", "Thrice", "Four times"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": Who was the first person to memorize the entire Quran?", "options": ["Abu Bakr (RA)", "Umar ibn al-Khattab (RA)", "Ali ibn Abi Talib (RA)", "Prophet Muhammad (PBUH)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": Which Prophet is mentioned the most in the Quran?", "options": ["Prophet Moses (AS)", "Prophet Abraham (AS)", "Prophet Muhammad (PBUH)", "Prophet Jesus (AS)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": Which Surah of the Quran is considered the Surah of Unity?", "options": ["Surah Al-Fatiha", "Surah Al-Baqarah", "Surah Al-Ikhlas", "Surah Al-Mulk"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": What was the primary language of the Quran’s revelation?", "options": ["Arabic", "Hebrew", "Persian", "Urdu"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": How many verses (Ayahs) are there in the Quran?", "options": ["6,236", "7,114", "6,666", "7,555"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": What is the name of the first revelation that was sent down to Prophet Muhammad (PBUH)?", "options": ["Surah Al-Fatiha", "Surah Al-Ikhlas", "Surah Al-Alaq", "Surah Al-Baqarah"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": How many times did Prophet Muhammad (PBUH) perform Hajj during his lifetime?", "options": ["Once", "Twice", "Thrice", "Four times"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": What does “Al-Quran” mean?", "options": ["The Book of Islam", "The Final Testament", "The Recitation", "The Holy Scriptures"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": Which Surah of the Quran is known as the “Bride of the Quran”?", "options": ["Surah Al-Fatiha", "Surah Yasin", "Surah Al-Baqarah", "Surah Al-Rahman"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": How many verses (Ayahs) are there in Surah Al-Fatiha?", "options": ["5", "6", "7", "8"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": In which city was the Quran revealed to Prophet Muhammad (PBUH)?", "options": ["Makkah", "Madinah", "Ta’if", "Jerusalem"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": What is the literal meaning of “Quran”?", "options": ["Guidance", "Recitation", "Wisdom", "Revelation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": Who was the scribe of the revelations to Prophet Muhammad (PBUH)?", "options": ["Abu Bakr (RA)", "Umar ibn al-Khattab (RA)", "Zaid ibn Thabit (RA)", "Ali ibn Abi Talib (RA)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "the-quran-islamic-study-mcqs", "topic": "the-quran-islamic-study-mcqs", "question": ": How many times is the Quran recited in the five daily prayers?", "options": ["Once", "Twice", "Thrice", "Four times"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/the-quran-islamic-study-mcqs/"}
{"subject": "sufism-and-islamic-mysticism-islamic-study-mcqs", "topic": "sufism-and-islamic-mysticism-islamic-study-mcqs", "question": ": What is Sufism?", "options": ["A branch of Sunni Islam", "The mystical dimension of Islam", "A sect within Shia Islam", "The political aspect of Islam"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sufism-and-islamic-mysticism-islamic-study-mcqs/"}
{"subject": "sufism-and-islamic-mysticism-islamic-study-mcqs", "topic": "sufism-and-islamic-mysticism-islamic-study-mcqs", "question": ": Who is considered the founder of Sufism?", "options": ["Imam Ghazali", "Rumi", "Ibn Arabi", "Abu Bakr al-Siddiq"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sufism-and-islamic-mysticism-islamic-study-mcqs/"}
{"subject": "sufism-and-islamic-mysticism-islamic-study-mcqs", "topic": "sufism-and-islamic-mysticism-islamic-study-mcqs", "question": ": Which term refers to the spiritual journey in Sufism?", "options": ["Hajj", "Shahada", "Tariqah", "Salat"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sufism-and-islamic-mysticism-islamic-study-mcqs/"}
{"subject": "sufism-and-islamic-mysticism-islamic-study-mcqs", "topic": "sufism-and-islamic-mysticism-islamic-study-mcqs", "question": ": What is the practice of dhikr in Sufism?", "options": ["Charity", "Pilgrimage", "Remembrance of Allah through prayers or chants", "Fasting"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sufism-and-islamic-mysticism-islamic-study-mcqs/"}
{"subject": "sufism-and-islamic-mysticism-islamic-study-mcqs", "topic": "sufism-and-islamic-mysticism-islamic-study-mcqs", "question": ": Who are the Whirling Dervishes associated with?", "options": ["Jalal ad-Din Rumi", "Ibn Arabi", "Al-Ghazali", "Ibn Taymiyyah"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sufism-and-islamic-mysticism-islamic-study-mcqs/"}
{"subject": "sufism-and-islamic-mysticism-islamic-study-mcqs", "topic": "sufism-and-islamic-mysticism-islamic-study-mcqs", "question": ": What is the goal of Sufi practices such as meditation, chanting, and dancing?", "options": ["To achieve political power", "To attain a higher spiritual state and closeness to Allah", "To accumulate wealth and material possessions", "To gain knowledge of worldly affair"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sufism-and-islamic-mysticism-islamic-study-mcqs/"}
{"subject": "sufism-and-islamic-mysticism-islamic-study-mcqs", "topic": "sufism-and-islamic-mysticism-islamic-study-mcqs", "question": ": What does the term “Wali” signify in Sufism?", "options": ["A spiritual guide or saint", "A ritual prayer", "A type of fast", "A pilgrimage site"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sufism-and-islamic-mysticism-islamic-study-mcqs/"}
{"subject": "sufism-and-islamic-mysticism-islamic-study-mcqs", "topic": "sufism-and-islamic-mysticism-islamic-study-mcqs", "question": ": What is the concept of “Fana” in Sufism?", "options": ["The unity of God", "The spiritual retreat of a Sufi", "Annihilation of the self in the divine presence", "A pilgrimage to Mecc"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sufism-and-islamic-mysticism-islamic-study-mcqs/"}
{"subject": "sufism-and-islamic-mysticism-islamic-study-mcqs", "topic": "sufism-and-islamic-mysticism-islamic-study-mcqs", "question": ": Which famous Sufi saint is known as the “Friend of God”?", "options": ["Al-Hallaj", "Bayazid Bastami", "Abdul-Qadir Gilani", "Rabia al-Adawiyya"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sufism-and-islamic-mysticism-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": What is Salah?", "options": ["A pilgrimage to Mecca", "Fasting during Ramadan", "The obligatory ritual prayer in Islam", "Charity to the poor"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": How many times a day is Salah performed by Muslims?", "options": ["Two", "Three", "Four", "Five"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": What is the first prayer of the day in Islam?", "options": ["Fajr", "Dhuhr", "Asr", "Maghrib"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": How many units of prayer are performed in the Fajr Salah?", "options": ["Two", "Three", "Four", "Five"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": Which prayer is performed at midday?", "options": ["Fajr", "Dhuhr", "Asr", "Maghrib"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": How many units of prayer are performed in the Dhuhr Salah?", "options": ["Two", "Three", "Four", "Five"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": Which prayer is performed in the late afternoon?", "options": ["Fajr", "Dhuhr", "Asr", "Maghrib"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": How many units of prayer are performed in the Asr Salah?", "options": ["Two", "Three", "Four", "Five"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": Which prayer is performed just after sunset?", "options": ["Fajr", "Dhuhr", "Asr", "Maghrib"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": How many units of prayer are performed in the Maghrib Salah?", "options": ["Two", "Three", "Four", "Five"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": Which prayer is performed at nightfall?", "options": ["Fajr", "Dhuhr", "Asr", "Isha"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": How many units of prayer are performed in the Isha Salah?", "options": ["Two", "Three", "Four", "Five"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": What is the significance of the Takbir in Salah?", "options": ["It marks the beginning of the prayer", "It signifies the end of the prayer", "It indicates the direction of the Kaaba", "It commemorates the Prophets"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": What is the position of Sujood (prostration) in Salah?", "options": ["Standing", "Sitting", "Kneeling", "Prostrating"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": How many Sujood are performed in each unit of Salah?", "options": ["One", "Two", "Three", "Four"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": Which Surah of the Quran is recited in every unit of Salah?", "options": ["Surah Al-Fatihah", "Surah Al-Ikhlas", "Surah Al-Baqarah", "Surah Al-Mulk"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": How many Rak’ahs (units) are performed in the Fard Salah?", "options": ["One", "Two", "Three", "Four"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": What is the minimum number of Rak’ahs performed in each day’s Salah?", "options": ["Four", "Eight", "Twelve", "Twenty"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": Which prayer has a fixed number of Rak’ahs and cannot be increased or decreased?", "options": ["Fajr", "Dhuhr", "Asr", "Witr"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": What is Witr Salah?", "options": ["A voluntary prayer performed after Isha", "A Sunnah prayer before Dhuhr", "A special prayer on Fridays", "A prayer performed during Hajj"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": What is the significance of Sunnah prayers in Salah?", "options": ["They are obligatory", "They are recommended", "They are performed silently", "They are performed in congregation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": How many Rak’ahs are in the Sunnah Mu’akkadah (emphasized Sunnah) of Fajr?", "options": ["Two", "Four", "Six", "Eight"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": What is the importance of Sunnah Mu’akkadah prayers?", "options": ["They make up for missed Fard prayers", "They are performed to gain forgiveness", "They serve as a means of drawing closer to Allah", "They replace the obligatory prayers"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": Which prayer is known as the “coolness of the eyes”?", "options": ["Fajr", "Dhuhr", "Asr", "Isha"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": In which prayer is the recitation of Quranic verses longer?", "options": ["Fajr", "Dhuhr", "Asr", "Isha"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": What is the importance of the Friday (Jumu’ah) Salah?", "options": ["It replaces all other daily prayers", "It is obligatory for men but not for women", "It is performed at midnight", "It is a congregational prayer with a sermon"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": How many Rak’ahs are performed in the Friday (Jumu’ah) Salah?", "options": ["Two", "Four", "Six", "Eight"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": What is the significance of the Sunnah Mu’akkadah before Dhuhr?", "options": ["It is obligatory", "It is a replacement for missed prayers", "It prepares for the obligatory Salah", "It is performed after the Fard prayer"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "salah-prayer-islamic-study-mcqs", "topic": "salah-prayer-islamic-study-mcqs", "question": ": How does Salah contribute to the spiritual life of a Muslim?", "options": ["It strengthens the connection with Allah", "It guarantees worldly success", "It fulfills social obligations", "It grants immediate salvation"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/salah-prayer-islamic-study-mcqs/"}
{"subject": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "topic": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "question": ": Which school of thought is the largest Sunni school in terms of followers?", "options": ["Hanafi", "Shafi’i", "Maliki", "Hanbali"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs/"}
{"subject": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "topic": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "question": ": Which of the following is NOT one of the four major Sunni schools of thought?", "options": ["Jafari", "Hanafi", "Maliki", "Hanbali"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs/"}
{"subject": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "topic": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "question": ": Which school of thought is prevalent in Turkey, Central Asia, the Indian subcontinent, and parts of Egypt?", "options": ["Hanafi", "Shafi’i", "Maliki", "Hanbali"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs/"}
{"subject": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "topic": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "question": ": Which school of thought is widely followed in East Africa, Sudan, Egypt, and the Arabian Peninsula?", "options": ["Hanafi", "Shafi’i", "Maliki", "Hanbali"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs/"}
{"subject": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "topic": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "question": ": Which school of thought is known for its emphasis on reason and analogy in legal interpretation?", "options": ["Hanafi", "Shafi’i", "Maliki", "Hanbali"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs/"}
{"subject": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "topic": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "question": ": Which school of thought is prominent in the Arabian Peninsula, especially in Saudi Arabia?", "options": ["Hanafi", "Shafi’i", "Maliki", "Hanbali"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs/"}
{"subject": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "topic": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "question": ": Which school of thought is known for its reliance on the practice of the people of Madinah?", "options": ["Hanafi", "Shafi’i", "Maliki", "Hanbali"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs/"}
{"subject": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "topic": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "question": ": Which school of thought was founded by Imam Abu Hanifa?", "options": ["Hanafi", "Shafi’i", "Maliki", "Hanbali"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs/"}
{"subject": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "topic": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "question": ": Which school of thought was founded by Imam Malik ibn Anas?", "options": ["Hanafi", "Shafi’i", "Maliki", "Hanbali"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs/"}
{"subject": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "topic": "schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs", "question": ": Which school of thought was founded by Imam Muhammad ibn Idris al-Shafi’i?", "options": ["Hanafi", "Shafi’i", "Maliki", "Hanbali"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/schools-of-thought-hanafi-shafii-maliki-hanbali-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": "Who are the scholars responsible for interpreting Islamic law?", "options": ["Imams", "Jurists", "Muftis", "Mullahs"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": Which Islamic institution is responsible for leading prayers and delivering sermons?", "options": ["Masjid", "Madrasa", "University", "Sharia Court"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": What is the highest authority in Sunni Islam for interpreting Islamic law?", "options": ["Grand Mufti", "Caliph", "Fatwa Council", "Al-Azhar University"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": Which Islamic scholar is renowned for his compilation of Hadiths?", "options": ["Imam Malik", "Imam Hanafi", "Imam Shafi’i", "Imam Bukhari"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": Which of the following is NOT a role of Islamic scholars and institutions?", "options": ["Issuing fatwas", "Teaching Islamic theology", "Conducting Hajj rituals", "Preserving Islamic heritage"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": What is the term for the head of an Islamic university or school?", "options": ["Mufti", "Sheikh", "Imam", "Rector"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": Which institution is responsible for settling disputes according to Islamic law?", "options": ["Sharia Court", "Supreme Court", "Parliament", "Council of Elders"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": Which Islamic scholar is known for his contributions to Islamic jurisprudence?", "options": ["Ibn Taymiyyah", "Ibn Sina", "Ibn Khaldun", "Ibn Rushd"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": What is the term for the process of issuing legal opinions in Islam?", "options": ["Ijtihad", "Takfir", "Tafsir", "Taqlid"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": Which Islamic institution is responsible for training future scholars and imams?", "options": ["Madrasa", "Masjid", "Darul Uloom", "Fatwa Council"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": Who is considered the founder of the Hanbali school of Islamic jurisprudence?", "options": ["Imam Malik", "Imam Hanafi", "Imam Shafi’i", "Imam Ahmad ibn Hanbal"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": Which Islamic scholar is known for his contributions to Sufism and mysticism?", "options": ["Al-Ghazali", "Ibn Khaldun", "Ibn Taymiyyah", "Ibn Rushd"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": What is the term for the collection of teachings and sayings of the Prophet Muhammad?", "options": ["Hadith", "Sunnah", "Quran", "Fatwa"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": Which Islamic institution is responsible for preserving the Quranic text?", "options": ["Darul Uloom", "Fatwa Council", "Hifz School", "Quranic Academy"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": Who is considered the greatest Islamic scholar in the field of Islamic law?", "options": ["Imam Malik", "Imam Abu Hanifa", "Imam al-Shafi’i", "Imam Ahmad ibn Hanbal"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": What is the term for the body of Islamic scholars who issue religious opinions?", "options": ["Majlis", "Fatwa Council", "Ulema", "Shura Council"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": Which Islamic institution is responsible for overseeing religious endowments?", "options": ["Darul Ifta", "Waqf Board", "Sharia Court", "Grand Mufti’s Office"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": Who is considered the greatest scholar in the field of Islamic theology and philosophy?", "options": ["Al-Ghazali", "Ibn Khaldun", "Ibn Sina", "Ibn Rushd"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": What is the term for the head of a local mosque or prayer leader?", "options": ["Imam", "Sheikh", "Mufti", "Rector"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "topic": "role-of-islamic-scholars-and-institutions-islamic-study-mcqs", "question": ": Which Islamic institution is responsible for promoting Islamic teachings and beliefs?", "options": ["Dawah Center", "Fatwa Council", "Sharia Court", "Ulema Council"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/role-of-islamic-scholars-and-institutions-islamic-study-mcqs/"}
{"subject": "islamic-studies-mcqs-from-books-latest-editions", "topic": "islamic-studies-mcqs-from-books-latest-editions", "question": ": Hazrat Nuh (A.S) boat name is:", "options": ["Ark", "Saan", "Bohr", "Saan"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-from-books-latest-editions/"}
{"subject": "islamic-studies-mcqs-from-books-latest-editions", "topic": "islamic-studies-mcqs-from-books-latest-editions", "question": ": In which Hijri did the Holy Prophet (SAW) go to perform Hajj?", "options": ["8th Hijri", "10th Hijri", "11th Hijri", "9th Hijri"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-from-books-latest-editions/"}
{"subject": "islamic-studies-mcqs-from-books-latest-editions", "topic": "islamic-studies-mcqs-from-books-latest-editions", "question": ": In which Hijri did Zakat become Farz?", "options": ["4th Hijri", "1st Hijri", "2nd Hijri", "5th Hijri"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-from-books-latest-editions/"}
{"subject": "islamic-studies-mcqs-from-books-latest-editions", "topic": "islamic-studies-mcqs-from-books-latest-editions", "question": ": In which Hijri did the truce of Hudaibiya take place?", "options": ["4th Hijri", "7th Hijri", "6th Hijri", "5th Hijri"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-from-books-latest-editions/"}
{"subject": "islamic-studies-mcqs-from-books-latest-editions", "topic": "islamic-studies-mcqs-from-books-latest-editions", "question": ": The first capital of the Islamic Commonwealth is:", "options": ["Taaif", "Makkah", "Khyber", "Madina"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-from-books-latest-editions/"}
{"subject": "islamic-studies-mcqs-from-books-latest-editions", "topic": "islamic-studies-mcqs-from-books-latest-editions", "question": ": How many Holy books are there?", "options": ["Two", "Six", "Eight", "FourAnswer: (D) Four"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-from-books-latest-editions/"}
{"subject": "islamic-studies-mcqs-from-books-latest-editions", "topic": "islamic-studies-mcqs-from-books-latest-editions", "question": ": The oldest Holy Book is:", "options": ["The Injeel", "The Qur’an", "The Zaboor", "The Torait"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-from-books-latest-editions/"}
{"subject": "islamic-studies-mcqs-from-books-latest-editions", "topic": "islamic-studies-mcqs-from-books-latest-editions", "question": ": The last Holy Book is:", "options": ["The Torait", "The Injeel", "The Qur’an", "The Zuboor"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-from-books-latest-editions/"}
{"subject": "islamic-studies-mcqs-from-books-latest-editions", "topic": "islamic-studies-mcqs-from-books-latest-editions", "question": ": The total number of Prophets (AS) is:", "options": ["124000", "128000", "125000", "120000"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-from-books-latest-editions/"}
{"subject": "islamic-studies-mcqs-from-books-latest-editions", "topic": "islamic-studies-mcqs-from-books-latest-editions", "question": ": During the Mawakhat, how many Muhajireen were there?", "options": ["35", "50", "45", "40"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-from-books-latest-editions/"}
{"subject": "islamic-studies-mcqs-from-books-latest-editions", "topic": "islamic-studies-mcqs-from-books-latest-editions", "question": ": Iblees lies in which category?", "options": ["Human Being", "Angel", "Jinn", "Animal"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-from-books-latest-editions/"}
{"subject": "islamic-studies-mcqs-from-books-latest-editions", "topic": "islamic-studies-mcqs-from-books-latest-editions", "question": ": The greatest of all sins according to the Holy Prophet (SAW) is:", "options": ["Shirk", "Lie", "Hypocrisy", "Flattering"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-from-books-latest-editions/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "The first battle in history Widdah or Abwa held in:", "options": ["2 A.H", "3 A.H", "1 A.H", "4 A.H"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "In 17th of Ramadan Badar fought in ______ A.H:", "options": ["2", "3", "1", "4"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "In 17th of Shawal Udha fought _______ A.H:", "options": ["2", "3", "5", "4"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "Khandaq(Ahzab) fought in _____A.H:", "options": ["2", "3", "5", "4"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "Hunain wass fought in _____ A.H:", "options": ["6", "7", "8", "9"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "Conquest of Makkah in ____ A.H:", "options": ["7", "8", "9", "10"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "Treaty of Hudaibiya in ____ A.H:", "options": ["6", "7", "5", "4"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "Preaching of Islam Battle of Mutah to various king in _____ A.H:", "options": ["6", "8", "5", "4"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "Badar is basically named by _______ :", "options": ["Village", "City", "Country", "None of These"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "Uhd is basically named by:", "options": ["Mountain", "Village", "Hill", "None of These"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "Yom-ul Furqan is also known to:", "options": ["Yom ul Uhd", "Yom ul Khndaq", "Yom ul Badar", "None of These"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "Fath-e- Mobeen is also known to:", "options": ["Uhd", "Badar", "Sulah Hudaibiah", "None of These"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "In Battle of Badar number of Muslim soldiers was:", "options": ["213", "313", "413", "513"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "Number of soldiers of Kuffar in Battle of Badar was:", "options": ["1000", "2000", "1500", "1200"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "Battle of Badar was fought for ______:", "options": ["1 time", "2 Times", "3 Times", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "In Battle of Badar, the number of muslims Martyr was:", "options": ["13", "10", "14", "11"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "In Battle of Badar, Number of Kuffar’s who killed was:", "options": ["40", "80", "75", "70"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "In Badar battle leader of the Kuffar’s was:", "options": ["Abu Sufiyan", "Abu Jahal", "Abu Lahab", "None of These"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "Number of Muslim soldiers in Battle of Uhad are:", "options": ["1000", "2000", "1500", "500"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "Number of Kuffar soldiers In Battle of Uhad are:", "options": ["3000", "5000", "4000", "2000"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "In the battle of Uhad Number of Muslim martyrs was:", "options": ["70", "71", "69", "60"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "Means of AZHAB is :", "options": ["Allies", "Split", "enemy", "None Of These"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "Battle of _____ is also known as The battle of Khandaq :", "options": ["Uhd", "Badar", "Hunain", "Ahzab"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "ramadan-solved-mcqs-questions-answers", "topic": "ramadan-solved-mcqs-questions-answers", "question": "Holy Prophet Hazrat Muhammad ﷺ not participated in a battle is known as:", "options": ["Uhd", "Badar", "Saria", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/ramadan-solved-mcqs-questions-answers/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Who is known as the “Father of Islamic Philosophy”?", "options": ["Al-Ghazali", "Ibn Rushd", "Al-Farabi", "Ibn Sina"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Which scholar wrote the book “The Incoherence of the Philosophers”?", "options": ["Ibn Khaldun", "Al-Ghazali", "Ibn Rushd", "Al-Farabi"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Who is known for his extensive commentary on the Quran called “Tafsir al-Jalalayn”?", "options": ["Al-Ghazali", "Ibn Khaldun", "Jalaluddin al-Rumi", "Jalal al-Din al-Mahalli"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Which scholar is known for his work “Muqaddimah” on historiography and sociology?", "options": ["Ibn Rushd", "Ibn Khaldun", "Al-Ghazali", "Al-Farabi"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Who is known as the “Prince of Poets” in Arabic literature?", "options": ["Ibn Khaldun", "Al-Ghazali", "Jalaluddin al-Rumi", "Abu al-Qasim al-Shabbi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Which scholar is known for his collection of hadith known as “Sahih Muslim”?", "options": ["Imam Bukhari", "Imam Muslim", "Imam Tirmidhi", "Imam Abu Dawood"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Who is known as the founder of the Maliki school of Islamic jurisprudence?", "options": ["Imam Malik", "Imam Shafi’i", "Imam Abu Hanifa", "Imam Ahmad ibn Hanbal"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Which scholar is known for his work “Al-Muwatta” on Islamic law and ethics?", "options": ["Imam Malik", "Imam Shafi’i", "Imam Abu Hanifa", "Imam Ahmad ibn Hanbal"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Who wrote the famous work “Ihya Ulum al-Din” (The Revival of the Religious Sciences)?", "options": ["Imam al-Haddad", "Ibn Taymiyyah", "Imam al-Ghazali", "Ibn Qayyim al-Jawziyya"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Which scholar is known for his work on Islamic jurisprudence, particularly the Hanbali school?", "options": ["Imam Malik", "Imam Shafi’i", "Imam Abu Hanifa", "Imam Ahmad ibn Hanbal"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Who is known for his work “Al-Mabsut,” a comprehensive book on Islamic law?", "options": ["Imam Malik", "Imam Shafi’i", "Imam Abu Hanifa", "Imam Ahmad ibn Hanbal"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Which scholar is known for his significant contributions to the field of Islamic mysticism (Sufism)?", "options": ["Ibn Khaldun", "Al-Ghazali", "Ibn Taymiyyah", "Ibn Arabi"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Who is known as the compiler of the Hadith collection known as “Sahih al-Bukhari”?", "options": ["Imam Malik", "Imam Shafi’i", "Imam Bukhari", "Imam Muslim"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Which scholar is known for his contributions to Islamic jurisprudence through the Maliki school?", "options": ["Imam Malik", "Imam Shafi’i", "Imam Abu Hanifa", "Imam Ahmad ibn Hanbal"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Who is known for his work “Mishkat al-Masabih,” a collection of hadiths?", "options": ["Imam Malik", "Imam Shafi’i", "Imam Tirmidhi", "Imam al-Baghawi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Which scholar is known for his extensive commentary on the Quran known as “Tafsir ibn Kathir”?", "options": ["Imam Bukhari", "Imam Muslim", "Ibn Kathir", "Imam Tirmidhi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Who is known for his work “Kitab al-Kafi,” a collection of hadiths, theology, and ethics?", "options": ["Imam Ja’far al-Sadiq", "Imam Malik", "Imam Shafi’i", "Imam Ahmad ibn Hanbal"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Which scholar is known for his extensive commentary on Sahih al-Bukhari called “Fath al-Bari”?", "options": ["Imam Bukhari", "Imam Muslim", "Ibn Hajar al-Asqalani", "Imam al-Nawawi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Who is known as the “Scholar of the East and West” for his contributions to various fields?", "options": ["Ibn al-Qayyim", "Ibn Sina", "Ibn Taymiyyah", "Al-Biruni"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "scholars-and-their-contributions-islamic-study-mcqs", "topic": "scholars-and-their-contributions-islamic-study-mcqs", "question": ": Which scholar is known for his contributions to the field of Arabic grammar with his work “Al-Kitab”?", "options": ["Ibn Khaldun", "Al-Jahiz", "Al-Suyuti", "Sibawayh"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/scholars-and-their-contributions-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": What is the primary source of guidance for Islamic finance?", "options": ["The Quran", "The Bible", "The Bhagavad Gita", "The Torah"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": What is the Islamic term for interest?", "options": ["Halal", "Riba", "Zakat", "Sadaqah"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": In Islamic finance, what does the term “Shariah-compliant” mean?", "options": ["It conforms to Islamic law", "It follows secular regulations", "It’s based on Buddhist principles", "It’s approved by the World Bank"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": What is the concept of “Mudarabah” in Islamic finance?", "options": ["Profit sharing", "Interest payments", "Stock dividends", "Asset leasing"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": What is “Zakat” in Islamic finance?", "options": ["A form of taxation", "A loan agreement", "A type of investment", "A charitable obligation"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": What is the Islamic term for the practice of donating a certain percentage of wealth to charity?", "options": ["Zakat", "Ribah", "Musharakah", "Ijarah"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": Which of the following is considered permissible in Islamic finance?", "options": ["Speculative trading", "Paying interest on loans", "Gambling", "Investing in alcohol companies"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": What does “Ijarah” refer to in Islamic finance?", "options": ["Leasing", "Interest", "Debt financing", "Equity investment"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": What is the Islamic principle of “Gharar”?", "options": ["Uncertainty or ambiguity", "Fair dealing", "Charity", "Usury"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": Which type of financial transaction is prohibited in Islamic finance due to the concept of “Gharar”?", "options": ["Speculative trading", "Profit sharing", "Debt financing", "Asset leasing"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": What is the Islamic term for a contract that involves joint venture partnerships?", "options": ["Musharakah", "Murabaha", "Takaful", "Istisna"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": Which principle of Islamic finance emphasizes risk-sharing between parties?", "options": ["Mudarabah", "Murabaha", "Tawarruq", "Takaful"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": What does “Murabaha” entail in Islamic finance?", "options": ["Cost-plus financing", "Profit sharing", "Asset leasing", "Interest payments"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": What is “Sukuk” in Islamic finance?", "options": ["Islamic bonds", "Interest-based loans", "Mutual funds", "Currency trading"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": What is the Islamic term for a charitable endowment?", "options": ["Waqf", "Qard Hasan", "Hawala", "Mudarabah"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": In Islamic finance, what does “Qard Hasan” refer to?", "options": ["An interest-free loan", "Profit sharing", "Mortgage financing", "Venture capital investment"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": Which of the following is a mode of Islamic finance that involves commodity trading?", "options": ["Murabaha", "Ijarah", "Istisna", "Tawarruq"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "islamic-finance-islamic-study-mcqs", "topic": "islamic-finance-islamic-study-mcqs", "question": ": What is the Islamic term for Islamic insurance?", "options": ["Takaful", "Murabaha", "Musharakah", "Riba"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-finance-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": When was Prophet Muhammad (PBUH) born?", "options": ["570 CE", "632 CE", "610 CE", "620 CE"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": In which city was Prophet Muhammad (PBUH) born?", "options": ["Medina", "Jerusalem", "Mecca", "Cairo"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Who was Prophet Muhammad’s (PBUH) father?", "options": ["Abdullah ibn Abdul-Muttalib", "Abu Bakr Siddique", "Uthman ibn Affan", "Ali ibn Abi Talib"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Who was the mother of Prophet Muhammad (PBUH)?", "options": ["Aminah bint Wahb", "Khadijah bint Khuwaylid", "Fatimah bint Asad", "Hafsah bint Umar"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Who was the first person to hold Prophet Muhammad (PBUH) after his birth?", "options": ["Khadijah", "Fatimah", "Uthman", "Thuwaybah"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Who became Prophet Muhammad’s (PBUH) guardian after the death of his mother?", "options": ["Abu Bakr", "Uthman", "Abu Talib", "Umar"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": At what age did Prophet Muhammad (PBUH) accompany his uncle on a trade journey to Syria?", "options": ["Twelve", "Fifteen", "Eighteen", "Twenty"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Who took care of Prophet Muhammad (PBUH) after the death of his grandfather?", "options": ["Abu Bakr", "Uthman", "Abu Talib", "Umar"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Who offered to take care of Prophet Muhammad (PBUH) after the death of his grandfather?", "options": ["Fatimah bint Asad", "Khadijah bint Khuwaylid", "Halimah al-Saadiyah", "Aminah bint Wahb"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Who was the first person to accept Islam among Prophet Muhammad’s (PBUH) relatives?", "options": ["Abu Bakr", "Khadijah", "Ali", "Zayd"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What was the name of Prophet Muhammad’s (PBUH) grandfather?", "options": ["Abdul-Muttalib", "Abdullah", "Abu Talib", "Abu Lahab"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": In which tribe was Prophet Muhammad (PBUH) born into?", "options": ["Quraysh", "Banu Hashim", "Banu Umayyah", "Banu Makhzum"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Who were Prophet Muhammad’s (PBUH) foster parents?", "options": ["Aminah and Abdullah", "Abu Bakr and Khadijah", "Halimah and Harith", "Abdul-Muttalib and Fatimah"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What was the occupation of Prophet Muhammad (PBUH) before his prophethood?", "options": ["Merchant", "Farmer", "Teacher", "Scholar"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What is the name of the tribe to which Prophet Muhammad (PBUH) belonged?", "options": ["Banu Umayyah", "Banu Makhzum", "Banu Hashim", "Banu Thaqif"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What is the name of the well near the Kaaba where Prophet Muhammad (PBUH) used to play?", "options": ["Zamzam", "Maqam Ibrahim", "Safa", "Marwah"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Who was Prophet Muhammad’s (PBUH) uncle who raised him after the death of his grandfather?", "options": ["Abu Bakr", "Uthman", "Abu Talib", "Umar"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What was the name of the tribe that controlled Mecca during Prophet Muhammad’s (PBUH) lifetime?", "options": ["Banu Umayyah", "Banu Makhzum", "Quraysh", "Banu Thaqif"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Who was Prophet Muhammad’s (PBUH) first wife?", "options": ["Aisha", "Khadijah", "Safiyyah", "Hafsa"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Where did Prophet Muhammad (PBUH) receive his first revelation?", "options": ["Cave of Hira", "Cave of Thawr", "Cave of Uhud", "Cave of Mount Sinai"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/birth-and-early-life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": What is Islam’s view on other religions?", "options": ["Islam acknowledges the validity of all religions", "Islam considers other religions as false", "Islam promotes peaceful coexistence and respect for other religions", "Islam views other religions as irrelevant"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": What does Islam teach about the prophets of other religions?", "options": ["They are considered inferior to Islamic prophets", "They are not acknowledged by Islam", "They are respected as messengers of God", "They are condemned as impostors"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": According to Islamic belief, who are the “People of the Book”?", "options": ["Christians and Jews", "Muslims and Christians", "Hindus and Buddhists", "Atheists and Agnostics"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": What is the status of the Torah and the Gospel in Islam?", "options": ["They are considered invalid texts", "They are seen as corrupted versions of the original scriptures", "They are respected as divine revelations", "They are ignored by Muslims"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": In Islamic teachings, what is the preferred way to interact with followers of other religions?", "options": ["Condemnation and hostility", "Dialogue and peaceful coexistence", "Conversion by force", "Ignoring their existence"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": What is the Islamic perspective on religious freedom?", "options": ["Islam advocates for religious coercion", "Islam allows freedom of religion within certain boundaries", "Islam prohibits any form of religious expression", "Islam mandates the conversion of all non-Muslims"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": Which Quranic verse emphasizes the universality of religious freedom?", "options": ["“There is no god but Allah.”", "“To you be your religion, and to me my religion.”", "“Fight those who do not believe in Allah.”", "“Islam is the only true religion.”"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": What is the significance of the Treaty of Hudaybiyyah regarding Islam’s view on other religions?", "options": ["It mandated the expulsion of non-Muslims from Arabia", "It established peaceful relations between Muslims and non-Muslims", "It declared war on all non-Muslims", "It prohibited any interaction between Muslims and non-Muslims"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": Which Islamic principle promotes tolerance and respect for religious diversity?", "options": ["Taqwa", "Tawhid", "Tolerance", "Jihad"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": What historical event demonstrates Prophet Muhammad’s respect for religious pluralism?", "options": ["The Conquest of Mecca", "The Battle of Badr", "The Treaty of Hudaybiyyah", "The Siege of Medina"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": What is the term used in Islam for non-Muslims living under Islamic rule?", "options": ["Kafirs", "Dhimmi", "Munafiq", "Mushrik"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": Which Islamic concept promotes kindness and compassion towards all creatures, regardless of their faith?", "options": ["Tawakkul", "Tawhid", "Rahmah", "Takfir"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": What does the Quran say about engaging with people of other faiths?", "options": ["“Show mercy to the believers.”", "“Argue with the disbelievers.”", "“Invite to the way of your Lord with wisdom and good instruction.”", "“Convert non-believers forcefully.”"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": In Islamic history, what was the status of religious minorities under Islamic rule?", "options": ["They were discriminated against and oppressed", "They were given equal rights and protection", "They were forcibly converted to Islam", "They were expelled from Islamic territories"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": Which Islamic principle emphasizes justice and fairness in all dealings, including with people of other faiths?", "options": ["Shura", "Adl", "Ihsan", "Fitrah"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": What is the significance of the Pact of Umar in Islamic history?", "options": ["It established the first Islamic state", "It guaranteed the rights of religious minorities in Islamic territories", "It declared war on neighboring non-Muslim nations", "It abolished the practice of slavery in Islamic societies"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": Which Islamic figure is known for his tolerance towards people of other faiths during his reign?", "options": ["Caliph Umar ibn al-Khattab", "Prophet Muhammad", "Sultan Saladin", "Caliph Abu Bakr"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": What does Islam teach about forced conversion?", "options": ["It is encouraged as a way to spread Islam", "It is strictly forbidden", "It is permissible under certain circumstances", "It is considered optional for Muslims"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": Which Islamic principle promotes the idea of mutual respect and understanding between people of different faiths?", "options": ["Jihad", "Zakat", "Tolerance", "Hijrah"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islams-view-on-other-religions-islamic-study-mcqs", "topic": "islams-view-on-other-religions-islamic-study-mcqs", "question": ": According to Islam, what should be the attitude of Muslims towards the religious practices of others?", "options": ["Indifference", "Respectful tolerance", "Condemnation", "Aggressive opposition"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islams-view-on-other-religions-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": What is the literal meaning of the word “caliphate” in Arabic?", "options": ["Succession", "Leadership", "Submission", "Unity"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": Who was the first Caliph after the death of Prophet Muhammad (PBUH)?", "options": ["Abu Bakr", "Umar ibn al-Khattab", "Uthman ibn Affan", "Ali ibn Abi Talib"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": Which Caliphate is considered the “Rashidun Caliphate”?", "options": ["Umayyad Caliphate", "Abbasid Caliphate", "Fatimid Caliphate", "First four Caliphs after Prophet Muhammad (PBUH)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": Which battle marked the end of the Rashidun Caliphate and the beginning of the Umayyad Caliphate?", "options": ["Battle of Badr", "Battle of Uhud", "Battle of Karbala", "Battle of Siffin"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": Who was the first Umayyad Caliph?", "options": ["Umar ibn Abd al-Aziz", "Muawiya I", "Yazid I", "Abu Bakr al-Baghdadi"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": Which city served as the capital of the Umayyad Caliphate?", "options": ["Medina", "Mecca", "Damascus", "Baghdad"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": Which Caliphate is known for its expansion into North Africa, Spain, and parts of Central Asia?", "options": ["Abbasid Caliphate", "Umayyad Caliphate", "Fatimid Caliphate", "Ottoman Caliphate"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": Who was the founder of the Abbasid Caliphate?", "options": ["Abu Bakr", "Umar ibn al-Khattab", "Abd al-Rahman I", "Abu al-Abbas al-Saffah"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": Which city served as the capital of the Abbasid Caliphate?", "options": ["Cairo", "Baghdad", "Cordoba", "Istanbul"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": The Abbasid Caliphate is often referred to as the “Golden Age” of Islam. What contributed to this era’s prosperity?", "options": ["Trade and commerce", "Scientific and cultural achievements", "Religious tolerance", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": Which Caliphate was established by the descendants of Prophet Muhammad’s daughter Fatimah?", "options": ["Umayyad Caliphate", "Abbasid Caliphate", "Fatimid Caliphate", "Ottoman Caliphate"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": Which city served as the capital of the Fatimid Caliphate?", "options": ["Cairo", "Baghdad", "Damascus", "Medina"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": Who was the last Caliph of the Ottoman Caliphate?", "options": ["Suleiman the Magnificent", "Abdulmejid II", "Mahmud II", "Selim I"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": Which event marked the abolition of the Ottoman Caliphate?", "options": ["Treaty of Lausanne", "Treaty of Sèvres", "Treaty of Versailles", "Treaty of Karlowitz"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": Which modern-day country was home to the Ottoman Caliphate?", "options": ["Turkey", "Saudi Arabia", "Iran", "Iraq"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": Who was known as the “Second Caliph” in the Ottoman Caliphate?", "options": ["Selim I", "Suleiman the Magnificent", "Mahmud II", "Abdulmejid II"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": During which century did the Abbasid Caliphate decline, leading to the rise of regional powers?", "options": ["7th century", "8th century", "9th century", "10th century"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": The Umayyad Caliphate is often associated with which architectural marvel?", "options": ["Hagia Sophia", "Dome of the Rock", "Great Mosque of Damascus", "Alhambra"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": Which Caliphate is credited with the preservation and translation of classical Greek and Roman texts?", "options": ["Umayyad Caliphate", "Abbasid Caliphate", "Fatimid Caliphate", "Ottoman Caliphate"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "islamic-caliphates-islamic-study-mcqs", "topic": "islamic-caliphates-islamic-study-mcqs", "question": ": What was the primary religion of the Byzantine Empire during the time of the Umayyad Caliphate?", "options": ["Zoroastrianism", "Christianity", "Judaism", "Islam"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-caliphates-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": What is the term for the Islamic dress code for women?", "options": ["Hijab", "Burqa", "Niqab", "Abaya"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": In Islam, what is the role of women according to the Quran?", "options": ["Inferior to men", "Equal to men", "Superior to men", "Dependent on cultural interpretation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": Which of the following is a right granted to women in Islam?", "options": ["Right to education", "Right to employment", "Right to own property", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": Who was the first wife of the Prophet Muhammad?", "options": ["Khadijah", "Aisha", "Fatimah", "Zainab"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": What is the significance of Khadijah in Islamic history?", "options": ["She was the first female ruler of Islam", "She was the mother of the Prophet Muhammad", "She was the first person to accept Islam", "She was the founder of Sufism"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": Which Islamic figure is known for her scholarship and narrating numerous Hadiths?", "options": ["Aisha", "Fatimah", "Khadijah", "Zainab"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": In Islam, what is the concept of “Mahr”?", "options": ["Dowry paid to the bride", "Salary paid to the husband", "Inheritance given to daughters", "Stipend for religious scholars"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": Which Islamic figure is known for her bravery and leadership in battle?", "options": ["Aisha", "Fatimah", "Khadijah", "Zainab"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": What is the term for the period of waiting after a divorce or the death of a spouse, during which a woman cannot remarry?", "options": ["Iddah", "Hijab", "Nikah", "Talaq"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": Which Islamic principle emphasizes the protection and respect of women’s rights?", "options": ["Adalat", "Ihsan", "Fadl", "Hifz"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": What is the term for the Islamic legal guardianship of women?", "options": ["Wali", "Imam", "Mufti", "Qazi"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": Which Islamic figure is known for her piety and devotion to prayer and fasting?", "options": ["Aisha", "Fatimah", "Khadijah", "Zainab"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": In Islamic law, what is the primary responsibility of a husband towards his wife?", "options": ["Financial support", "Household chores", "Emotional support", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": What is the significance of Fatimah, the daughter of the Prophet Muhammad, in Islamic history?", "options": ["She was the youngest wife of the Prophet Muhammad", "She was the first female judge in Islam", "She was the mother of the first four caliphs", "She is revered for her role as a symbol of piety and virtue"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": Which Islamic concept promotes the idea of mutual consultation and decision-making between spouses?", "options": ["Qiwamah", "Shura", "Iman", "Tawakkul"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": In Islamic law, what is the required age for marriage for both males and females?", "options": ["16 years old", "18 years old", "Puberty", "21 years old"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": Which Islamic principle emphasizes the importance of treating women with kindness and respect?", "options": ["Adl", "Ihsan", "Taqwa", "Zuhd"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": What is the term for the Islamic ritual washing performed by women after menstruation or childbirth?", "options": ["Ghusl", "Wudu", "Istinja", "Postpartum purification"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": Who was the wife of the Prophet Muhammad known for her generosity and charitable acts?", "options": ["Aisha", "Fatimah", "Khadijah", "Zainab"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "women-in-islam-islamic-study-mcqs", "topic": "women-in-islam-islamic-study-mcqs", "question": ": Which Islamic concept advocates for the equitable distribution of wealth and resources among family members, including women?", "options": ["Zakat", "Sadaqah", "Inheritance", "Waqf"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/women-in-islam-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": Which of the following is NOT considered a primary source of Islamic law?", "options": ["Quran", "Sunnah", "Ijma", "Qiyas"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": What is the primary source of Islamic law?", "options": ["Hadith", "Sunnah", "Quran", "Ijma"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": Which term refers to the practice of the Prophet Muhammad as recorded in Hadith?", "options": ["Quran", "Sunnah", "Ijma", "Qiyas"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": What term is used to describe the consensus of scholars on a legal issue?", "options": ["Quran", "Sunnah", "Ijma", "Qiyas"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": Which of the following is NOT a secondary source of Islamic law?", "options": ["Ijma", "Qiyas", "Istihsan", "Hadith"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": What term is used for analogical reasoning in Islamic law?", "options": ["Ijma", "Qiyas", "Istihsan", "Maslaha"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": Which source of Islamic law involves the jurist’s personal opinion or discretion?", "options": ["Ijma", "Qiyas", "Istihsan", "Maslaha"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": What principle allows for the consideration of public interest or welfare in legal rulings?", "options": ["Ijma", "Qiyas", "Istihsan", "Maslaha"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": What term is used for the interpretation and understanding of Islamic law by qualified scholars?", "options": ["Fiqh", "Shariah", "Ijtihad", "Taqlid"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": Which of the following is NOT considered a source of Islamic law according to Sunni tradition?", "options": ["Quran", "Sunnah", "Hadith", "Ijma"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": In Islamic law, what does the term “Quran” refer to?", "options": ["The sayings and actions of Prophet Muhammad", "The collection of Hadith", "The holy book revealed to Prophet Muhammad", "The consensus of scholars"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": Which of the following is NOT a characteristic of the Quran?", "options": ["It is considered the literal word of God", "It is organized into chapters (Surahs)", "It was compiled after the death of Prophet Muhammad", "It serves as the primary source of Islamic law"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": What is the significance of the Sunnah in Islamic law?", "options": ["It provides commentary on the Quran", "It is the sayings, actions, and approvals of Prophet Muhammad", "It is the consensus of scholars", "It is the analogical reasoning applied by jurists"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": Which term refers to the scholarly consensus on a particular legal issue in Islamic law?", "options": ["Quran", "Sunnah", "Ijma", "Qiyas"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": What does the principle of Qiyas involve?", "options": ["Interpretation of Quranic verses", "Analogy and reasoning based on existing legal precedents", "Consensus of scholars", "Scholarly discretion"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": Istihsan is a concept in Islamic law that refers to:", "options": ["Consensus of scholars", "Legal analogy", "Discretionary preference by a jurist to avoid hardship", "Public interest or welfare"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": What does the term “Maslaha” signify in Islamic law?", "options": ["The interpretation of Quranic verses", "Legal analogy", "Public interest or welfare", "Scholarly consensus"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": What is the process of Ijtihad in Islamic law?", "options": ["Scholarly interpretation and legal reasoning", "The collection of Hadith", "Memorization of the Quran", "The compilation of Sunnah"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": What is Taqlid in Islamic jurisprudence?", "options": ["Scholarly consensus", "Legal analogy", "The process of seeking guidance from qualified scholars", "Public interest or welfare"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "sources-of-islamic-law-islamic-study-mcqs", "topic": "sources-of-islamic-law-islamic-study-mcqs", "question": ": Which of the following is considered a primary source of Islamic law?", "options": ["Ijma", "Qiyas", "Istihsan", "Quran"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sources-of-islamic-law-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": Who was the last prophet according to Islamic belief?", "options": ["Prophet Moses", "Prophet Jesus", "Prophet Muhammad", "Prophet Abraham"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": In which city was Prophet Muhammad born?", "options": ["Makkah", "Madinah", "Jerusalem", "Cairo"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": What age was Prophet Muhammad when he received his first revelation?", "options": ["30", "35", "40", "45"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": How long did the revelation of the Quran continue?", "options": ["10 years", "15 years", "20 years", "23 years"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": What language was the Quran revealed in?", "options": ["Arabic", "Hebrew", "Persian", "Turkish"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": Who was the first person to accept Islam?", "options": ["Abu Bakr", "Khadijah", "Ali", "Zayd"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": What is the term used for the migration of Prophet Muhammad from Makkah to Madinah?", "options": ["Hijrah", "Shahadah", "Salah", "Zakat"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": How many verses (ayahs) are there in the Quran?", "options": ["5,286", "6,236", "7,493", "6,666"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": What is the name of the angel who brought the revelations to Prophet Muhammad?", "options": ["Angel Gabriel", "Angel Michael", "Angel Raphael", "Angel Israfil"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": What is the first Surah (chapter) in the Quran?", "options": ["Surah Al-Baqarah", "Surah Al-Fatiha", "Surah Al-Ikhlas", "Surah Al-Anfal"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": What is the Quranic term for a chapter?", "options": ["Surah", "Ayah", "Hadith", "Juz"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": Which night is considered the Night of Power (Laylat al-Qadr) in Islam, when the Quran’s first revelation occurred?", "options": ["23rd Ramadan", "27th Ramadan", "21st Ramadan", "29th Ramadan"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": How many prophets are mentioned by name in the Quran?", "options": ["25", "50", "124,000", "124"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": What is the Quranic term for a verse?", "options": ["Ayah", "Surah", "Hadith", "Sunnah"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": Which prophet is mentioned the most in the Quran?", "options": ["Prophet Moses", "Prophet Jesus", "Prophet Abraham", "Prophet Muhammad"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": Which Surah in the Quran is known as the Heart of the Quran?", "options": ["Surah Al-Fatiha", "Surah Al-Baqarah", "Surah Al-Kahf", "Surah Yasin"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": What is the literal meaning of the word “Quran”?", "options": ["Guidance", "Wisdom", "Recitation", "Mercy"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": In which year did the revelation of the Quran begin?", "options": ["610 CE", "622 CE", "632 CE", "570 CE"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": How many parts (Juz) is the Quran divided into?", "options": ["20", "30", "40", "50"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": What is the term used for the Islamic practice of reciting the entire Quran in the month of Ramadan?", "options": ["Salat", "Zakat", "Sawm", "Taraweeh"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": What is the Quranic term for lawful or permissible actions?", "options": ["Halal", "Haram", "Sunnah", "Bid’ah"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": Which Surah in the Quran is known as the “Verse of the Throne”?", "options": ["Surah Al-Baqarah", "Surah Al-Fatiha", "Surah Al-Ikhlas", "Surah Al-Baqarah"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": What is the Quranic term for the Day of Judgment?", "options": ["Qiyamah", "Jannah", "Jahannam", "Barzakh"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": What is the Quranic term for fasting during Ramadan?", "options": ["Sawm", "Salah", "Hajj", "Zakat"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": Which Surah in the Quran is known as the “Surah of Purity”?", "options": ["Surah Al-Fatiha", "Surah Al-Ikhlas", "Surah Al-Nas", "Surah Al-Tawbah"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": What is the significance of the number 114 in Islam?", "options": ["Number of Prophets", "Number of Angels", "Number of Surahs in the Quran", "Number of Hadiths in Sahih Bukhari"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": What is the Quranic term for the Day of Resurrection?", "options": ["Yawm al-Qiyamah", "Yawm al-Jumu’ah", "Yawm al-Arafah", "Yawm al-Adha"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": Which Surah in the Quran is known as the “Surah of Protection”?", "options": ["Surah Al-Fatiha", "Surah Al-Falaq", "Surah Al-Nas", "Surah Al-Kawthar"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "topic": "prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs", "question": ": What is the term used for the process of reciting the Quran with proper pronunciation and rules?", "options": ["Tafsir", "Tajweed", "Tawbah", "Tahajjud"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/prophethood-and-the-revelation-of-the-quran-islamic-study-mcqs/"}
{"subject": "virtues-and-values-islamic-study-mcqs", "topic": "virtues-and-values-islamic-study-mcqs", "question": ": What is the Arabic term for faith in Islam?", "options": ["Ihsan", "Tawheed", "Iman", "Sunnah"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/virtues-and-values-islamic-study-mcqs/"}
{"subject": "virtues-and-values-islamic-study-mcqs", "topic": "virtues-and-values-islamic-study-mcqs", "question": ": Which virtue in Islam refers to the belief in the oneness of Allah?", "options": ["Sabr", "Tawakkul", "Tawheed", "Taqwa"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/virtues-and-values-islamic-study-mcqs/"}
{"subject": "virtues-and-values-islamic-study-mcqs", "topic": "virtues-and-values-islamic-study-mcqs", "question": ": What does “Sabr” signify in Islam?", "options": ["Compassion", "Perseverance and patience", "Humility", "Generosity"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtues-and-values-islamic-study-mcqs/"}
{"subject": "virtues-and-values-islamic-study-mcqs", "topic": "virtues-and-values-islamic-study-mcqs", "question": ": Which value in Islam signifies reliance on Allah?", "options": ["Tawakkul", "Ihsan", "Akhirah", "Sunnah"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtues-and-values-islamic-study-mcqs/"}
{"subject": "virtues-and-values-islamic-study-mcqs", "topic": "virtues-and-values-islamic-study-mcqs", "question": ": What does the term “Ihsan” denote in Islam?", "options": ["Belief in the Hereafter", "Worship and devotion to Allah", "Doing good and excellence in deeds", "Pilgrimage to Mecca"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/virtues-and-values-islamic-study-mcqs/"}
{"subject": "virtues-and-values-islamic-study-mcqs", "topic": "virtues-and-values-islamic-study-mcqs", "question": ": Which virtue in Islam refers to humility and modesty?", "options": ["Tawakkul", "Taqwa", "Tawheed", "Khushu"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/virtues-and-values-islamic-study-mcqs/"}
{"subject": "virtues-and-values-islamic-study-mcqs", "topic": "virtues-and-values-islamic-study-mcqs", "question": ": What is “Taqwa” in Islam?", "options": ["Gratitude towards Allah", "Fear of Allah and piety", "Generosity", "Recitation of the Quran"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtues-and-values-islamic-study-mcqs/"}
{"subject": "virtues-and-values-islamic-study-mcqs", "topic": "virtues-and-values-islamic-study-mcqs", "question": ": What does “Akhirah” represent in Islam?", "options": ["The Day of Judgment and the Hereafter", "The Five Pillars of Islam", "The Islamic calendar", "The Quranic revelations"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/virtues-and-values-islamic-study-mcqs/"}
{"subject": "virtues-and-values-islamic-study-mcqs", "topic": "virtues-and-values-islamic-study-mcqs", "question": ": Which virtue in Islam refers to showing kindness and compassion towards others?", "options": ["Sabr", "Rahma", "Tawheed", "Taqwa"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtues-and-values-islamic-study-mcqs/"}
{"subject": "virtues-and-values-islamic-study-mcqs", "topic": "virtues-and-values-islamic-study-mcqs", "question": ": What does “Zakat” signify in Islam?", "options": ["Fasting during Ramadan", "Almsgiving and charity", "Pilgrimage to Mecca", "Recitation of the Quran"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/virtues-and-values-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Who is known as the “Father of Algebra” among Islamic scholars?", "options": ["Ibn al-Haytham", "Al-Khwarizmi", "Ibn Sina", "Al-Biruni"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Which Islamic scholar is famous for his work on optics and the camera obscura?", "options": ["Al-Battani", "Ibn al-Haytham", "Al-Razi", "Al-Kindi"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Who wrote the influential medical encyclopedia “The Canon of Medicine”?", "options": ["Ibn al-Haytham", "Al-Khwarizmi", "Ibn Sina", "Al-Razi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Which Islamic scholar developed the concept of the scientific method?", "options": ["Al-Khwarizmi", "Al-Kindi", "Ibn al-Haytham", "Al-Biruni"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Who is credited with the development of algebraic calculus?", "options": ["Al-Battani", "Al-Khwarizmi", "Al-Kindi", "Al-Biruni"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Which Islamic scholar made significant contributions to the field of astronomy?", "options": ["Al-Battani", "Ibn al-Haytham", "Al-Razi", "Al-Biruni"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Who wrote the book “Book of Optics,” which influenced Western scientific thought?", "options": ["Ibn al-Haytham", "Al-Khwarizmi", "Al-Razi", "Al-Kindi"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Which Islamic scholar is known for his work in chemistry and alchemy?", "options": ["Al-Razi", "Al-Khwarizmi", "Ibn al-Haytham", "Al-Battani"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Who is considered the “Father of Geodesy” in Islamic scholarship?", "options": ["Al-Battani", "Al-Khwarizmi", "Al-Biruni", "Al-Razi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Which Islamic scholar laid the foundation for the study of trigonometry?", "options": ["Al-Battani", "Al-Kindi", "Al-Biruni", "Al-Razi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Who introduced the use of Arabic numerals to the West?", "options": ["Al-Kindi", "Al-Khwarizmi", "Al-Razi", "Al-Biruni"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Which Islamic scholar made significant contributions to the field of geography?", "options": ["Al-Battani", "Al-Khwarizmi", "Al-Biruni", "Al-Razi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Who is known for his contributions to the field of pharmacology and medicine?", "options": ["Al-Razi", "Ibn al-Haytham", "Al-Kindi", "Al-Battani"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Which Islamic scholar is credited with the development of the concept of inertia?", "options": ["Al-Biruni", "Ibn al-Haytham", "Al-Kindi", "Al-Battani"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Who is known for his contributions to the field of medicine and surgery?", "options": ["Al-Razi", "Al-Kindi", "Al-Biruni", "Al-Battani"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Which Islamic scholar made significant contributions to the field of mathematics and logic?", "options": ["Al-Khwarizmi", "Ibn al-Haytham", "Al-Kindi", "Al-Biruni"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Who is considered the “Father of Chemistry” among Islamic scholars?", "options": ["Al-Razi", "Al-Khwarizmi", "Al-Battani", "Al-Kindi"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Which Islamic scholar made significant contributions to the field of physics and mechanics?", "options": ["Ibn al-Haytham", "Al-Battani", "Al-Kindi", "Al-Razi"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Who is known for his advancements in the field of surgical instruments and techniques?", "options": ["Al-Razi", "Al-Kindi", "Al-Biruni", "Al-Battani"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Which Islamic scholar is credited with the development of the concept of the “Scientific Method”?", "options": ["Al-Kindi", "Al-Battani", "Ibn al-Haytham", "Al-Razi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Who introduced the decimal point notation system to the Western world?", "options": ["Al-Razi", "Al-Biruni", "Al-Khwarizmi", "Al-Kindi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Which Islamic scholar is known for his contributions to the field of astronomy and geography?", "options": ["Al-Razi", "Al-Battani", "Al-Kindi", "Ibn al-Haytham"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Who wrote the famous medical encyclopedia “Al-Qanun fi al-Tibb” (The Canon of Medicine)?", "options": ["Al-Razi", "Al-Battani", "Al-Kindi", "Ibn Sina"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Which Islamic scholar made significant contributions to the field of optics and vision?", "options": ["Al-Kindi", "Ibn al-Haytham", "Al-Razi", "Al-Biruni"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Who is known for his work on surgical procedures and medical treatments?", "options": ["Al-Razi", "Al-Battani", "Al-Biruni", "Al-Kindi"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Which Islamic scholar is credited with the invention of the astrolabe?", "options": ["Al-Razi", "Al-Battani", "Al-Kindi", "Al-Biruni"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Who is known for his contributions to the field of ophthalmology and eye surgery?", "options": ["Al-Razi", "Al-Battani", "Al-Biruni", "Ibn al-Haytham"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Which Islamic scholar made significant advancements in the field of cartography?", "options": ["Al-Kindi", "Al-Battani", "Al-Biruni", "Al-Razi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Who is known for his contributions to the field of pharmacology and drug development?", "options": ["Al-Razi", "Al-Battani", "Al-Kindi", "Ibn al-Haytham"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "topic": "islamic-contributions-to-science-and-medicine-islamic-study-mcqs", "question": ": Which Islamic scholar is credited with the invention of the concept of the camera obscura?", "options": ["Al-Razi", "Al-Battani", "Ibn al-Haytham", "Al-Kindi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-contributions-to-science-and-medicine-islamic-study-mcqs/"}
{"subject": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "topic": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "question": ": What is the Sunnah?", "options": ["The recorded actions and sayings of Prophet Muhammad", "The holy book of Islam", "The Islamic pilgrimage", "The Muslim declaration of faith"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs/"}
{"subject": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "topic": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "question": ": Which of the following is NOT a source of Islamic law?", "options": ["Quran", "Hadith", "Sunnah", "Ijma"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs/"}
{"subject": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "topic": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "question": ": Sunnah, as a source of Islamic law, complements which other primary source?", "options": ["Quran", "Hadith", "Ijma", "Qiyas"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs/"}
{"subject": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "topic": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "question": ": Which term refers to the sayings of Prophet Muhammad?", "options": ["Sunnah", "Hadith", "Quran", "Ijma"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs/"}
{"subject": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "topic": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "question": ": In Islamic jurisprudence, the Sunnah serves as:", "options": ["An optional guide for Muslims", "A secondary source of law after the Quran", "The primary source of law", "A historical document with no legal significance"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs/"}
{"subject": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "topic": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "question": ": The Sunnah provides detailed guidance on various aspects of:", "options": ["Science and technology", "Social etiquette and manners", "Economics and finance", "Political governance"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs/"}
{"subject": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "topic": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "question": ": Which Islamic legal principle involves the consensus of scholars on a particular issue?", "options": ["Sunnah", "Hadith", "Ijma", "Qiyas"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs/"}
{"subject": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "topic": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "question": ": How is the Sunnah authenticated in Islamic jurisprudence?", "options": ["By popular vote", "Through divine revelation", "By the chain of narrators and their reliability", "Based on the opinion of scholars"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs/"}
{"subject": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "topic": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "question": ": Sunnah-based rulings are often derived through the process of:", "options": ["Ijma", "Qiyas", "Istihsan", "Ijtihad"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs/"}
{"subject": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "topic": "role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs", "question": ": Which of the following is a Hadith collection that is commonly referred to for legal rulings?", "options": ["Sahih al-Bukhari", "Riyadh al-Salihin", "Al-Tirmidhi", "Shama’il al-Tirmidhi"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/role-of-sunnah-in-islamic-jurisprudence-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": During the lifetime of Prophet Muhammad (PBUH), Islam spread primarily through:", "options": ["Military conquests", "Trade routes", "Diplomatic missions", "Cultural exchanges"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The first country to accept Islam as a state religion after the Arabian Peninsula was:", "options": ["Egypt", "Persia (Iran)", "Syria", "Iraq"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": Which battle is considered as the turning point in the expansion of Islam into the Arabian Peninsula?", "options": ["Battle of Badr", "Battle of Uhud", "Conquest of Mecca", "Battle of Khaybar"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The spread of Islam into Africa was facilitated by:", "options": ["The Umayyad Caliphate", "The Abbasid Caliphate", "The Fatimid Caliphate", "The Rashidun Caliphate"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": Which city was the first capital of the Islamic Empire after the death of Prophet Muhammad (PBUH)?", "options": ["Damascus", "Baghdad", "Medina", "Cairo"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The expansion of Islam into Spain occurred during the Umayyad Caliphate under the leadership of:", "options": ["Abd al-Rahman I", "Harun al-Rashid", "Umar ibn al-Khattab", "Ali ibn Abi Talib"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": Which of the following regions was NOT conquered by Muslim armies during the early Islamic expansion?", "options": ["Persia", "North Africa", "India", "Syria"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The Battle of Yarmouk was fought between the Muslims and the:", "options": ["Byzantine Empire", "Persian Empire", "Sassanian Empire", "Roman Empire"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The Islamic conquest of Jerusalem took place in the year:", "options": ["634 CE", "638 CE", "642 CE", "651 CE"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The spread of Islam into Central Asia occurred during the reign of the:", "options": ["Abbasid Caliphate", "Umayyad Caliphate", "Rashidun Caliphate", "Fatimid Caliphate"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The Islamic conquest of Constantinople by the Ottomans marked the end of the:", "options": ["Byzantine Empire", "Persian Empire", "Roman Empire", "Abbasid Caliphate"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The Islamic conquest of Persia took place during the caliphate of:", "options": ["Abu Bakr", "Umar ibn al-Khattab", "Uthman ibn Affan", "Ali ibn Abi Talib"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": Which of the following was NOT a method used by Muslim traders to spread Islam?", "options": ["Interfaith dialogue", "Establishing trade networks", "Distributing Islamic literature", "Engaging in missionary work"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The Islamic expansion into India was led by:", "options": ["Mahmud of Ghazni", "Muhammad bin Qasim", "Alauddin Khilji", "Babur"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The Islamic conquest of Egypt was led by the commander:", "options": ["Amr ibn al-As", "Khalid ibn al-Walid", "Sa’d ibn Abi Waqqas", "Umar ibn al-Khattab"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The Battle of Talas in 751 CE marked the expansion of Islam into:", "options": ["China", "India", "Central Asia", "Eastern Europe"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": Which city served as the capital of the Umayyad Caliphate during the expansion of Islam into Europe?", "options": ["Cordoba", "Baghdad", "Damascus", "Istanbul"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The spread of Islam into Southeast Asia was facilitated by:", "options": ["Arab traders", "Chinese merchants", "European missionaries", "Indian scholars"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The conquest of Andalusia (Spain) by Tariq ibn Ziyad marked the beginning of Islamic rule in:", "options": ["Europe", "Africa", "Asia", "Australia"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The Islamic expansion into the Indian subcontinent was primarily driven by:", "options": ["Military conquests", "Religious missionaries", "Economic trade", "Diplomatic relations"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The Islamic conquest of Jerusalem occurred during the caliphate of:", "options": ["Abu Bakr", "Umar ibn al-Khattab", "Uthman ibn Affan", "Ali ibn Abi Talib"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The spread of Islam into Persia led to the decline of which empire?", "options": ["Byzantine Empire", "Persian Empire", "Roman Empire", "Ottoman Empire"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The Islamic conquest of Spain was completed with the fall of which city in 1492?", "options": ["Toledo", "Cordoba", "Seville", "Granada"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The Islamic expansion into Southeast Asia was influenced by the spread of:", "options": ["Hinduism", "Buddhism", "Christianity", "Zoroastrianism"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The Islamic conquest of Sind (modern-day Pakistan) occurred during the caliphate of:", "options": ["Abu Bakr", "Umar ibn al-Khattab", "Uthman ibn Affan", "Ali ibn Abi Talib"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": Which of the following regions did NOT come under Islamic rule during the Rashidun Caliphate?", "options": ["Egypt", "Iraq", "Persia", "Spain"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "golden-age-of-islamic-civilization-islamic-study-mcqs", "topic": "golden-age-of-islamic-civilization-islamic-study-mcqs", "question": ": The Islamic expansion into Central Asia was facilitated by the conquests of:", "options": ["Tariq ibn Ziyad", "Muhammad bin Qasim", "Mahmud of Ghazni", "Genghis Khan"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/golden-age-of-islamic-civilization-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Who established the Abbasid Caliphate?", "options": ["Muawiya ibn Abi Sufyan", "Abu Bakr", "Abu al-Abbas al-Saffah", "Ali ibn Abi Talib"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Which caliphate is known for its advancements in science, philosophy, and literature?", "options": ["Abbasid Caliphate", "Rashidun Caliphate", "Umayyad Caliphate", "Fatimid Caliphate"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Who was the first Abbasid Caliph?", "options": ["Harun al-Rashid", "Al-Ma’mun", "Abu al-Abbas al-Saffah", "Al-Mu’tasim"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Under which caliphate did the Islamic Golden Age flourish?", "options": ["Umayyad Caliphate", "Rashidun Caliphate", "Abbasid Caliphate", "Fatimid Caliphate"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Which caliphate faced challenges from regional governors who asserted their autonomy?", "options": ["Umayyad Caliphate", "Abbasid Caliphate", "Rashidun Caliphate", "Fatimid Caliphate"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Who established the Umayyad Caliphate?", "options": ["Abu Bakr", "Umar ibn al-Khattab", "Muawiya ibn Abi Sufyan", "Ali ibn Abi Talib"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Which caliphate expanded into parts of Spain, North Africa, and Central Asia?", "options": ["Rashidun Caliphate", "Fatimid Caliphate", "Umayyad Caliphate", "Abbasid Caliphate"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Which caliphate saw the sacking of Baghdad by the Mongols in 1258?", "options": ["Abbasid Caliphate", "Rashidun Caliphate", "Fatimid Caliphate", "Umayyad Caliphate"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Who was the famous Abbasid Caliph known for his patronage of learning and the establishment of the House of Wisdom in Baghdad?", "options": ["Abu Bakr", "Al-Ma’mun", "Umar ibn al-Khattab", "Ali ibn Abi Talib"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Which caliphate was established after the assassination of Uthman ibn Affan?", "options": ["Rashidun Caliphate", "Umayyad Caliphate", "Abbasid Caliphate", "Fatimid Caliphate"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Who was the founder of the Umayyad dynasty?", "options": ["Abu Bakr", "Uthman ibn Affan", "Muawiya ibn Abi Sufyan", "Umar ibn al-Khattab"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Which caliphate was known for its naval prowess and trade dominance in the Mediterranean?", "options": ["Abbasid Caliphate", "Rashidun Caliphate", "Fatimid Caliphate", "Umayyad Caliphate"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Who was the last caliph of the Rashidun Caliphate?", "options": ["Abu Bakr", "Umar ibn al-Khattab", "Uthman ibn Affan", "Ali ibn Abi Talib"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Which caliphate was founded by Abdullah ibn Muhammad al-Mahdi Billah?", "options": ["Abbasid Caliphate", "Umayyad Caliphate", "Rashidun Caliphate", "Fatimid Caliphate"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Under which caliphate did the city of Cairo become a center of learning and culture?", "options": ["Rashidun Caliphate", "Umayyad Caliphate", "Fatimid Caliphate", "Abbasid Caliphate"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Who was the first caliph of the Rashidun Caliphate?", "options": ["Abu Bakr", "Umar ibn al-Khattab", "Uthman ibn Affan", "Ali ibn Abi Talib"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Which caliphate was known for its development of Arabic literature and poetry?", "options": ["Umayyad Caliphate", "Rashidun Caliphate", "Fatimid Caliphate", "Abbasid Caliphate"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Who was the last caliph of the Umayyad Caliphate?", "options": ["Muawiya II", "Yazid III", "Marwan II", "Abdul-Malik ibn Marwan"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Which caliphate saw the establishment of the city of Kufa as a military garrison?", "options": ["Umayyad Caliphate", "Abbasid Caliphate", "Fatimid Caliphate", "Rashidun Caliphate"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Who was the first Abbasid caliph to move the capital from Damascus to Baghdad?", "options": ["Al-Mansur", "Al-Mahdi", "Harun al-Rashid", "Al-Mu’tasim"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Which caliphate was founded by Hasan ibn Ali, the grandson of Prophet Muhammad (PBUH)?", "options": ["Umayyad Caliphate", "Abbasid Caliphate", "Fatimid Caliphate", "Rashidun Caliphate"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Who was the famous Abbasid caliph known for his patronage of arts and sciences?", "options": ["Al-Ma’mun", "Al-Mansur", "Al-Mahdi", "Harun al-Rashid"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Which caliphate witnessed the establishment of the city of Medina as the capital?", "options": ["Rashidun Caliphate", "Umayyad Caliphate", "Abbasid Caliphate", "Fatimid Caliphate"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Who was the first caliph of the Umayyad dynasty?", "options": ["Uthman ibn Affan", "Abu Bakr", "Muawiya ibn Abi Sufyan", "Yazid I"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Which caliphate saw the emergence of the Sunni and Shia divide?", "options": ["Umayyad Caliphate", "Rashidun Caliphate", "Abbasid Caliphate", "Fatimid Caliphate"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Who was the founder of the Abbasid dynasty?", "options": ["Al-Mansur", "Abu al-Abbas al-Saffah", "Al-Ma’mun", "Harun al-Rashid"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Which caliphate saw the establishment of the city of Medina as the capital?", "options": ["Umayyad Caliphate", "Rashidun Caliphate", "Abbasid Caliphate", "Fatimid Caliphate"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Who was the famous Abbasid caliph known for his translation movement and preservation of Greek and Roman texts?", "options": ["Al-Mansur", "Al-Ma’mun", "Harun al-Rashid", "Al-Mahdi"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "topic": "umayyad-and-abbasid-caliphates-islamic-study-mcqs", "question": ": Which caliphate witnessed the Battle of Tours, where the Muslims were defeated by the Frankish forces?", "options": ["Umayyad Caliphate", "Abbasid Caliphate", "Rashidun Caliphate", "Fatimid Caliphate"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/umayyad-and-abbasid-caliphates-islamic-study-mcqs/"}
{"subject": "islamiat-mcqs-compulsory", "topic": "islamiat-mcqs-compulsory", "question": ": The first structure of the Holy Kabaa was built by?", "options": ["Hazrat Moosa (AS)", "Hazrat Ibraheem (AS)", "Hazrat Adam (AS)", "Hazrat Yahya (AS)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-compulsory/"}
{"subject": "islamiat-mcqs-compulsory", "topic": "islamiat-mcqs-compulsory", "question": ": After completing the seven rounds, where does the Haji go?", "options": ["Say’ee", "Tawaf-e-Rukh", "Arafat", "Al-Multazim"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-compulsory/"}
{"subject": "islamiat-mcqs-compulsory", "topic": "islamiat-mcqs-compulsory", "question": ": The meaning of Arafat is?", "options": ["Plain", "Desert", "Mountain", "Forest"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-compulsory/"}
{"subject": "islamiat-mcqs-compulsory", "topic": "islamiat-mcqs-compulsory", "question": ": The Haji runs between Safa and Marwah how many times?", "options": ["10", "12", "7", "15"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-compulsory/"}
{"subject": "islamiat-mcqs-compulsory", "topic": "islamiat-mcqs-compulsory", "question": ": After performing Say’ee where does the Haji go?", "options": ["Muzdalfa", "Arafat", "Mina", "Safaa"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-compulsory/"}
{"subject": "islamiat-mcqs-compulsory", "topic": "islamiat-mcqs-compulsory", "question": ": Hajj is performed in which month?", "options": ["Safar", "Zil-Hajj", "Muharram", "Zi-Qaada"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-compulsory/"}
{"subject": "islamiat-mcqs-compulsory", "topic": "islamiat-mcqs-compulsory", "question": ": The pebbles for throwing at Shaitan are picked up from?", "options": ["Arafat", "Muzdalfa", "Mina", "Safa"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-compulsory/"}
{"subject": "islamiat-mcqs-compulsory", "topic": "islamiat-mcqs-compulsory", "question": ": The shortest Surah of the Holy Quran is?", "options": ["Surah Alaq", "Surah Falaq", "Surah Fateha", "Surah Kausar"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-compulsory/"}
{"subject": "islamiat-mcqs-compulsory", "topic": "islamiat-mcqs-compulsory", "question": ": On the produce of agricultural land, the compulsory tax is?", "options": ["Zakat", "Poll Tax", "Poor Tax", "Ushr"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-compulsory/"}
{"subject": "islamiat-mcqs-compulsory", "topic": "islamiat-mcqs-compulsory", "question": ": The running between Safa and Marwah is called?", "options": ["Tawaf", "Say’ee", "Waqaf", "Rami"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-compulsory/"}
{"subject": "islamiat-mcqs-compulsory", "topic": "islamiat-mcqs-compulsory", "question": ": The Surah which is known as Umm-ul-Kitab?", "options": ["Fateha", "Yaseen", "Baqara", "Rahman"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-compulsory/"}
{"subject": "islamiat-mcqs-compulsory", "topic": "islamiat-mcqs-compulsory", "question": ": The authentic Hadees is known as?", "options": ["Masnad", "Sahifah", "Saadiqah", "Sahih"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-compulsory/"}
{"subject": "interfaith-relations-islamic-study-mcqs", "topic": "interfaith-relations-islamic-study-mcqs", "question": ": Which of the following statements best describes interfaith relations in Islam?", "options": ["Islam promotes hostility towards people of other faiths.", "Islam encourages peaceful coexistence and dialogue with people of other faiths.", "Islam prohibits any interaction with people of other faiths.", "Islam advocates for the superiority of Muslims over people of other faiths."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-relations-islamic-study-mcqs/"}
{"subject": "interfaith-relations-islamic-study-mcqs", "topic": "interfaith-relations-islamic-study-mcqs", "question": ": Which of the following is an essential principle of interfaith relations in Islam?", "options": ["Exclusivity", "Tolerance", "Condemnation", "Segregation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-relations-islamic-study-mcqs/"}
{"subject": "interfaith-relations-islamic-study-mcqs", "topic": "interfaith-relations-islamic-study-mcqs", "question": ": What does Islam teach about interacting with people of different faiths?", "options": ["Muslims should isolate themselves from people of other faiths.", "Muslims should engage in respectful dialogue and cooperation with people of other faiths.", "Muslims should convert people of other faiths by force if necessary.", "Muslims should consider people of other faiths as inferior."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-relations-islamic-study-mcqs/"}
{"subject": "interfaith-relations-islamic-study-mcqs", "topic": "interfaith-relations-islamic-study-mcqs", "question": ": In Islamic tradition, what is the term used to refer to people of the book, namely Jews and Christians?", "options": ["Infidels", "Enemies", "Dhimmis", "Apostates"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-relations-islamic-study-mcqs/"}
{"subject": "interfaith-relations-islamic-study-mcqs", "topic": "interfaith-relations-islamic-study-mcqs", "question": ": According to Islamic teachings, how should Muslims treat dhimmis (people of the book) living in Islamic societies?", "options": ["They should be discriminated against and oppressed.", "They should be treated as equals and afforded protection.", "They should be forcibly converted to Islam.", "They should be excluded from society."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-relations-islamic-study-mcqs/"}
{"subject": "interfaith-relations-islamic-study-mcqs", "topic": "interfaith-relations-islamic-study-mcqs", "question": ": Which of the following Quranic verses emphasizes peaceful interaction with people of other faiths?", "options": ["“Fight them until there is no more fitnah and religion is entirely for Allah.”", "“There shall be no compulsion in [acceptance of] the religion.”", "“Do not take the Jews and the Christians as allies.”", "“O you who have believed, do not take the disbelievers as allies.”"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-relations-islamic-study-mcqs/"}
{"subject": "interfaith-relations-islamic-study-mcqs", "topic": "interfaith-relations-islamic-study-mcqs", "question": ": What historical event illustrates Prophet Muhammad’s positive interactions with people of other faiths?", "options": ["The Treaty of Hudaybiyyah", "The Battle of Badr", "The Siege of Medina", "The Conquest of Mecca"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-relations-islamic-study-mcqs/"}
{"subject": "interfaith-relations-islamic-study-mcqs", "topic": "interfaith-relations-islamic-study-mcqs", "question": ": What is the significance of the Constitution of Medina (Mithaq al-Madinah) regarding interfaith relations?", "options": ["It mandated the expulsion of people of other faiths from Medina.", "It established a framework for peaceful coexistence among Muslims, Jews, and pagans.", "It declared Islam as the only permissible religion in Medina.", "It prohibited Muslims from engaging in any interactions with people of other faiths."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-relations-islamic-study-mcqs/"}
{"subject": "interfaith-relations-islamic-study-mcqs", "topic": "interfaith-relations-islamic-study-mcqs", "question": ": Which Islamic principle emphasizes the importance of respecting religious diversity?", "options": ["Taqwa", "Tawhid", "Tolerance", "Jihad"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-relations-islamic-study-mcqs/"}
{"subject": "interfaith-relations-islamic-study-mcqs", "topic": "interfaith-relations-islamic-study-mcqs", "question": ": What is the significance of the Covenant of Madinah in Islamic interfaith relations?", "options": ["It established a code of conduct for Muslims in dealing with non-Muslims.", "It prohibited any interaction between Muslims and non-Muslims.", "It declared war on people of other faiths.", "It mandated the conversion of all non-Muslims to Islam."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-relations-islamic-study-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sufi Orders And Practices Islamic Study Mcqs", "question": ": Which Sufi order is associated with the practice of whirling dervishes?", "options": ["Qadiriyya", "Chishtiyya", "Mevlevi", "Naqshbandi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sufi-orders-and-practices-islamic-study-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sufi Orders And Practices Islamic Study Mcqs", "question": ": Which Sufi order emphasizes the importance of silent invocation of God’s names?", "options": ["Qadiriyya", "Naqshbandi", "Shadhiliyya", "Chishtiyy"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sufi-orders-and-practices-islamic-study-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sufi Orders And Practices Islamic Study Mcqs", "question": ": In which Sufi order did the practice of “Sama” or spiritual listening to music originate?", "options": ["Chishtiyya", "Qadiriyya", "Naqshbandi", "Mevlevi"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sufi-orders-and-practices-islamic-study-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sufi Orders And Practices Islamic Study Mcqs", "question": ": Which Sufi order is known for its association with the shrine of Hazrat Nizamuddin Auliya in Delhi?", "options": ["Qadiriyya", "Chishtiyya", "Shadhiliyya", "Naqshbandi"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sufi-orders-and-practices-islamic-study-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sufi Orders And Practices Islamic Study Mcqs", "question": ": Which Sufi order emphasizes the importance of spiritual intoxication as a means of union with the divine?", "options": ["Naqshbandi", "Chishtiyya", "Mevlevi", "Shadhiliyya"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sufi-orders-and-practices-islamic-study-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sufi Orders And Practices Islamic Study Mcqs", "question": ": Which Sufi order follows the teachings of Abdul-Qadir Gilani and is known for its widespread presence in the Indian subcontinent?", "options": ["Chishtiyya", "Naqshbandi", "Qadiriyya", "Shadhiliyya"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sufi-orders-and-practices-islamic-study-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sufi Orders And Practices Islamic Study Mcqs", "question": ": Which Sufi order traces its spiritual lineage to the teachings of Shah Waliullah Dehlawi?", "options": ["Qadiriyya", "Chishtiyya", "Naqshbandi", "Suhrawardiyya"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sufi-orders-and-practices-islamic-study-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sufi Orders And Practices Islamic Study Mcqs", "question": ": Which Sufi order emphasizes the practice of rigorous self-discipline and adherence to Islamic law?", "options": ["Qadiriyya", "Naqshbandi", "Chishtiyya", "Mevlevi"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sufi-orders-and-practices-islamic-study-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Sufi Orders And Practices Islamic Study Mcqs", "question": ": Which Sufi order emphasizes the importance of love as a means of reaching spiritual perfection?", "options": ["Qadiriyya", "Naqshbandi", "Chishtiyya", "Mevlevi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sufi-orders-and-practices-islamic-study-mcqs/"}
{"subject": "islamiat-mcqs-fsc", "topic": "islamiat-mcqs-fsc", "question": ": The capital of Iraq is . . . .", "options": ["Najaf", "Kufa", "Tehran", "Baghdad"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-fsc/"}
{"subject": "islamiat-mcqs-fsc", "topic": "islamiat-mcqs-fsc", "question": ": Alexandria is the major seaport of . . . .", "options": ["Egypt", "Iraq", "Baghdad", "Jordan"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-fsc/"}
{"subject": "islamiat-mcqs-fsc", "topic": "islamiat-mcqs-fsc", "question": ": The new name of Istanbul is . . . .", "options": ["Athens", "Rome", "Constantinople", "Iraq"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-fsc/"}
{"subject": "islamiat-mcqs-fsc", "topic": "islamiat-mcqs-fsc", "question": ": One of the first great Arab Alchemist was . . . .", "options": ["Al Razi", "Jabber Bin Hayyan", "Ibne Sina", "Yahya Bin Mansoor"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-fsc/"}
{"subject": "islamiat-mcqs-fsc", "topic": "islamiat-mcqs-fsc", "question": ": A total number of surahs in the Quran on the name of cities . . . .", "options": ["Five", "Two", "One", "Three"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-fsc/"}
{"subject": "islamiat-mcqs-fsc", "topic": "islamiat-mcqs-fsc", "question": ": In which AD the Kingdom of Khwarazm was destroyed by . . . .", "options": ["Temur Lung", "Halaku Khan", "Changaiz Khan", "Qublai Khan"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-fsc/"}
{"subject": "islamiat-mcqs-fsc", "topic": "islamiat-mcqs-fsc", "question": ": What is the name of the first Abbasid caliph was . . . .", "options": ["Marwan", "Saffah", "Saleh Bin Abdullah", "Abbas Bin Ali"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-fsc/"}
{"subject": "islamiat-mcqs-fsc", "topic": "islamiat-mcqs-fsc", "question": ": Adam is a word of which language . . . .", "options": ["Syriani", "Hindi", "Persian", "Arabic"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-fsc/"}
{"subject": "islamiat-mcqs-fsc", "topic": "islamiat-mcqs-fsc", "question": ": What is the height of Hazrat Adam AS . . . .", "options": ["95 feet", "60 feet", "70 feet", "90 feet"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-fsc/"}
{"subject": "islamiat-mcqs-fsc", "topic": "islamiat-mcqs-fsc", "question": ": Total number of Sahifay were revealed to Hazrat Idrees AS . . . .", "options": ["30", "20", "40", "10"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-fsc/"}
{"subject": "islamiat-mcqs-fsc", "topic": "islamiat-mcqs-fsc", "question": ": In which Hijri Hazrat Ali (RA) martyred in the age of . . . .", "options": ["35 Hijri", "45 Hijri", "50 Hijri", "40 Hijri"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-fsc/"}
{"subject": "islamiat-mcqs-fsc", "topic": "islamiat-mcqs-fsc", "question": ": Siyyam of Ramazan was ordered . . . .", "options": ["4 AH", "7 AH", "5 AH", "2 AH"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-fsc/"}
{"subject": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "topic": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "question": ": During the decline and fall of Islamic empires, which Mongol leader sacked Baghdad in 1258, leading to the destruction of the Abbasid Caliphate?", "options": ["Genghis Khan", "Kublai Khan", "Timur", "Hulagu Khan"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/decline-and-fall-of-islamic-empires-islamic-study-mcqs/"}
{"subject": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "topic": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "question": ": The decline of the Ottoman Empire was marked by its defeat in which significant battle, leading to the loss of its European territories?", "options": ["Battle of Vienna", "Battle of Gallipoli", "Battle of Lepanto", "Battle of Kosovo"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/decline-and-fall-of-islamic-empires-islamic-study-mcqs/"}
{"subject": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "topic": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "question": ": Which European power gained control of Egypt in the 19th century, contributing to the decline of the Ottoman Empire?", "options": ["France", "Spain", "Britain", "Portugal"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/decline-and-fall-of-islamic-empires-islamic-study-mcqs/"}
{"subject": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "topic": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "question": ": The Safavid Empire faced internal strife and external invasions, notably by which neighboring empire?", "options": ["Ottoman Empire", "Mughal Empire", "Byzantine Empire", "Abbasid Caliphate"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/decline-and-fall-of-islamic-empires-islamic-study-mcqs/"}
{"subject": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "topic": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "question": ": The decline of the Mughal Empire in India was hastened by the invasion of which Central Asian conqueror?", "options": ["Babur", "Timur", "Nadir Shah", "Aurangzeb"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/decline-and-fall-of-islamic-empires-islamic-study-mcqs/"}
{"subject": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "topic": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "question": ": Which European power’s arrival in India contributed to the decline of Islamic rule on the Indian subcontinent?", "options": ["France", "Portugal", "Britain", "Netherlands"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/decline-and-fall-of-islamic-empires-islamic-study-mcqs/"}
{"subject": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "topic": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "question": ": The decline of the Islamic empires coincided with the rise of which European intellectual and cultural movement?", "options": ["Renaissance", "Enlightenment", "Romanticism", "Industrial Revolution"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/decline-and-fall-of-islamic-empires-islamic-study-mcqs/"}
{"subject": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "topic": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "question": ": The decline of Islamic empires led to the partition of the Ottoman Empire by European powers through which treaty?", "options": ["Treaty of Versailles", "Treaty of Tordesillas", "Treaty of Sèvres", "Treaty of Nanking"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/decline-and-fall-of-islamic-empires-islamic-study-mcqs/"}
{"subject": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "topic": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "question": ": Which region of the Ottoman Empire declared independence in the early 19th century, signaling the beginning of its fragmentation?", "options": ["Anatolia", "Balkans", "Levant", "North Africa"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/decline-and-fall-of-islamic-empires-islamic-study-mcqs/"}
{"subject": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "topic": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "question": ": The decline of Islamic empires saw the emergence of nationalist movements seeking independence in which region?", "options": ["Middle East", "North Africa", "South Asia", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/decline-and-fall-of-islamic-empires-islamic-study-mcqs/"}
{"subject": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "topic": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "question": ": The decline of the Islamic empires led to increased European colonization and imperialism in which regions?", "options": ["Africa", "Asia", "Middle East", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/decline-and-fall-of-islamic-empires-islamic-study-mcqs/"}
{"subject": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "topic": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "question": ": The decline of the Islamic empires weakened the Muslim world’s position in global trade, leading to the dominance of which European powers?", "options": ["Spain and Portugal", "France and Britain", "Netherlands and Italy", "Germany and Austria"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/decline-and-fall-of-islamic-empires-islamic-study-mcqs/"}
{"subject": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "topic": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "question": ": The decline of the Islamic empires saw the loss of significant territories to which neighboring powers?", "options": ["Russia and Persia", "China and India", "Byzantine Empire and Crusader states", "Mongol Empire and Seljuk Empire"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/decline-and-fall-of-islamic-empires-islamic-study-mcqs/"}
{"subject": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "topic": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "question": ": The decline of the Islamic empires saw the rise of which new regional powers, challenging traditional Muslim rule?", "options": ["Japan and Korea", "China and India", "Russia and Austria", "France and Britain"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/decline-and-fall-of-islamic-empires-islamic-study-mcqs/"}
{"subject": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "topic": "decline-and-fall-of-islamic-empires-islamic-study-mcqs", "question": ": The decline of Islamic empires led to economic stagnation and the loss of which key trade routes?", "options": ["Silk Road and Indian Ocean trade routes", "Spice routes and Trans-Saharan trade routes", "Mediterranean trade routes and Amber Road", "Tea Horse Road and Grand Trunk Road"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/decline-and-fall-of-islamic-empires-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": Geometric patterns are commonly found in Islamic art and architecture due to their:", "options": ["Complexity", "Simplicity", "Symbolism", "Randomness"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": Which of the following shapes is NOT commonly used in Islamic geometric patterns?", "options": ["Circle", "Triangle", "Square", "Hexagon"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": The repeating geometric motifs in Islamic art symbolize:", "options": ["Infinity", "Harmony", "Chaos", "Disorde"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": Islamic geometric patterns often feature intricate:", "options": ["Calligraphy", "Landscapes", "Animal figures", "Floral designs"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": The use of geometric patterns in Islamic art reflects the Islamic concept of:", "options": ["Unity", "Diversity", "Individualism", "Fragmentatio"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": Which mathematical concept is often represented in Islamic geometric patterns?", "options": ["Calculus", "Geometry", "Algebra", "Statistic"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": Islamic geometric patterns are based on principles of:", "options": ["Repetition", "Randomness", "Variation", "Abstraction"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": The use of Islamic geometric patterns in architecture serves to:", "options": ["Confuse observers", "Enhance structural stability", "Emphasize individuality", "Decrease aesthetic appeal"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": Which of the following Islamic architectural elements commonly features geometric patterns?", "options": ["Minaret", "Dome", "Courtyard", "Mihrab"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": Geometric patterns in Islamic art are often used to:", "options": ["Depict historical events", "Represent religious figures", "Express mathematical principles", "Illustrate natural landscapes"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": Islamic geometric patterns are characterized by their:", "options": ["Simplicity", "Complexity", "Uniformity", "Monotony"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": The repetition of geometric shapes in Islamic art symbolizes:", "options": ["Unity", "Fragmentation", "Chaos", "Diversity"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": The term “Islamic geometry” refers to:", "options": ["The study of Islamic shapes", "The use of geometry in Islamic art", "Islamic contributions to geometry", "The geometry of Islamic countries"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": The intricate interlocking patterns in Islamic art represent:", "options": ["Interconnectedness", "Isolation", "Randomness", "Individualism"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": Geometric patterns in Islamic art are often seen in:", "options": ["Textiles", "Pottery", "Architecture", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": Which of the following shapes is commonly used in Islamic geometric patterns to represent infinity?", "options": ["Circle", "Square", "Hexagon", "Octagon"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": Islamic geometric patterns are often characterized by their:", "options": ["Symmetry", "Asymmetry", "Complexity", "Minimalis"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "geometric-patterns-islamic-study-mcqs", "topic": "geometric-patterns-islamic-study-mcqs", "question": ": Islamic geometric patterns are influenced by:", "options": ["Persian art", "Greek art", "Chinese art", "Indian art"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/geometric-patterns-islamic-study-mcqs/"}
{"subject": "islamic-studies-mcqs", "topic": "islamic-studies-mcqs", "question": "The age of Hazrat Muhammad (SAW) when He (SAW) went to Syria with Hazrat Abu-Talib________.", "options": ["24 years", "12 years", "15 years", "35 years"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs/"}
{"subject": "islamic-studies-mcqs", "topic": "islamic-studies-mcqs", "question": "The country which has the highest per capita income in the Muslim world?", "options": ["Kuwait", "Turkey", "Iran", "Saudi Arabia"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs/"}
{"subject": "islamic-studies-mcqs", "topic": "islamic-studies-mcqs", "question": "When did the Habshah migration take place?", "options": ["620 AD", "640 AD", "635 AD", "615 AD"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs/"}
{"subject": "islamic-studies-mcqs", "topic": "islamic-studies-mcqs", "question": "Year of sorrow___________?", "options": ["10th Nabvi", "7th Nabvi", "11th Nabvi", "13th Nabvi"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs/"}
{"subject": "islamic-studies-mcqs", "topic": "islamic-studies-mcqs", "question": "Qibla changed in which Hijri?", "options": ["4th Hijri", "5th Hijri", "2nd Hijri", "1st Hijri"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs/"}
{"subject": "islamic-studies-mcqs", "topic": "islamic-studies-mcqs", "question": "The wife of Hazrat Muhammad (SAW) whose name is Umm-ul-Masakeen?", "options": ["Hazrat Ayesha (RA)", "Hazrat Zainab (RA)", "Hazrat Khadija (RA)", "Hazrat Umme Habiba (RA)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs/"}
{"subject": "islamic-studies-mcqs", "topic": "islamic-studies-mcqs", "question": "Name the youngest son of Hazrat Adam (AS)?", "options": ["Hazrat Shees", "Hazrat Uzair", "Hazrat Umar", "Hazrat Idrees"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs/"}
{"subject": "islamic-studies-mcqs", "topic": "islamic-studies-mcqs", "question": "In the Battle of Badr, how many Sahabah(RA) were martyred?", "options": ["14", "17", "20", "11"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What was the name of Prophet Muhammad’s father?", "options": ["Abdullah", "Abu Talib", "Abdullah ibn Abdul-Muttalib", "Abdullah ibn Abdul-Muttalib ibn Hashim"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": In which year was Prophet Muhammad born?", "options": ["570 CE", "580 CE", "590 CE", "600 CE"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What is the name of the tribe Prophet Muhammad belonged to?", "options": ["Banu Hashim", "Quraysh", "Banu Tamim", "Banu Makhzum"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": At what age did Prophet Muhammad receive his first revelation?", "options": ["35", "40", "45", "50"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What is the name of the cave where Prophet Muhammad received the first revelation?", "options": ["Cave of Thawr", "Cave of Hira", "Cave of Uhud", "Cave of Qubur"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Who was the first person to accept Islam after Prophet Muhammad received the first revelation?", "options": ["Khadijah", "Abu Bakr", "Ali ibn Abi Talib", "Umar ibn al-Khattab"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What is the name of Prophet Muhammad’s wife who was the first person to accept Islam?", "options": ["Fatimah", "Aisha", "Khadijah", "Zaynab"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What is the name of the angel who brought revelations to Prophet Muhammad?", "options": ["Jibreel (Gabriel)", "Mikail (Michael)", "Israfil", "Azrael"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What is the name of Prophet Muhammad’s uncle who raised him after his parents’ death?", "options": ["Abu Bakr", "Ali ibn Abi Talib", "Abdullah", "Abu Talib"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Which event marks the beginning of the Islamic calendar?", "options": ["Migration to Madinah", "Conquest of Makkah", "Birth of Prophet Muhammad", "Hijra (Migration) to Madinah"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": How many children did Prophet Muhammad have?", "options": ["5", "10", "15", "20"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What is the name of Prophet Muhammad’s daughter who married Ali ibn Abi Talib?", "options": ["Fatimah", "Aisha", "Zaynab", "Khadijah"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": In which battle did Prophet Muhammad receive a head injury?", "options": ["Battle of Badr", "Battle of Uhud", "Battle of Khandaq (Trench)", "Battle of Tabuk"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What is the name of the treaty that was signed between the Muslims of Madinah and the Quraysh of Makkah?", "options": ["Treaty of Hudaibiya", "Treaty of Hudaybiyyah", "Treaty of Aqabah", "Treaty of Ta’if"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Which companion of Prophet Muhammad was known as the “Sword of Allah”?", "options": ["Umar ibn al-Khattab", "Abu Bakr", "Ali ibn Abi Talib", "Khalid ibn al-Walid"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What is the name of the Prophet Muhammad’s mosque in Madinah?", "options": ["Masjid al-Aqsa", "Masjid al-Haram", "Masjid al-Nabawi", "Masjid al-Qiblatayn"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What is the meaning of “Rahmatan lil-Alamin,” a phrase associated with Prophet Muhammad?", "options": ["Mercy to the world", "Messenger of Allah", "Prophet of Peace", "Guidance for mankind"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Who was the first caliph after the death of Prophet Muhammad?", "options": ["Abu Bakr", "Umar ibn al-Khattab", "Uthman ibn Affan", "Ali ibn Abi Talib"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Which year did Prophet Muhammad pass away?", "options": ["610 CE", "632 CE", "650 CE", "670 CE"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What is the name of the Islamic holy book revealed to Prophet Muhammad?", "options": ["Injil", "Tawrat", "Quran", "Zabur"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Which event is commemorated during the Islamic holiday of Mawlid al-Nabi?", "options": ["The birth of Prophet Muhammad", "The migration to Madinah", "The revelation of the Quran", "The battle of Badr"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What is the name of the mountain cave near Makkah where Prophet Muhammad received his first revelation?", "options": ["Jabal al-Noor", "Jabal al-Rahmah", "Jabal al-Safa", "Jabal al-Arafat"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Which year did the migration (Hijra) of Prophet Muhammad and his followers from Makkah to Madinah occur?", "options": ["620 CE", "622 CE", "630 CE", "632 CE"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": In which year did Prophet Muhammad conquer Makkah?", "options": ["620 CE", "630 CE", "632 CE", "640 CE"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What is the name of the well in Madinah that was dug by Prophet Muhammad and his companions?", "options": ["Well of Zamzam", "Well of Ruma", "Well of Badr", "Well of Aris"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What is the name of the companion who was known as the “Scribe of the Revelation” for Prophet Muhammad?", "options": ["Abu Bakr", "Umar ibn al-Khattab", "Ali ibn Abi Talib", "Zayd ibn Thabit"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Which battle is known as the “Mother of Battles” in Islamic history?", "options": ["Battle of Badr", "Battle of Uhud", "Battle of Khandaq (Trench)", "Battle of Tabuk"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": What is the name of the Prophet Muhammad’s uncle who initially opposed him but later accepted Islam?", "options": ["Abu Lahab", "Abu Talib", "Abu Sufyan", "Abu Jahl"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "topic": "life-of-prophet-muhammad-pbuh-islamic-study-mcqs", "question": ": Which city did Prophet Muhammad and his followers migrate to during the Hijra?", "options": ["Ta’if", "Makkah", "Madinah", "Jerusalem"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/life-of-prophet-muhammad-pbuh-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": Which of the following is NOT a modern challenge faced by Muslims?", "options": ["Islamophobia", "Environmental conservation", "Extremism", "Technological advancements"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": What is the term for the use of violence and intimidation in the name of Islam?", "options": ["Jihad", "Zakat", "Terrorism", "Taqwa"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": Which of the following is a response to Islamophobia?", "options": ["Interfaith dialogue", "Economic sanctions", "Military intervention", "Censorship"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": What is the term for the practice of adapting Islamic teachings to modern contexts?", "options": ["Sharia law", "Ijtihad", "Fatwa", "Sunnah"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": Which of the following is NOT a modern response to poverty in Islamic societies?", "options": ["Zakat", "Charity organizations", "Economic sanctions", "Microfinance"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": What is the term for the integration of Islamic principles into economic systems?", "options": ["Islamic finance", "Capitalism", "Socialism", "Marxism"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": Which of the following is NOT a modern challenge to Islamic family values?", "options": ["Divorce rates", "Gender equality", "Same-sex marriage", "Interfaith marriage"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": What is the term for the spread of Islamic teachings through digital platforms and social media?", "options": ["Cyberjihad", "Digital dawah", "Technological fatwa", "Virtual Hajj"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": Which of the following is a modern challenge to Islamic education?", "options": ["Lack of access to technology", "Radicalization", "Overemphasis on traditional methods", "Integration of STEM subjects"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": What is the term for the reformation of Islamic teachings and practices to suit modern interpretations?", "options": ["Jihad", "Salafism", "Modernism", "Taqwa"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": Which of the following is a modern response to environmental degradation in Islamic countries?", "options": ["Renewable energy initiatives", "Deforestation", "Industrial pollution", "Urbanization"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": What is the term for the advocacy of Islamic principles in political governance?", "options": ["Sharia law", "Secularism", "Authoritarianism", "Pluralism"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": Which of the following is a modern challenge to Islamic bioethics?", "options": ["Organ transplantation", "Cloning", "Euthanasia", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": What is the term for the adoption of Western cultural norms and practices among Muslims?", "options": ["Modernization", "Islamization", "Westernization", "Secularization"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": Which of the following is NOT a modern response to Islamophobia?", "options": ["Interfaith dialogue", "Legal advocacy", "Retaliation", "Education"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": What is the term for the adaptation of Islamic teachings to address contemporary issues?", "options": ["Ijtihad", "Sunnah", "Fatwa", "Taqlid"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": Which of the following is NOT a modern challenge to Islamic ethics?", "options": ["Business ethics", "Technological advancements", "Environmental conservation", "Social justice"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": What is the term for the use of Islamic teachings to promote peace and harmony in society?", "options": ["Jihad", "Taqwa", "Islamism", "Wasatiyyah"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": Which of the following is a modern challenge to Islamic governance?", "options": ["Authoritarianism", "Democracy", "Technological advancements", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "modern-challenges-and-responses-islamic-study-mcqs", "topic": "modern-challenges-and-responses-islamic-study-mcqs", "question": ": What is the term for the Islamic practice of seeking knowledge?", "options": ["Jihad", "Ijtihad", "Taqwa", "Dhikr"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/modern-challenges-and-responses-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": Islamic ethics and morality are derived primarily from:", "options": ["The Quran", "The Hadith", "Both the Quran and the Hadith", "Historical texts"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": Which term in Islam refers to the moral code and conduct of Muslims?", "options": ["Sharia", "Sunnah", "Akhirah", "Adab"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": The concept of ‘Akhlaq’ in Islam refers to:", "options": ["Ritual prayers", "Moral character and behavior", "Monetary transactions", "Pilgrimage to Mecca"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": The Quran emphasizes the importance of honesty and truthfulness in:", "options": ["Surah Al-Baqarah", "Surah Al-Kahf", "Surah Al-Mulk", "Surah Al-Fatiha"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": Islamic ethics teaches believers to be compassionate and show kindness towards:", "options": ["Fellow Muslims only", "People of their own ethnicity", "All creatures of Allah", "Only those who are wealthy"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": Which of the following is NOT considered a moral virtue in Islam?", "options": ["Justice", "Humility", "Greed", "Patience"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": In Islamic ethics, the concept of ‘Taqlid’ refers to:", "options": ["Charity", "Blind imitation without understanding", "Modesty", "Intellectual inquiry"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": The Prophet Muhammad (PBUH) emphasized the importance of:", "options": ["Anger", "Forgiveness", "Retribution", "Arrogance"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": Which of the following is NOT considered a major sin in Islam?", "options": ["Lying", "Adultery", "Backbiting", "Charity"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": The Islamic principle of ‘Ihsan’ refers to:", "options": ["Honesty", "Sincerity", "Perseverance", "Excellence in worship and conduct"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": The Quran teaches Muslims to:", "options": ["Seek revenge", "Repay evil with kindness", "Pursue material wealth", "Be intolerant towards others’ beliefs"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": Islamic ethics emphasize the importance of:", "options": ["Discrimination", "Equality", "Favoritism", "Exclusivity"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": The concept of ‘Amr Bil Ma’ruf’ in Islam refers to:", "options": ["Enjoining good and forbidding evil", "Being dishonest in business", "Fostering division within the community", "Ignoring societal issues"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": In Islamic ethics, the concept of ‘Hayaa’ refers to:", "options": ["Modesty and decency", "Arrogance and pride", "Hostility and aggression", "Extravagance and luxury"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": The Prophet Muhammad (PBUH) said, “The best among you are those who”:", "options": ["Hoard their wealth", "Are the most powerful", "Are the most generous", "Seek revenge"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": Islamic ethics encourage believers to fulfill their:", "options": ["Desires and whims", "Obligations and duties", "Ambitions and aspirations", "Prejudices and biases"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": In Islam, lying is considered:", "options": ["A virtue", "A minor sin", "A major sin", "Permissible in certain situations"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": The concept of ‘Taqwa’ in Islam refers to:", "options": ["Fear of failure", "Fear of poverty", "Fear of Allah and piety", "Fear of criticism"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": Islamic ethics promote the idea of:", "options": ["Revenge", "Forgiveness", "Retribution", "Hostility"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "islamic-ethics-and-morality-islamic-study-mcqs", "topic": "islamic-ethics-and-morality-islamic-study-mcqs", "question": ": The Quran prohibits Muslims from:", "options": ["Mocking others", "Showing gratitude", "Practicing humility", "Seeking knowledge"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-ethics-and-morality-islamic-study-mcqs/"}
{"subject": "importance-of-hadith-islamic-study-mcqs", "topic": "importance-of-hadith-islamic-study-mcqs", "question": ": Why are Hadith considered important in Islam?", "options": ["They provide historical anecdotes about the Prophet’s life.", "They offer guidance on religious practices and rituals.", "They supplement and elucidate the teachings of the Quran.", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-hadith-islamic-study-mcqs/"}
{"subject": "importance-of-hadith-islamic-study-mcqs", "topic": "importance-of-hadith-islamic-study-mcqs", "question": ": Which of the following is NOT a reason for the importance of Hadith in Islam?", "options": ["Preservation of the Prophet’s legacy", "Clarification of Quranic verses", "Cultural significance", "Legal and ethical guidance"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-hadith-islamic-study-mcqs/"}
{"subject": "importance-of-hadith-islamic-study-mcqs", "topic": "importance-of-hadith-islamic-study-mcqs", "question": ": What role do Hadith play in Islamic jurisprudence?", "options": ["They serve as the primary source of law.", "They provide context for understanding Quranic injunctions.", "They help resolve legal disputes.", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-hadith-islamic-study-mcqs/"}
{"subject": "importance-of-hadith-islamic-study-mcqs", "topic": "importance-of-hadith-islamic-study-mcqs", "question": ": How do scholars authenticate Hadith?", "options": ["By examining the chain of narrators", "By comparing the text with the Quran", "By analyzing the content for consistency", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-hadith-islamic-study-mcqs/"}
{"subject": "importance-of-hadith-islamic-study-mcqs", "topic": "importance-of-hadith-islamic-study-mcqs", "question": ": What distinguishes Sahih al-Bukhari from other Hadith collections?", "options": ["It contains only authenticated Hadith.", "It covers a wide range of topics.", "It is organized thematically.", "It was compiled by Imam Bukhari."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-hadith-islamic-study-mcqs/"}
{"subject": "importance-of-hadith-islamic-study-mcqs", "topic": "importance-of-hadith-islamic-study-mcqs", "question": ": What criteria must a Hadith meet to be classified as Sahih?", "options": ["It must have a continuous chain of trustworthy narrators.", "It must not contradict the Quran or established Sunnah.", "It must be free from defects in narration.", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-hadith-islamic-study-mcqs/"}
{"subject": "importance-of-hadith-islamic-study-mcqs", "topic": "importance-of-hadith-islamic-study-mcqs", "question": ": Which of the following is NOT one of the six major Hadith collections in Sunni Islam?", "options": ["Sunan Abu Dawood", "Sahih al-Bukhari", "Musnad Ibn Hanbal", "Sunan al-Tirmidhi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-hadith-islamic-study-mcqs/"}
{"subject": "importance-of-hadith-islamic-study-mcqs", "topic": "importance-of-hadith-islamic-study-mcqs", "question": ": What is the primary purpose of studying Hadith?", "options": ["To gain historical knowledge", "To understand the Prophet’s character", "To derive religious rulings", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-hadith-islamic-study-mcqs/"}
{"subject": "importance-of-hadith-islamic-study-mcqs", "topic": "importance-of-hadith-islamic-study-mcqs", "question": ": Which of the following is NOT a method of Hadith authentication?", "options": ["Examination of the text for consistency", "Analysis of the narrators’ biographies", "Comparison with the Bible", "Verification of the chain of transmission"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-hadith-islamic-study-mcqs/"}
{"subject": "importance-of-hadith-islamic-study-mcqs", "topic": "importance-of-hadith-islamic-study-mcqs", "question": ": How does the Sunnah complement the Quran in Islamic teachings?", "options": ["It provides additional guidance.", "It clarifies ambiguous Quranic verses.", "It exemplifies the application of Quranic principles.", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/importance-of-hadith-islamic-study-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Holy Prophet Hazrat Muhammad ﷺ offered Jumma Prayer in which of the following A.H?", "options": ["5", "2", "3", "1"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Who organized Namaz-e-Tarawih in the leadership of Imam?", "options": ["Hazrat Umar (R.A)", "Hazrat Usman Ghani (R.A)", "Hazrat Ali (R.A)", "Hazrat Abu Bakar (R.A)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Namaz-i-Taraweeh is?", "options": ["Sunnat", "Wajib", "Faraz", "Mutahab"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": How many times Namaz is commanded in Quran?", "options": ["600", "750", "650", "700"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Namaz-e-Kasoof is offered for which of the following?", "options": ["Lunar eclipse", "Solar eclipse", "Sun eclipse", "None of These"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Namaz-e-Istasqa is offered for which of the following?", "options": ["Lunar eclipse", "Wind", "Rain", "None of These"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Eid Namaz is considered as?", "options": ["Faraz", "Wajib", "Sunnat", "Mustahab"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Namaz-i-Taraweeh is considered as?", "options": ["Mutahab", "Wajib", "Faraz", "Sunnat"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": The parts of Namaz/Prayer/Salat which are compulsory are known as?", "options": ["Faraz", "Sunnat", "Wajib", "Mustahab"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": How many persons are needed for a Jammat Namaz?", "options": ["3", "2", "4", "1"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": What is the total number of Faraiz of a Namaz?", "options": ["Three", "Four", "Five", "Six"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Sajdah is not performed in which of the following Namaz (Salat)?", "options": ["Salat-e-Janaza", "Salat-e-Kisoof", "Salat-e-Tahajjud", "Salat-e-Ishraq"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Which of the following Namaz is offered by Muslims for rain during the period of draught?", "options": ["Namaz-e-Khisoof", "Namaz-e-Istasqa", "Namaz-e-Ishraq", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Which of the following city is the city in which Namaz-e-Jumma became a Farz on Muslims?", "options": ["Jaddah", "Bait-ul-Maqdis", "Makkah", "Madinah"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": How many total Sunnat Rakaats in Namaz-E-Fajar?", "options": ["Eight", "Four", "Six", "Two"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Which of the following Nafli Namaz is most loved by Allah?", "options": ["Zawaal", "Ishraq", "Chasht", "Tahajjud"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": The parts of Namaz/Prayer/Salat which are compulsory are referred as?", "options": ["Faraz", "Sunnat", "Wajib", "Mustahab"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Takbeer-e-Tashreeq is recited in which of the following Namaz?", "options": ["Eid Fittar", "Eid ul Azha", "Funeral", "None of These"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Extra Takbeers are offered in which of the following Namaz?", "options": ["Eid", "Jumma Prayer", "Funeral Prayer", "None Of These"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Namaz-i-Taraweeh is:", "options": ["Faraz", "Wajib", "Sunnat", "Mutahab"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": The parts of Namaz/Prayer/Salat which are compulsory are called:", "options": ["Faraz", "Sunnat", "Wajib", "Mustahab"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": 5 Namaz made compulsory in which of the following Nabvi?", "options": ["11th", "9th", "10th", "12th"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Jalsa in Namaz is short pause between which of the following?", "options": ["Rukuh", "Qaumaa", "Sajdas", "None Of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Qaumaa in Namaz is standing straight which of the following?", "options": ["Sajda", "Rukuh", "Qaida Akheerah", "None of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Types of Sunnah Prayers are of how many Types:", "options": ["Three", "Four", "Two", "Five"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Namaz was made obligatory during the Holy Prophet Hazrat Muhammad ﷺ Miraj in which of the following Nabvi?", "options": ["9th", "10th", "11th", "8th"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "namaz-mcqs", "topic": "namaz-mcqs", "question": ": Which of the following Namaz (prayers, Salat) is not preceded by Azan?", "options": ["Eid ul Fitar", "Eid ul Azha", "Funeral Prayer", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/namaz-mcqs/"}
{"subject": "principles-of-islamic-finance-islamic-study-mcqs", "topic": "principles-of-islamic-finance-islamic-study-mcqs", "question": ": Which principle of Islamic finance prohibits interest-based transactions?", "options": ["Riba", "Murabaha", "Takaful", "Istisna"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/principles-of-islamic-finance-islamic-study-mcqs/"}
{"subject": "principles-of-islamic-finance-islamic-study-mcqs", "topic": "principles-of-islamic-finance-islamic-study-mcqs", "question": ": What does “Ijarah” entail in Islamic finance?", "options": ["Profit sharing", "Cost-plus financing", "Leasing", "Venture capital investment"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/principles-of-islamic-finance-islamic-study-mcqs/"}
{"subject": "principles-of-islamic-finance-islamic-study-mcqs", "topic": "principles-of-islamic-finance-islamic-study-mcqs", "question": ": Which Islamic finance principle involves profit-sharing arrangements?", "options": ["Musharakah", "Murabaha", "Waqf", "Qard Hasan"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/principles-of-islamic-finance-islamic-study-mcqs/"}
{"subject": "principles-of-islamic-finance-islamic-study-mcqs", "topic": "principles-of-islamic-finance-islamic-study-mcqs", "question": ": What is the Islamic term for a partnership-based contract in which profits and losses are shared?", "options": ["Mudarabah", "Murabaha", "Tawarruq", "Istisna"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/principles-of-islamic-finance-islamic-study-mcqs/"}
{"subject": "principles-of-islamic-finance-islamic-study-mcqs", "topic": "principles-of-islamic-finance-islamic-study-mcqs", "question": ": In Islamic finance, what does “Musharakah” refer to?", "options": ["Asset leasing", "Cost-plus financing", "Partnership", "Interest payment"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/principles-of-islamic-finance-islamic-study-mcqs/"}
{"subject": "principles-of-islamic-finance-islamic-study-mcqs", "topic": "principles-of-islamic-finance-islamic-study-mcqs", "question": ": What is “Waqf” in Islamic finance?", "options": ["Islamic bonds", "Charitable endowment", "Interest-free loan", "Commodity trading"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/principles-of-islamic-finance-islamic-study-mcqs/"}
{"subject": "principles-of-islamic-finance-islamic-study-mcqs", "topic": "principles-of-islamic-finance-islamic-study-mcqs", "question": ": Which principle of Islamic finance involves deferred payments with a markup?", "options": ["Murabaha", "Mudarabah", "Ijarah", "Takaful"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/principles-of-islamic-finance-islamic-study-mcqs/"}
{"subject": "principles-of-islamic-finance-islamic-study-mcqs", "topic": "principles-of-islamic-finance-islamic-study-mcqs", "question": ": What is “Qard Hasan” in Islamic finance?", "options": ["An interest-free loan", "Profit sharing", "Asset leasing", "Currency trading"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/principles-of-islamic-finance-islamic-study-mcqs/"}
{"subject": "principles-of-islamic-finance-islamic-study-mcqs", "topic": "principles-of-islamic-finance-islamic-study-mcqs", "question": ": Which principle of Islamic finance involves risk-sharing between parties?", "options": ["Mudarabah", "Murabaha", "Tawarruq", "Takaful"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/principles-of-islamic-finance-islamic-study-mcqs/"}
{"subject": "principles-of-islamic-finance-islamic-study-mcqs", "topic": "principles-of-islamic-finance-islamic-study-mcqs", "question": ": What is “Tawarruq” in Islamic finance?", "options": ["Islamic bonds", "Profit sharing", "Asset leasing", "Commodity trading"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/principles-of-islamic-finance-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": What is Shariah?", "options": ["Islamic law derived from the Quran and Sunnah", "Traditional customs of Muslim-majority countries", "Laws enacted by governments in Muslim countries", "Religious rituals practiced by Muslims"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": Which of the following is NOT a source of Shariah?", "options": ["Quran", "Sunnah", "Ijma", "Fatwa"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": What does the term “fiqh” refer to in Islamic jurisprudence?", "options": ["The study of Quranic verses", "The understanding and interpretation of Shariah", "The collection of Hadith", "The consensus of scholars"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": Which branch of Islamic law deals with financial transactions?", "options": ["Usul al-Fiqh", "Criminal law", "Family law", "Islamic finance"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": What is the role of a mufti in Islamic law?", "options": ["To lead prayers in mosques", "To interpret Islamic law and issue religious opinions", "To conduct marriages and divorces", "To enforce Shariah in society"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": Which of the following is NOT considered a Hudud offense in Islamic law?", "options": ["Theft", "Adultery", "Apostasy", "Murder"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": What does the term “Qisas” refer to in Islamic law?", "options": ["Retribution or punishment equal to the crime committed", "Compensation paid to the victim or their family", "Forgiveness granted by the victim or their family", "Expiation for sins through acts of worship"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": In Islamic law, what does “Dhimmis” refer to?", "options": ["Muslims who have committed major sins", "Non-Muslims living under Muslim rule", "Female relatives who are entitled to inheritance", "Scholars specializing in Islamic jurisprudence"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": What is the purpose of Shariah-compliant finance?", "options": ["To promote economic development", "To adhere to Islamic principles and avoid interest", "To facilitate international trade", "To regulate financial markets"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": What is the significance of “Istislah” in Islamic law?", "options": ["Consensus among scholars", "Public interest or welfare", "Legal analogy", "Discretionary preference by a jurist"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": Which school of Islamic law is known for its emphasis on rationality and reasoning?", "options": ["Hanafi", "Shafi’i", "Maliki", "Hanbali"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": What is the primary objective of Islamic law?", "options": ["To impose strict punishments on wrongdoers", "To establish social justice and equity", "To preserve traditional customs and practices", "To promote religious rituals and ceremonies"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": What is the role of Shariah councils in Muslim-majority countries?", "options": ["To enforce Shariah law through the judicial system", "To issue fatwas on various religious matters", "To regulate the economy and financial transactions", "To monitor adherence to Islamic dress codes"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": What is the concept of “Taqwa” in Islamic ethics?", "options": ["The obligation to perform daily prayers", "God-consciousness or piety", "The duty to give to charity", "The practice of fasting during Ramadan"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": What does Shariah say about the consumption of alcohol?", "options": ["It is permissible in moderation", "It is encouraged for social gatherings", "It is strictly prohibited", "It is allowed for medicinal purposes"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": What is the primary role of Shariah courts in Islamic countries?", "options": ["To enforce criminal law", "To resolve disputes in accordance with Islamic law", "To administer punishments for moral offenses", "To regulate religious practices"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": In Islamic law, what is the punishment for theft?", "options": ["Imprisonment", "Fines", "Amputation of the hand", "Public flogging"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": Which branch of Islamic law deals with issues related to marriage and family?", "options": ["Criminal law", "Constitutional law", "Civil law", "Personal status law"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": What is the concept of “Ijara” in Islamic finance?", "options": ["Profit-sharing partnership", "Lease or rental agreement", "Interest-free loan", "Sale of goods at a deferred price"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shariah-and-its-application-islamic-study-mcqs", "topic": "shariah-and-its-application-islamic-study-mcqs", "question": ": Which of the following is NOT a principle of Islamic finance?", "options": ["Prohibition of interest (riba)", "Risk-sharing", "Speculation and gambling", "Social justice and equity"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shariah-and-its-application-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What is the Shahada?", "options": ["The pilgrimage to Mecca", "Fasting during Ramadan", "The declaration of faith in Islam", "Charity to the poor"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What is the significance of the Shahada in Islam?", "options": ["It marks the beginning of Ramadan", "It signifies the acceptance of Islam and the unity of God", "It commemorates the birth of the Prophet Muhammad", "It celebrates the end of Hajj"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": How many parts are there in the Shahada?", "options": ["One", "Two", "Three", "Four"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What are the two parts of the Shahada?", "options": ["Belief in Allah and His angels", "Belief in Allah and the Quran", "There is no god but Allah, Muhammad is the Messenger of Allah", "There is no god but Allah, and He has no partners"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What does the first part of the Shahada affirm?", "options": ["The oneness of Allah", "The importance of prayer", "The obligation to perform Hajj", "The significance of charity"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What does the second part of the Shahada affirm?", "options": ["The importance of fasting", "The duty to perform Zakat", "The authority of the Quran", "The prophethood of Muhammad"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": Who recites the Shahada?", "options": ["Only Muslims during Ramadan", "Only Muslims during Hajj", "Only Muslims during Friday prayers", "Anyone converting to Islam"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": When is the Shahada recited?", "options": ["During the call to prayer", "During the five daily prayers", "During the funeral prayer", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What is the purpose of reciting the Shahada?", "options": ["To seek forgiveness from Allah", "To express gratitude for blessings", "To affirm one’s faith in Islam", "To fulfill a religious obligation"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What does the Shahada symbolize for Muslims?", "options": ["Obedience to religious leaders", "Devotion to family", "Submission to the will of Allah", "Loyalty to the Quran"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": Who is considered a witness to the Shahada?", "options": ["The local Imam", "The person reciting it", "Close family members", "The entire Muslim community"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What does the Shahada emphasize?", "options": ["The importance of education", "The significance of community service", "The fundamental beliefs of Islam", "The need for physical fitness"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What is the primary language of the Shahada?", "options": ["Arabic", "Urdu", "English", "Persian"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": How many times a day do Muslims recite the Shahada during their prayers?", "options": ["Once", "Twice", "Three times", "Four times"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What does the recitation of the Shahada signify during the funeral prayer?", "options": ["The deceased’s commitment to charity", "The deceased’s acceptance into paradise", "The deceased’s belief in the afterlife", "The deceased’s adherence to religious rituals"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What is the Shahada also known as?", "options": ["The Testimony of Faith", "The Journey to Mecca", "The Night of Power", "The Feast of Sacrifice"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": In which Surah of the Quran is the Shahada mentioned?", "options": ["Surah Al-Fatihah", "Surah Al-Ikhlas", "Surah Al-Baqarah", "Surah Al-Anfal"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What does the Shahada serve as for Muslims?", "options": ["A reminder of their duties", "A declaration of their identity", "A guide for daily living", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What is the significance of the Shahada for new converts to Islam?", "options": ["It marks the beginning of their spiritual journey", "It grants them access to paradise", "It frees them from all past sins", "It requires them to perform additional rituals"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": How does the Shahada influence a Muslim’s daily life?", "options": ["It reminds them to follow cultural traditions", "It reinforces their commitment to Islamic beliefs", "It restricts their daily activities", "It promotes political engagement"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What is a requirement for someone to become a Muslim?", "options": ["Performing Hajj", "Reading the Quran", "Reciting the Shahada with conviction", "Donating to charity"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What aspect of Islamic belief does the second part of the Shahada emphasize?", "options": ["The importance of charity", "The belief in prophets", "The power of angels", "The significance of prayer"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What does the first part of the Shahada declare?", "options": ["Belief in the hereafter", "That Muhammad is the last prophet", "That there is no god but Allah", "That Muslims must pray five times a day"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": How is the Shahada related to Islamic monotheism?", "options": ["It supports belief in many gods", "It promotes idol worship", "It affirms the oneness of God", "It mentions various religious figures"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": Why is the Shahada important in Islamic rituals?", "options": ["It brings wealth", "It allows participation in political activities", "It establishes a connection with Allah", "It replaces the need for prayer"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": How do Muslims express their acceptance of faith publicly?", "options": ["By donating to charity", "By observing Ramadan", "By reciting the Shahada", "By visiting a mosque"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": Which part of the Shahada confirms belief in Muhammad?", "options": ["The opening verse", "The phrase “La ilaha illallah”", "The words “Muhammadur Rasulullah”", "The reference to the Quran"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What is the effect of sincerely believing in and reciting the Shahada?", "options": ["It ensures one’s social status", "It is enough for salvation", "It makes one a Muslim", "It grants religious authority"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "shahada-declaration-of-faith-islamic-study-mcqs", "topic": "shahada-declaration-of-faith-islamic-study-mcqs", "question": ": What role does the Shahada play in Islamic prayers?", "options": ["It ends the prayer", "It replaces the Quran recitation", "It is recited in the call to prayer", "It is optional for advanced believers"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/shahada-declaration-of-faith-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": Who is qualified to perform Tafsir according to Islamic tradition?", "options": ["Only scholars with formal religious education", "Anyone with a deep understanding of Arabic", "Only prophets and messengers", "It depends on the context and purpose"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": Which of the following is NOT a primary source used in Tafsir?", "options": ["The Quran itself", "Hadith (Prophetic traditions)", "Classical Arabic poetry", "Linguistic analysis"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": What is the purpose of Tafsir?", "options": ["To provide historical context", "To extract legal rulings", "To understand the intended meanings of Quranic verses", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": Which of the following is an example of a classical Tafsir work?", "options": ["Sahih al-Bukhari", "Sahih Muslim", "Tafsir al-Jalalayn", "Musnad Ahmad"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": What does “Tafsir bi’l-Ma’thur” mean?", "options": ["Tafsir based on the Quran and Sunnah", "Tafsir based on linguistic analysis", "Tafsir based on rational deduction", "Tafsir based on personal opinion"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": Which Tafsir method focuses on the linguistic and grammatical aspects of the Quran?", "options": ["Tafsir bi’l-Ra’y", "Tafsir bi’l-Ma’thur", "Tafsir bi’l-Rijal", "Tafsir bi’l-Ma’qul"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": Who is known for compiling one of the most famous Sunni Tafsirs, known as “Tafsir al-Jalalayn”?", "options": ["Imam Abu Hanifa", "Imam Malik ibn Anas", "Imam al-Qurtubi", "Jalal al-Din al-Mahalli and Jalal al-Din al-Suyuti"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": Which Tafsir method relies on the understanding of early scholars and companions of the Prophet Muhammad (PBUH)?", "options": ["Tafsir bi’l-Ra’y", "Tafsir bi’l-Ma’thur", "Tafsir bi’l-Rijal", "Tafsir bi’l-Riwayah"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": What is the role of contextual analysis in Tafsir?", "options": ["To understand the historical circumstances of revelation", "To extract legal rulings", "To provide linguistic analysis", "To interpret the Quran allegorically"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": Which Tafsir method focuses on personal reasoning and interpretation?", "options": ["Tafsir bi’l-Ra’y", "Tafsir bi’l-Ma’thur", "Tafsir bi’l-Rijal", "Tafsir bi’l-Ma’qul"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": What does the term “Tafsir al-Qur’an bi’l-Qur’an” refer to?", "options": ["Tafsir based on the Quran and Sunnah", "Tafsir based on linguistic analysis", "Tafsir based on using other Quranic verses to interpret a verse", "Tafsir based on personal opinion"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": Who is known for compiling the Tafsir known as “Tafsir al-Kashaf”?", "options": ["Imam al-Qurtubi", "Imam al-Tabari", "Imam al-Zamakhshari", "Imam al-Razi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": Which Tafsir method focuses on the transmission and authenticity of narrations related to the Quranic verses?", "options": ["Tafsir bi’l-Ra’y", "Tafsir bi’l-Ma’thur", "Tafsir bi’l-Rijal", "Tafsir bi’l-Ma’qul"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": What is the significance of Tafsir in Islamic scholarship?", "options": ["It helps Muslims understand the Quran’s message and teachings.", "It provides legal guidance for daily life.", "It preserves the linguistic nuances of the Arabic language.", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": Tafsir al-Jalalayn is a collaborative work between which two scholars?", "options": ["Imam al-Razi and Imam al-Tabari", "Imam al-Qurtubi and Imam al-Zamakhshari", "Jalal al-Din al-Mahalli and Jalal al-Din al-Suyuti", "Imam al-Ghazali and Imam al-Shafi’i"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": What does “Tafsir bi’l-Ra’y” mean?", "options": ["Tafsir based on personal opinion", "Tafsir based on linguistic analysis", "Tafsir based on using other Quranic verses to interpret a verse", "Tafsir based on the Quran and Sunnah"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": Which Tafsir method focuses on the Quranic verses themselves without relying on external sources?", "options": ["Tafsir bi’l-Ra’y", "Tafsir bi’l-Ma’thur", "Tafsir bi’l-Rijal", "Tafsir bi’l-Ma’qul"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": Who is known for compiling the Tafsir known as “Tafsir Ibn Kathir”?", "options": ["Ibn Taymiyyah", "Ibn Hajar al-Asqalani", "Ibn Qayyim al-Jawziyya", "Ibn Kathir"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "interpretation-tafsir-of-quran-islamic-study-mcqs", "topic": "interpretation-tafsir-of-quran-islamic-study-mcqs", "question": ": Which Tafsir method focuses on using reason and intellect to interpret the Quran?", "options": ["Tafsir bi’l-Ra’y", "Tafsir bi’l-Ma’thur", "Tafsir bi’l-Rijal", "Tafsir bi’l-Ma’qul"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/interpretation-tafsir-of-quran-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": Who was the first person to pledge allegiance to Prophet Muhammad (PBUH) before the Hijra?", "options": ["Abu Bakr", "Umar ibn al-Khattab", "Ali ibn Abi Talib", "Khadijah bint Khuwaylid"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": In which year did the Hijra take place?", "options": ["610 CE", "622 CE", "632 CE", "570 CE"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": What is the name of the companion who accompanied Prophet Muhammad (PBUH) during the Hijra?", "options": ["Abu Bakr", "Umar", "Ali", "Zayd"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": What was the name of the cave where Prophet Muhammad (PBUH) and Abu Bakr took refuge during the Hijra?", "options": ["Cave of Hira", "Cave of Thawr", "Cave of Uhud", "Cave of Safa"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": Who was chosen as the leader of the Ansar (residents of Medina) by Prophet Muhammad (PBUH) after the Hijra?", "options": ["Abu Bakr", "Umar", "Sa’d ibn Mu’adh", "Ali"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": What was the name of the Jewish tribe that welcomed Prophet Muhammad (PBUH) in Medina?", "options": ["Banu Qurayza", "Banu Nadir", "Banu Qaynuqa", "Banu Aws"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": What event marks the beginning of the Islamic calendar (Hijri calendar)?", "options": ["The birth of Prophet Muhammad", "The death of Prophet Muhammad", "The Hijra (Migration to Medina)", "The conquest of Mecca"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": What is the literal meaning of the word “Hijra”?", "options": ["Emigration", "Pilgrimage", "Revelation", "Fasting"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": Who did Prophet Muhammad (PBUH) stay with upon his arrival in Medina?", "options": ["Sa’d ibn Mu’adh", "Abu Bakr", "Anas ibn Malik", "Abu Talib"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": How many companions accompanied Prophet Muhammad (PBUH) during the Hijra?", "options": ["100", "313", "70", "40"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": What was the name of the companion who guided Prophet Muhammad (PBUH) to Medina during the Hijra?", "options": ["Abdullah ibn Mas’ud", "Abdullah ibn Umm Maktum", "Abdullah ibn Salam", "Abdullah ibn Abbas"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": Which Surah in the Quran refers to the event of Hijra?", "options": ["Surah Al-Fatiha", "Surah Al-Kahf", "Surah Al-Anfal", "Surah Al-Tawbah"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": What did Prophet Muhammad (PBUH) leave behind in Makkah before the Hijra?", "options": ["His family", "His wealth", "His companions", "His mosque"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": What did the Quraysh tribe plan to do to Prophet Muhammad (PBUH) during the Hijra?", "options": ["Kill him", "Imprison him", "Expel him", "Honor him"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": What was the name of the person who tracked Prophet Muhammad (PBUH) during the Hijra but failed to capture him?", "options": ["Abu Lahab", "Abu Jahl", "Abu Sufyan", "Abu Talib"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": What did Prophet Muhammad (PBUH) recite upon entering Medina during the Hijra?", "options": ["Surah Al-Fatiha", "Surah Al-Kahf", "Surah Al-Ikhlas", "Surah Al-Anfal"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": What was the original destination of the Hijra before it was changed to Medina?", "options": ["Abyssinia", "Yemen", "Ta’if", "Yathrib (Medina)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": Who was the last person to leave Makkah during the Hijra?", "options": ["Ali ibn Abi Talib", "Uthman ibn Affan", "Prophet Muhammad (PBUH)", "Abu Bakr"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": What did Prophet Muhammad (PBUH) do upon arriving in Quba, a suburb of Medina?", "options": ["Built the first mosque", "Started preaching Islam", "Met with the leaders of Medina", "Rested for a month"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": Who provided shelter to Prophet Muhammad (PBUH) and Abu Bakr during the Hijra?", "options": ["Uthman ibn Affan", "Abdullah ibn Mas’ud", "Umm Ma’bad", "Abdullah ibn Umm Maktum"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": What is the significance of the Hijra in Islamic history?", "options": ["It marks the beginning of the Islamic lunar calendar.", "It marks the beginning of Prophet Muhammad’s prophethood.", "It marks the end of the persecution of Muslims in Makkah.", "It marks the beginning of Hajj pilgrimage."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": What is the Arabic term for the migration of Prophet Muhammad (PBUH) from Makkah to Medina?", "options": ["Hijra", "Hajj", "Umrah", "Isra"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": Which direction did Prophet Muhammad (PBUH) travel during the Hijra?", "options": ["North", "South", "East", "West"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": What did the Quraysh tribe offer as a reward for the capture of Prophet Muhammad (PBUH) during the Hijra?", "options": ["Gold coins", "Camels", "A large sum of money", "One hundred camels"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": How many days did it take Prophet Muhammad (PBUH) to reach Medina from Makkah during the Hijra?", "options": ["Seven", "Ten", "Thirteen", "Fifteen"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": Who was the guide who led Prophet Muhammad (PBUH) and Abu Bakr to the Cave of Thawr during the Hijra?", "options": ["Abdullah ibn Umm Maktum", "Abdullah ibn Salam", "Abdullah ibn Mas’ud", "Abdullah ibn Abi Bakr"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": What was the name of the camel used by Prophet Muhammad (PBUH) during the Hijra?", "options": ["Al-Qaswa", "Al-Buraq", "Al-Zulfiqar", "Al-Abbas"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": Which city did Prophet Muhammad (PBUH) travel to before reaching Quba during the Hijra?", "options": ["Ta’if", "Yathrib (Medina)", "Abyssinia", "Tabuk"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "hijra-migration-to-medina-islamic-study-mcqs", "topic": "hijra-migration-to-medina-islamic-study-mcqs", "question": ": What is the significance of the Hijra in Islam?", "options": ["It marks the beginning of Islamic civilization.", "It symbolizes the victory of truth over falsehood.", "It established the first Islamic state in Medina.", "All of the above."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hijra-migration-to-medina-islamic-study-mcqs/"}
{"subject": "islamiat-compulsory-mcqs", "topic": "islamiat-compulsory-mcqs", "question": ": In the Holy Quran, how many times Zakat appears in Salat . . . .", "options": ["33", "31", "30", "32"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-compulsory-mcqs/"}
{"subject": "islamiat-compulsory-mcqs", "topic": "islamiat-compulsory-mcqs", "question": ": The backbone of the economic system of Islam is . . . .", "options": ["Zakat", "Jehad", "Tax", "UshrAnswer: (A) Zakat"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-compulsory-mcqs/"}
{"subject": "islamiat-compulsory-mcqs", "topic": "islamiat-compulsory-mcqs", "question": ": The word Zakat is derived from . . . .", "options": ["Zaka", "Tazkiya", "Zakariya", "A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-compulsory-mcqs/"}
{"subject": "islamiat-compulsory-mcqs", "topic": "islamiat-compulsory-mcqs", "question": ": Meaning of Muzdalfa is . . . .", "options": ["Stream", "Desert", "Forest", "Plain"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-compulsory-mcqs/"}
{"subject": "islamiat-compulsory-mcqs", "topic": "islamiat-compulsory-mcqs", "question": ": In the Quran, the smallest number of verses in a surah is . . . .", "options": ["Six", "Two", "One", "Four"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-compulsory-mcqs/"}
{"subject": "islamiat-compulsory-mcqs", "topic": "islamiat-compulsory-mcqs", "question": ": Total number of Mosques mentioned in the Holy Quran . . . .", "options": ["15", "3", "4", "10"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-compulsory-mcqs/"}
{"subject": "islamiat-compulsory-mcqs", "topic": "islamiat-compulsory-mcqs", "question": ": Total number of Manazil in the Holy Quran . . . .", "options": ["7", "10", "8", "15"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-compulsory-mcqs/"}
{"subject": "islamiat-compulsory-mcqs", "topic": "islamiat-compulsory-mcqs", "question": ": How many parts is the Holy Quran divided into . . . .", "options": ["Twenty Five", "Twenty", "Thirty", "Ten"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-compulsory-mcqs/"}
{"subject": "islamiat-compulsory-mcqs", "topic": "islamiat-compulsory-mcqs", "question": ": Islamic law is called . . . .", "options": ["Independence", "Orudence", "Jurisprudence", "All of them"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-compulsory-mcqs/"}
{"subject": "islamiat-compulsory-mcqs", "topic": "islamiat-compulsory-mcqs", "question": ": After assuming Ihraam, the most important step of Hajj is . . . .", "options": ["Rami", "Waquf", "Tawaf", "Jamarat"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-compulsory-mcqs/"}
{"subject": "islamiat-compulsory-mcqs", "topic": "islamiat-compulsory-mcqs", "question": ": After Waquf, the second important step of Hajj is . . . .", "options": ["Tawaf", "Sacrifice", "Say’ee", "Rami"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-compulsory-mcqs/"}
{"subject": "islamiat-compulsory-mcqs", "topic": "islamiat-compulsory-mcqs", "question": ": The meaning of Holy Quran is . . . .", "options": ["He collected together", "He recited", "He read", "All of them"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-compulsory-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the first pillar of Islam?", "options": ["Sawm (Fasting)", "Shahada (Faith)", "Zakat (Charity)", "Hajj (Pilgrimage)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which pillar of Islam involves the declaration of faith?", "options": ["Sawm (Fasting)", "Shahada (Faith)", "Salat (Prayer)", "Zakat (Charity)"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": How many times a day is Salat (Prayer) performed?", "options": ["Two times", "Three times", "Four times", "Five times"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which month of the Islamic calendar is designated for fasting during Ramadan?", "options": ["Muharram", "Rabi’ al-Awwal", "Rajab", "Ramadan"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the name of the obligatory charity given by Muslims as part of their faith?", "options": ["Sawm", "Shahada", "Zakat", "Hajj"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": How many times in a lifetime is Hajj (Pilgrimage) obligatory for Muslims who are physically and financially able?", "options": ["Once", "Twice", "Thrice", "Four times"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which pillar of Islam involves fasting from dawn to sunset during the month of Ramadan?", "options": ["Salat", "Zakat", "Sawm", "Hajj"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which pillar of Islam signifies the physical and spiritual journey to the holy city of Mecca?", "options": ["Salat", "Zakat", "Sawm", "Hajj"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the Arabic term for the declaration of faith?", "options": ["Taqwa", "Shahada", "Iman", "Tawhid"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the minimum amount of wealth a Muslim must possess to be eligible to pay Zakat?", "options": ["2.5%", "5%", "7.5%", "10%"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which of the Five Pillars of Islam emphasizes the importance of community and unity among Muslims?", "options": ["Salat", "Zakat", "Sawm", "Shahada"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": During which month is the importance of Zakat often emphasized?", "options": ["Muharram", "Rajab", "Ramadan", "Shawwal"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": How many units of prayer are there in each Salat?", "options": ["1", "2", "3", "4"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the Arabic term for the pilgrimage to Mecca?", "options": ["Umrah", "Hajj", "Ihram", "Tawaf"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which of the Five Pillars of Islam is considered the cornerstone of the religion?", "options": ["Salat", "Sawm", "Shahada", "Zakat"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which pillar of Islam involves the physical act of bowing and prostration in prayer?", "options": ["Shahada", "Salat", "Sawm", "Hajj"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which pillar of Islam serves as a reminder of the importance of self-discipline and empathy for the less fortunate?", "options": ["Salat", "Zakat", "Hajj", "Sawm"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": How many days does the Hajj pilgrimage typically last?", "options": ["3", "5", "7", "10"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the Arabic term for the ritual circumambulation of the Kaaba during Hajj and Umrah?", "options": ["Tawaf", "Ihram", "Arafat", "Mina"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the name of the prayer leader in a mosque who leads the congregation in Salat?", "options": ["Imam", "Mufti", "Muezzin", "Khateeb"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which of the Five Pillars of Islam is observed by reciting specific prayers in Arabic five times a day?", "options": ["Shahada", "Salat", "Zakat", "Hajj"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the significance of the pilgrimage to Mecca during Hajj?", "options": ["To commemorate the sacrifice of Prophet Ibrahim (Abraham)", "To celebrate the birth of the Prophet Muhammad", "To mark the end of Ramadan", "To honor the Prophet Moses (Musa)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which of the Five Pillars of Islam involves giving up food, drink, and other physical needs from dawn to sunset during Ramadan?", "options": ["Shahada", "Salat", "Sawm", "Zakat"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the Arabic term for the charity given voluntarily in addition to Zakat?", "options": ["Sadaqah", "Fitrah", "Khums", "Fidyah"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which of the Five Pillars of Islam is considered a physical and spiritual act of worship?", "options": ["Shahada", "Salat", "Zakat", "Hajj"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the purpose of Zakat in Islam?", "options": ["To purify one’s wealth and soul", "To commemorate the birth of the Prophet Muhammad", "To mark the end of Ramadan", "To honor the Prophet Ibrahim (Abraham)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": During which Islamic month is fasting obligatory for all adult Muslims (with exceptions)?", "options": ["Muharram", "Rabi’ al-Awwal", "Ramadan", "Shawwal"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which of the Five Pillars of Islam involves giving a portion of one’s wealth to those in need?", "options": ["Salat", "Sawm", "Zakat", "Hajj"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the significance of the Hajj pilgrimage in Islam?", "options": ["It commemorates the revelation of the Quran to the Prophet Muhammad", "It marks the end of Ramadan", "It commemorates the sacrifice of Prophet Ibrahim (Abraham)", "It celebrates the birth of the Prophet Muhammad"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the Arabic term for the pilgrimage to Mecca that can be undertaken at any time of the year?", "options": ["Hajj", "Umrah", "Ihram", "Tawaf"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which of the Five Pillars of Islam is recited in the call to prayer (Adhan)?", "options": ["Shahada", "Salat", "Sawm", "Zakat"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which pillar of Islam emphasizes the importance of maintaining self-discipline and control over one’s desires?", "options": ["Salat", "Zakat", "Sawm", "Hajj"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the Arabic term for the ritual sacrifice performed by Muslims during Hajj?", "options": ["Tawaf", "Ihram", "Arafat", "Qurbani"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": How many days of fasting are there in Ramadan?", "options": ["25", "28", "29 or 30", "31"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which of the Five Pillars of Islam involves facing the Kaaba in Mecca while performing prayers?", "options": ["Shahada", "Salat", "Zakat", "Hajj"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the Arabic term for the pilgrimage to Mount Arafat during Hajj?", "options": ["Tawaf", "Ihram", "Arafat", "Mina"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which of the Five Pillars of Islam is considered a test of patience and devotion to Allah?", "options": ["Salat", "Zakat", "Sawm", "Hajj"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the significance of the Shahada for a Muslim?", "options": ["It marks the beginning of adulthood", "It signifies the acceptance of Islam and the unity of God", "It commemorates the birth of the Prophet Muhammad", "It celebrates the end of Ramadan"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": During which Islamic month is fasting considered invalid?", "options": ["Muharram", "Rajab", "Ramadan", "Shawwal"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the Arabic term for the annual Islamic charity given to those in need before Eid al-Fitr?", "options": ["Fitrah", "Zakat", "Sadaqah", "Khums"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which of the Five Pillars of Islam signifies the commitment to the Muslim community and the welfare of others?", "options": ["Salat", "Zakat", "Sawm", "Hajj"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the Arabic term for the state of ritual consecration entered into before performing Hajj or Umrah?", "options": ["Tawaf", "Ihram", "Arafat", "Mina"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the name of the evening meal that breaks the fast during Ramadan?", "options": ["Iftar", "Suhoor", "Taraweeh", "Sahoor"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which of the Five Pillars of Islam is considered a form of worship and obedience to Allah?", "options": ["Salat", "Zakat", "Sawm", "Hajj"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": What is the Arabic term for the charity given by Muslims to the poor and needy?", "options": ["Sadaqah", "Zakat", "Fitrah", "Khums"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": How many times is the Shahada recited during the daily prayers?", "options": ["Once", "Twice", "Thrice", "Four times"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which of the Five Pillars of Islam emphasizes the importance of giving thanks for one’s blessings?", "options": ["Salat", "Zakat", "Sawm", "Hajj"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "five-pillars-of-islam-mcqs", "topic": "five-pillars-of-islam-mcqs", "question": ": Which of the Five Pillars of Islam is observed during the month of Dhul Hijjah?", "options": ["Salat", "Zakat", "Sawm", "Hajj"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/five-pillars-of-islam-mcqs/"}
{"subject": "islamic-studies-mcqs-for-preparation", "topic": "islamic-studies-mcqs-for-preparation", "question": ": Key note of fasting is . . . .", "options": ["Self-discipline", "Self-control", "Selflessness", "A and B"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-for-preparation/"}
{"subject": "islamic-studies-mcqs-for-preparation", "topic": "islamic-studies-mcqs-for-preparation", "question": ": The shield of Islam is . . . .", "options": ["Zakat", "Salat", "Fasting", "Hajj"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-for-preparation/"}
{"subject": "islamic-studies-mcqs-for-preparation", "topic": "islamic-studies-mcqs-for-preparation", "question": ": The meaning of Ai’tekaf is . . . .", "options": ["Seclusion", "Ablution", "Prostration", "A and B"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-for-preparation/"}
{"subject": "islamic-studies-mcqs-for-preparation", "topic": "islamic-studies-mcqs-for-preparation", "question": ": The meaning of Khums is . . . .", "options": ["One fifth", "One fourth", "One sixth", "One seventh"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-for-preparation/"}
{"subject": "islamic-studies-mcqs-for-preparation", "topic": "islamic-studies-mcqs-for-preparation", "question": ": The month of Ramazan in the Islamic calendar is . . . .", "options": ["10th", "9th", "11th", "12th"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-for-preparation/"}
{"subject": "islamic-studies-mcqs-for-preparation", "topic": "islamic-studies-mcqs-for-preparation", "question": ": Zakat is also defined as . . . .", "options": ["Extra-spending", "Pure act", "Poor rate", "Help of the poor"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-for-preparation/"}
{"subject": "islamic-studies-mcqs-for-preparation", "topic": "islamic-studies-mcqs-for-preparation", "question": ": Gaza is the capital of . . . .", "options": ["Palestine", "Jordan", "Iraq", "Syria"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-for-preparation/"}
{"subject": "islamic-studies-mcqs-for-preparation", "topic": "islamic-studies-mcqs-for-preparation", "question": ": Salat-e-Istikhara is offered for . . . .", "options": ["Divine guidance", "Rain", "Death", "Fear"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-for-preparation/"}
{"subject": "islamic-studies-mcqs-for-preparation", "topic": "islamic-studies-mcqs-for-preparation", "question": ": Kalimahs of Islam are . . . .", "options": ["5", "4", "2", "6"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-for-preparation/"}
{"subject": "islamic-studies-mcqs-for-preparation", "topic": "islamic-studies-mcqs-for-preparation", "question": ": The second name of Kalimah is . . . .", "options": ["Kalimah-e-Tauba", "Kalimah-e-Tamjeed", "Kalimah-e-Tayyaba", "Kalimah-e-Shahadat"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-for-preparation/"}
{"subject": "islamic-studies-mcqs-for-preparation", "topic": "islamic-studies-mcqs-for-preparation", "question": ": The basic meaning of Aqeeda is . . . .", "options": ["Pillar", "Nikah", "Relief", "Belief"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-for-preparation/"}
{"subject": "islamic-studies-mcqs-for-preparation", "topic": "islamic-studies-mcqs-for-preparation", "question": ": In the Battle of Qadisiya, who was the commander of the Muslims?", "options": ["Muaviya", "Khalid bin Waleed", "Amir bin Al-Aas", "Saeed bin Abi Waqas"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-studies-mcqs-for-preparation/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": What is Zakat?", "options": ["Fasting during Ramadan", "Charity given to the poor and needy", "Pilgrimage to Mecca", "Recitation of Quranic verses"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": What percentage of wealth is typically given as Zakat?", "options": ["2.5%", "5%", "10%", "20%"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": Which form of wealth is eligible for Zakat?", "options": ["Personal belongings", "Real estate", "Business assets", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": When is Zakat obligatory for Muslims?", "options": ["Once in a lifetime", "Only during Ramadan", "When a person possesses wealth above the Nisab threshold for a full lunar year", "During the Hajj pilgrimage"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": What is the Nisab threshold for Zakat?", "options": ["The equivalent of 1 gram of gold", "The equivalent of 85 grams of gold", "The equivalent of 612.36 grams of silver", "The equivalent of 2.5% of annual income"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": Besides wealth, what else is subject to Zakat?", "options": ["Personal savings", "Agricultural produce", "Livestock", "Precious metals"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": Who is eligible to receive Zakat?", "options": ["Only relatives", "Only the elderly", "Only Muslims", "The poor and needy"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": Which category of recipients is mentioned in the Quran as eligible for Zakat?", "options": ["The rich", "Orphans", "Merchants", "Farmers"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": Can Zakat be given to non-Muslims?", "options": ["Yes, but only to relatives", "No, it must be given to Muslims only", "Yes, if they are eligible recipients", "No, under any circumstances"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": What is the name of the charity given voluntarily in addition to Zakat?", "options": ["Sadaqah", "Hajj", "Umrah", "Fitrana"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": Which Prophet is known for introducing Zakat as a religious obligation?", "options": ["Prophet Muhammad (PBUH)", "Prophet Ibrahim (Abraham)", "Prophet Isa (Jesus)", "Prophet Musa (Moses)"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": What is the Zakat al-Fitr?", "options": ["Charity given during Ramadan", "Zakat given on agricultural produce", "Charity given before Eid al-Fitr prayers", "Zakat given on business profits"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": What is the recommended time for paying Zakat al-Fitr?", "options": ["Anytime during Ramadan", "On the day of Eid al-Fitr before the prayer", "After the Eid prayer", "Before the start of Ramadan"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": What is the purpose of Zakat al-Fitr?", "options": ["To assist the poor during Ramadan", "To support local mosques", "To finance community events", "To purchase sacrificial animals"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": Which of the following is NOT an eligible recipient of Zakat?", "options": ["The poor", "Needy travelers", "Debtors", "Wealthy relatives"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": What is the literal meaning of Zakat?", "options": ["Charity", "Faith", "Fasting", "Pilgrimage"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": In which Islamic month is Zakat typically given?", "options": ["Muharram", "Ramadan", "Shawwal", "Dhul-Hijjah"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": What is the punishment for someone who is eligible to pay Zakat but refuses to do so?", "options": ["Social boycott", "Imprisonment", "Fine", "None; it is a matter between them and Allah"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": Who collects Zakat in Muslim-majority countries?", "options": ["Government agencies", "Religious scholars", "Islamic banks", "Local authorities"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": What is the name of the Zakat collection system in Islam?", "options": ["Khums", "Waqf", "Bait-ul-Mal", "Sadqa"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "zakat-charity-islamic-study-mcqs", "topic": "zakat-charity-islamic-study-mcqs", "question": ": Which of the following is NOT true regarding Sunnah prayers?", "options": ["They are obligatory", "They are recommended", "They are performed silently", "They are performed in congregation"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/zakat-charity-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": What does the term “Sufism” refer to in Islam?", "options": ["Political activism", "Spiritual dimension", "Legal jurisprudence", "Military conquest"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": Which of the following is NOT a core element of Sufism?", "options": ["Mystical practices", "Asceticism", "Rational inquiry", "Love for God"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": What is the primary goal of Sufism?", "options": ["Social justice", "Material wealth", "Spiritual enlightenment", "Political power"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": Who is considered the first Sufi?", "options": ["Abu Bakr al-Siddiq", "Ali ibn Abi Talib", "Umar ibn al-Khattab", "Hasan al-Basri"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": Which term in Sufism refers to the mystical journey of the soul towards God?", "options": ["Tawhid", "Tariqah", "Haqiqa", "Ma’rifah"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": What is the concept of “Tawhid” in Sufism?", "options": ["Spiritual purification", "Oneness of God", "Sufi poetry", "Community gatherings"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": Which famous Sufi saint is known for his poetry in the Persian language?", "options": ["Rumi", "Al-Ghazali", "Ibn Arabi", "Abdul-Qadir Gilan"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": What is the significance of “Dhikr” in Sufism?", "options": ["Spiritual retreat", "Ritual prayer", "Remembrance of God", "Pilgrimage"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": Which Sufi order is associated with the “Whirling Dervishes”?", "options": ["Qadiriyya", "Naqshbandi", "Mevlevi", "Chishtiyya"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": Who is considered the founder of the Chishti Sufi order?", "options": ["Rumi", "Abu Bakr al-Siddiq", "Moinuddin Chishti", "Al-Ghazali"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": In Sufism, what does the term “Murid” refer to?", "options": ["Spiritual teacher", "Sufi shrine", "Sufi disciple", "Sufi literature"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": Which Sufi practice involves the repetition of the names of God?", "options": ["Dhikr", "Fasting", "Hajj", "Zakat"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": What is the significance of the term “Wali” in Sufism?", "options": ["Spiritual guide", "Sufi pilgrimage", "Sufi literature", "Spiritual retreat"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": Which Sufi order is known for its emphasis on silent meditation?", "options": ["Qadiriyya", "Naqshbandi", "Chishtiyya", "Mevlevi"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": What is the primary goal of “Muraqaba” in Sufism?", "options": ["Spiritual awakening", "Ritual prayer", "Charity", "Pilgrimage"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": Which famous Sufi saint is known for his association with the Naqshbandi order?", "options": ["Rumi", "Al-Ghazali", "Jalaluddin Bukhari", "Abdul-Qadir Gilani"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": What does the term “Karamat” refer to in Sufism?", "options": ["Spiritual practices", "Mystical experiences", "Spiritual community", "Sufi literatur"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": Which Sufi order traces its spiritual lineage to the teachings of Abu al-Hasan al-Shadhili?", "options": ["Qadiriyya", "Chishtiyya", "Shadhiliyya", "Naqshbandi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "concept-of-sufism-islamic-study-mcqs", "topic": "concept-of-sufism-islamic-study-mcqs", "question": ": What is the concept of “Tasawwuf” in Sufism?", "options": ["Spiritual purification", "Mystical theology", "Sufi poetry", "Ritual prayer"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/concept-of-sufism-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Who is credited with establishing the House of Wisdom in Baghdad, which played a crucial role in the preservation and translation of classical knowledge?", "options": ["Caliph Umar", "Caliph Harun al-Rashid", "Caliph Al-Mamun", "Caliph Abu Bakr"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Which language was primarily used for translating classical texts into Arabic during the Islamic Golden Age?", "options": ["Greek", "Latin", "Persian", "Sanskrit"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Who is known for his translations of Aristotle’s works, which greatly influenced Islamic philosophy?", "options": ["Al-Farabi", "Ibn Rushd", "Al-Ghazali", "Ibn Sina"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Which city became a major center for the translation of Greek and Roman texts into Arabic during the Abbasid era?", "options": ["Cairo", "Damascus", "Baghdad", "Cordoba"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Which Muslim scholar is known for his translations of Aristotle’s works, particularly in the field of medicine?", "options": ["Al-Farabi", "Ibn Rushd", "Al-Ghazali", "Ibn Sina"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Who is credited with the translation of Ptolemy’s “Almagest” into Arabic, which greatly influenced Islamic astronomy?", "options": ["Al-Khwarizmi", "Al-Battani", "Al-Farabi", "Al-Haytham"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Which Islamic scholar translated works of Plato and Aristotle into Arabic and wrote commentaries on them?", "options": ["Al-Farabi", "Ibn Rushd", "Al-Ghazali", "Ibn Sina"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Who is known for his translations of Greek philosophical texts into Arabic, particularly those of Aristotle and Plotinus?", "options": ["Al-Kindi", "Ibn Khaldun", "Al-Farabi", "Ibn Rushd"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Which city in Spain became a major center for translation and scholarship during the Islamic Golden Age?", "options": ["Cordoba", "Granada", "Seville", "Toledo"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Who is known for his translation of Euclid’s “Elements” into Arabic, which became a standard textbook on geometry in the Islamic world?", "options": ["Al-Kindi", "Al-Khwarizmi", "Al-Farabi", "Al-Haytham"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Which scholar is known for translating works of Hippocrates and Galen into Arabic, making significant contributions to Islamic medicine?", "options": ["Al-Battani", "Al-Kindi", "Al-Razi", "Al-Haytham"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Who translated works of Indian mathematicians and astronomers into Arabic during the Abbasid era?", "options": ["Al-Khwarizmi", "Al-Battani", "Al-Farabi", "Al-Haytham"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Which Islamic scholar translated Aristotle’s “Metaphysics” and “Nicomachean Ethics” into Arabic?", "options": ["Al-Farabi", "Ibn Rushd", "Al-Ghazali", "Ibn Sina"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Who is known for translating works of Greek astronomers and mathematicians into Arabic, including Ptolemy’s “Almagest”?", "options": ["Al-Khwarizmi", "Al-Battani", "Al-Farabi", "Al-Haytham"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Which scholar is known for translating Aristotle’s works on logic and metaphysics into Arabic?", "options": ["Al-Farabi", "Ibn Rushd", "Al-Ghazali", "Ibn Sina"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Who is known for his translations of medical texts from Greek into Arabic, which became standard references in the Islamic world?", "options": ["Al-Razi", "Al-Kindi", "Al-Battani", "Al-Haytham"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Which Islamic scholar translated works of Indian mathematicians and astronomers into Arabic during the Abbasid era?", "options": ["Al-Khwarizmi", "Al-Battani", "Al-Farabi", "Al-Haytham"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Who is known for his translation of Ptolemy’s “Almagest” into Arabic, which greatly influenced Islamic astronomy?", "options": ["Al-Khwarizmi", "Al-Battani", "Al-Farabi", "Al-Haytham"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Which scholar is known for his translations of Greek philosophical texts into Arabic, particularly those of Aristotle and Plato?", "options": ["Al-Kindi", "Ibn Khaldun", "Al-Farabi", "Ibn Rushd"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "topic": "preservation-and-translation-of-classical-knowledge-islamic-study-mcqs", "question": ": Who is known for his translations of Greek medical texts into Arabic, contributing significantly to the field of Islamic medicine?", "options": ["Al-Razi", "Al-Kindi", "Al-Battani", "Al-Haytham"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/preservation-and-translation-of-classical-knowledge-islamic-study-mcqs/"}
{"subject": "interfaith-dialogue-islamic-study-mcqs", "topic": "interfaith-dialogue-islamic-study-mcqs", "question": ": What is interfaith dialogue primarily aimed at achieving?", "options": ["Conversion of people to a particular religion", "Establishing dominance of one religion over others", "Fostering understanding and cooperation among different religious communities", "Eliminating all religious beliefs"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-dialogue-islamic-study-mcqs/"}
{"subject": "interfaith-dialogue-islamic-study-mcqs", "topic": "interfaith-dialogue-islamic-study-mcqs", "question": ": Who initiated the World Parliament of Religions in 1893, which is considered one of the early modern instances of interfaith dialogue?", "options": ["Pope Francis", "Swami Vivekananda", "Martin Luther", "Dalai Lama"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-dialogue-islamic-study-mcqs/"}
{"subject": "interfaith-dialogue-islamic-study-mcqs", "topic": "interfaith-dialogue-islamic-study-mcqs", "question": ": In Islam, what is the term for interfaith dialogue or debate between scholars of different religions?", "options": ["Shahada", "Dawah", "Munazara", "Taqiyya"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-dialogue-islamic-study-mcqs/"}
{"subject": "interfaith-dialogue-islamic-study-mcqs", "topic": "interfaith-dialogue-islamic-study-mcqs", "question": ": Which of the following is NOT a goal of interfaith dialogue?", "options": ["Promoting peace and harmony", "Fostering empathy and compassion", "Suppressing religious diversity", "Building mutual understanding"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-dialogue-islamic-study-mcqs/"}
{"subject": "interfaith-dialogue-islamic-study-mcqs", "topic": "interfaith-dialogue-islamic-study-mcqs", "question": ": What Islamic principle encourages dialogue with people of other faiths in a respectful manner?", "options": ["Jihad", "Zakat", "Shura", "Tawhid"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-dialogue-islamic-study-mcqs/"}
{"subject": "interfaith-dialogue-islamic-study-mcqs", "topic": "interfaith-dialogue-islamic-study-mcqs", "question": ": Which Quranic verse emphasizes the need for peaceful dialogue with people of other faiths?", "options": ["Surah Al-Fatiha", "Surah Al-Baqarah", "Surah Al-Mumtahanah", "Surah Al-Kahf"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-dialogue-islamic-study-mcqs/"}
{"subject": "interfaith-dialogue-islamic-study-mcqs", "topic": "interfaith-dialogue-islamic-study-mcqs", "question": ": What is the primary purpose of the Common Word initiative launched in 2007?", "options": ["To advocate for religious exclusivity", "To promote dialogue and understanding between Islam and Christianity", "To condemn all forms of religious dialogue", "To establish a global religious authority"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-dialogue-islamic-study-mcqs/"}
{"subject": "interfaith-dialogue-islamic-study-mcqs", "topic": "interfaith-dialogue-islamic-study-mcqs", "question": ": Which term refers to the religious duty of conveying the message of Islam to others through dialogue and preaching?", "options": ["Taqiyya", "Shahada", "Dawah", "Munazara"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-dialogue-islamic-study-mcqs/"}
{"subject": "interfaith-dialogue-islamic-study-mcqs", "topic": "interfaith-dialogue-islamic-study-mcqs", "question": ": What does the term “interfaith” mean?", "options": ["Conflict between different religions", "Cooperation between different religions", "Dominance of one religion over others", "Ignoring all religions"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-dialogue-islamic-study-mcqs/"}
{"subject": "interfaith-dialogue-islamic-study-mcqs", "topic": "interfaith-dialogue-islamic-study-mcqs", "question": ": What is the role of empathy in interfaith dialogue?", "options": ["To foster mutual understanding and respect", "To promote religious superiority", "To convert people to a specific faith", "To criticize other religions"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-dialogue-islamic-study-mcqs/"}
{"subject": "interfaith-dialogue-islamic-study-mcqs", "topic": "interfaith-dialogue-islamic-study-mcqs", "question": ": What historical event is often considered as a milestone in modern interfaith dialogue?", "options": ["The Council of Nicaea", "The World Parliament of Religions in 1893", "The Crusades", "The Treaty of Westphalia"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-dialogue-islamic-study-mcqs/"}
{"subject": "interfaith-dialogue-islamic-study-mcqs", "topic": "interfaith-dialogue-islamic-study-mcqs", "question": ": Which Islamic value emphasizes the importance of mutual consultation and dialogue?", "options": ["Zakat", "Shura", "Tawhid", "Jihad"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-dialogue-islamic-study-mcqs/"}
{"subject": "interfaith-dialogue-islamic-study-mcqs", "topic": "interfaith-dialogue-islamic-study-mcqs", "question": ": What is the purpose of interfaith dialogue in addressing contemporary global challenges?", "options": ["To increase religious conflicts", "To find common ground and solutions", "To establish one dominant religion", "To isolate religious communities"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-dialogue-islamic-study-mcqs/"}
{"subject": "interfaith-dialogue-islamic-study-mcqs", "topic": "interfaith-dialogue-islamic-study-mcqs", "question": ": Which term is used for the dialogue and cooperation between people of different religious faiths?", "options": ["Interfaith dialogue", "Religious exclusivity", "Ethnocentrism", "Religious intolerance"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/interfaith-dialogue-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The architectural feature that distinguishes a mosque from other buildings is:", "options": ["Minaret", "Dome", "Mihrab", "Minbar"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The direction in which a mosque’s mihrab is oriented is towards:", "options": ["Jerusalem", "Mecca", "Medina", "Cairo"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The word “minaret” comes from which Arabic word?", "options": ["Madinah", "Minara", "Manara", "Masjid"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The function of a minaret in a mosque is to:", "options": ["House the prayer leader", "Serve as a prayer hall", "Call the faithful to prayer", "Hold decorative elements"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The dome in mosque architecture symbolizes:", "options": ["The heavens", "The Earth", "Leadership", "Worship"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The architectural style of mosques can vary greatly depending on:", "options": ["Geographic location", "Size of the congregation", "Ethnicity of the worshipers", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The courtyard of a mosque is known as:", "options": ["Iwan", "Sahn", "Qibla", "Haram"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The prayer hall in a mosque is called the:", "options": ["Minbar", "Mihrab", "Musalla", "Madrasa"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The purpose of the mihrab is to:", "options": ["Store religious texts", "Face Mecca for prayer", "House the imam", "Hold decorative items"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": Which of the following is NOT a feature commonly found in mosque architecture?", "options": ["Minaret", "Pulpit", "Minbar", "Altar"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The architectural style of mosques in Spain was heavily influenced by:", "options": ["Byzantine architecture", "Roman architecture", "Moorish architecture", "Gothic architecture"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The qibla wall of a mosque indicates the direction of:", "options": ["Travel", "Worship", "Education", "Pilgrimage"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": Which architectural feature is often adorned with intricate geometric patterns in mosque architecture?", "options": ["Dome", "Minaret", "Mihrab", "Minbar"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The architectural layout of a mosque often emphasizes:", "options": ["Individualism", "Community", "Isolation", "Secularism"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The style of mosque architecture in Turkey is influenced by:", "options": ["Ottoman architecture", "Persian architecture", "Mughal architecture", "Moorish architecture"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The Hagia Sophia in Istanbul, Turkey, is an example of a mosque that was originally a:", "options": ["Church", "Synagogue", "Temple", "Shrine"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The Sultan Ahmed Mosque in Istanbul, Turkey, is commonly known as the:", "options": ["Blue Mosque", "Green Mosque", "Red Mosque", "White Mosque"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The architectural element that provides natural light and ventilation in a mosque is the:", "options": ["Dome", "Minaret", "Atrium", "Courtyard"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The Great Mosque of Cordoba in Spain is known for its:", "options": ["Minarets", "Domes", "Arches", "Mosaics"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "mosque-architecture-islamic-study-mcqs", "topic": "mosque-architecture-islamic-study-mcqs", "question": ": The style of mosque architecture in India is characterized by its:", "options": ["Large courtyards", "Central domes", "Ornate minarets", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/mosque-architecture-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": What is Hajj in Islam?", "options": ["Charity giving", "Fasting during Ramadan", "Pilgrimage to Mecca", "Recitation of Quranic verses"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": Hajj occurs during which month of the Islamic calendar?", "options": ["Muharram", "Safar", "Dhul-Hijjah", "Shawwal"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": How many times is Hajj obligatory for Muslims who are physically and financially capable?", "options": ["Once in a lifetime", "Twice in a lifetime", "Thrice in a lifetime", "Four times in a lifetime"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": What is the first ritual of Hajj?", "options": ["Tawaf", "Sa’i", "Ihram", "Arafat"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": Which prophet is associated with the building of the Kaaba in Mecca?", "options": ["Prophet Muhammad (PBUH)", "Prophet Adam (AS)", "Prophet Abraham (AS)", "Prophet Moses (AS)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": What is the cube-shaped structure Muslims circumambulate during Hajj?", "options": ["Zamzam Well", "Black Stone", "Mount Safa", "Kaaba"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": How many circuits are performed during Tawaf around the Kaaba?", "options": ["5", "7", "10", "12"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": What is the name of the running between the hills of Safa and Marwah during Hajj?", "options": ["Sa’i", "Tawaf", "Ihram", "Arafat"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": Which day of Hajj is known as the “Day of Arafat”?", "options": ["8th Dhul-Hijjah", "9th Dhul-Hijjah", "10th Dhul-Hijjah", "11th Dhul-Hijjah"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": What is the significance of the “Day of Arafat” during Hajj?", "options": ["Stoning the Devil", "Sacrificing animals", "Praying at Mount Arafat", "Tawaf around the Kaaba"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": After the “Day of Arafat,” pilgrims proceed to which location to perform symbolic stoning of the Devil?", "options": ["Mount Arafat", "Mina", "Muzdalifah", "Medina"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": How many stones are thrown during each round of symbolic stoning of the Devil?", "options": ["3", "5", "7", "9"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": What is the name of the Islamic ritual of animal sacrifice during Hajj?", "options": ["Qurbani", "Tawaf", "Ihram", "Arafat"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": Which two Islamic festivals follow the completion of Hajj?", "options": ["Eid al-Adha and Eid al-Fitr", "Eid al-Fitr and Eid al-Ghadeer", "Eid al-Ghadeer and Eid al-Adha", "Eid al-Fitr and Eid al-Mawlid"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": What is the purpose of the stoning ritual during Hajj?", "options": ["To symbolize the rejection of evil", "To purify oneself", "To ask for forgiveness", "To seek blessings"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": Hajj commemorates the willingness of which prophet to sacrifice his son for God?", "options": ["Prophet Muhammad (PBUH)", "Prophet Adam (AS)", "Prophet Abraham (AS)", "Prophet Moses (AS)"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": Which city do pilgrims travel to before reaching Mecca for Hajj?", "options": ["Madinah", "Riyadh", "Jeddah", "Ta’if"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": What is the ritual of shaving the head or trimming the hair called during Hajj?", "options": ["Sa’i", "Tawaf", "Halq", "Ihram"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "topic": "hajj-pilgrimage-to-mecca-islamic-study-mcqs", "question": ": How is the end of Hajj celebrated by Muslims around the world?", "options": ["With a feast known as Eid al-Adha", "With a fast known as Ramadan", "With a pilgrimage to Medina", "With a day of prayer at the mosque"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hajj-pilgrimage-to-mecca-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "What is Sharia-compliant banking also known as?", "options": ["Islamic banking", "Secular banking", "Conventional banking", "Interest-based banking"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "Which principle of Sharia-compliant banking prohibits the payment or receipt of interest?", "options": ["Riba", "Musharakah", "Murabaha", "Takaful"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "What does the term “Takaful” mean in Sharia-compliant banking?", "options": ["Interest", "Charity", "Insurance", "Loan"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "In Sharia-compliant banking, what is “Mudarabah”?", "options": ["Profit sharing", "Interest", "Asset leasing", "Cost-plus financing"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "Which Islamic principle in banking refers to partnership or joint venture?", "options": ["Murabaha", "Mudarabah", "Ijarah", "Qard Hasan"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "What does “Musharakah” mean in Sharia-compliant banking?", "options": ["Profit sharing", "Interest", "Asset leasing", "Insurance"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "Which type of contract is commonly used in Sharia-compliant banking for asset financing?", "options": ["Istisna", "Murabaha", "Tawarruq", "Qard Hasan"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "What does “Ijarah” refer to in Sharia-compliant banking?", "options": ["Leasing", "Profit sharing", "Interest", "Donation"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "Which Islamic banking principle involves the sale of goods at a marked-up price?", "options": ["Murabaha", "Mudarabah", "Ijarah", "Tawarruq"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "What is “Wakalah” in Sharia-compliant banking?", "options": ["Agency contract", "Profit sharing", "Interest", "Asset financing"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "In Sharia-compliant banking, what is “Sukuk”?", "options": ["Islamic bonds", "Interest-bearing bonds", "Share certificates", "Loan agreements"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "What is the primary purpose of Sharia-compliant banking?", "options": ["Maximizing shareholder profits", "Providing interest-free loans", "Following Islamic principles in financial transactions", "Promoting global economic growth"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "Which Islamic banking principle involves the exchange of goods or assets at a future date at a predetermined price?", "options": ["Murabaha", "Tawarruq", "Ijarah", "Istisna"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "What is “Hawala” in Islamic finance?", "options": ["Transfer of funds without the physical movement of money", "Interest-free loans", "A form of insurance", "Profit-sharing agreement"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "What is “Qard Hasan” in Islamic banking?", "options": ["Benevolent loan", "Profit-sharing agreement", "Islamic bonds", "Leasing contract"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "Which Islamic banking principle allows for the pooling of funds for joint investments?", "options": ["Tawarruq", "Mudarabah", "Ijarah", "Murabaha"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "What is “Zakat” in Islamic finance?", "options": ["Mandatory alms-giving", "Interest", "Profit-sharing", "Insurance"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "Which Islamic banking principle involves the sale of goods on a deferred payment basis?", "options": ["Tawarruq", "Murabaha", "Ijarah", "Istisna"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "What is the term for the Islamic practice of giving to charity?", "options": ["Sadaqah", "Qard Hasan", "Takaful", "Hawala"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "sharia-compliant-banking-islamic-study-mcqs", "topic": "sharia-compliant-banking-islamic-study-mcqs", "question": "Which Islamic banking principle involves leasing assets with a pre-agreed rental payment?", "options": ["Ijarah", "Mudarabah", "Murabaha", "Tawarruq"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sharia-compliant-banking-islamic-study-mcqs/"}
{"subject": "collections-of-hadith-islamic-study-mcqs", "topic": "collections-of-hadith-islamic-study-mcqs", "question": ": Who compiled Sahih al-Bukhari?", "options": ["Imam Bukhari", "Imam Muslim", "Imam Abu Dawood", "Imam Tirmidhi"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/collections-of-hadith-islamic-study-mcqs/"}
{"subject": "collections-of-hadith-islamic-study-mcqs", "topic": "collections-of-hadith-islamic-study-mcqs", "question": ": How many Hadith are found in Sahih al-Bukhari?", "options": ["Over 7,000", "Over 8,000", "Over 9,000", "Over 10,000"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/collections-of-hadith-islamic-study-mcqs/"}
{"subject": "collections-of-hadith-islamic-study-mcqs", "topic": "collections-of-hadith-islamic-study-mcqs", "question": ": Which Hadith collection is considered the most authentic after Sahih al-Bukhari?", "options": ["Sahih Muslim", "Sunan Abu Dawood", "Sunan Ibn Majah", "Jami’ at-Tirmidhi"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/collections-of-hadith-islamic-study-mcqs/"}
{"subject": "collections-of-hadith-islamic-study-mcqs", "topic": "collections-of-hadith-islamic-study-mcqs", "question": ": Who compiled Sahih Muslim?", "options": ["Imam Bukhari", "Imam Muslim", "Imam Abu Dawood", "Imam Tirmidhi"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/collections-of-hadith-islamic-study-mcqs/"}
{"subject": "collections-of-hadith-islamic-study-mcqs", "topic": "collections-of-hadith-islamic-study-mcqs", "question": ": How many Hadith are included in Sahih Muslim?", "options": ["Over 7,000", "Over 8,000", "Over 9,000", "Over 10,000"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/collections-of-hadith-islamic-study-mcqs/"}
{"subject": "collections-of-hadith-islamic-study-mcqs", "topic": "collections-of-hadith-islamic-study-mcqs", "question": ": Which Hadith collection is known for its emphasis on legal rulings?", "options": ["Sahih al-Bukhari", "Sahih Muslim", "Sunan Abu Dawood", "Sunan Ibn Majah"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/collections-of-hadith-islamic-study-mcqs/"}
{"subject": "collections-of-hadith-islamic-study-mcqs", "topic": "collections-of-hadith-islamic-study-mcqs", "question": ": Who compiled Sunan Abu Dawood?", "options": ["Imam Bukhari", "Imam Muslim", "Imam Abu Dawood", "Imam Tirmidhi"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/collections-of-hadith-islamic-study-mcqs/"}
{"subject": "collections-of-hadith-islamic-study-mcqs", "topic": "collections-of-hadith-islamic-study-mcqs", "question": ": How many Hadith are included in Sunan Abu Dawood?", "options": ["Over 3,000", "Over 4,000", "Over 5,000", "Over 6,000"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/collections-of-hadith-islamic-study-mcqs/"}
{"subject": "collections-of-hadith-islamic-study-mcqs", "topic": "collections-of-hadith-islamic-study-mcqs", "question": ": Which Hadith collection is known for its inclusion of weak Hadith?", "options": ["Sahih al-Bukhari", "Sahih Muslim", "Sunan Abu Dawood", "Sunan Ibn Majah"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/collections-of-hadith-islamic-study-mcqs/"}
{"subject": "islamiat-mcqs-from-book-chapters", "topic": "islamiat-mcqs-from-book-chapters", "question": ": The meaning of Iman-e-Mujamal is . . . .", "options": ["The belief in brief", "The belief in unknown things", "The belief in detail", "The belief in known things"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-chapters/"}
{"subject": "islamiat-mcqs-from-book-chapters", "topic": "islamiat-mcqs-from-book-chapters", "question": ": The meaning of Iman-e-Mufasasal is . . . .", "options": ["The belief in uncertain things", "The belief in brief", "The belief in all things", "The belief in detail"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-chapters/"}
{"subject": "islamiat-mcqs-from-book-chapters", "topic": "islamiat-mcqs-from-book-chapters", "question": ": In Iman-e-Mufassar, how many essential beliefs . . . .", "options": ["7", "5", "11", "9"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-chapters/"}
{"subject": "islamiat-mcqs-from-book-chapters", "topic": "islamiat-mcqs-from-book-chapters", "question": ": In which AH Zakat made compulsory . . . .", "options": ["2 AH", "5 AH", "3 AH", "4 AH"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-chapters/"}
{"subject": "islamiat-mcqs-from-book-chapters", "topic": "islamiat-mcqs-from-book-chapters", "question": ": In the Hajj, how many obligations are compulsory . . . .", "options": ["Four", "Two", "Three", "Five"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-chapters/"}
{"subject": "islamiat-mcqs-from-book-chapters", "topic": "islamiat-mcqs-from-book-chapters", "question": ": On Hazrat Daud, which Holy Book is revealed . . . .", "options": ["Taurat", "Zubur", "Quran", "Injeel"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-chapters/"}
{"subject": "islamiat-mcqs-from-book-chapters", "topic": "islamiat-mcqs-from-book-chapters", "question": ": In the Holy Quran, how many names of Prophets are written there . . . .", "options": ["37", "35", "10", "26"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-chapters/"}
{"subject": "islamiat-mcqs-from-book-chapters", "topic": "islamiat-mcqs-from-book-chapters", "question": ": Write the name of the seventh month of the Islamic year . . . .", "options": ["Shabaan", "Muharram", "Shawal", "Rajab"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-chapters/"}
{"subject": "islamiat-mcqs-from-book-chapters", "topic": "islamiat-mcqs-from-book-chapters", "question": ": Name the Holy Book of Jews is . . . .", "options": ["Torait", "Injeel", "Zabur", "Quran"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-chapters/"}
{"subject": "islamiat-mcqs-from-book-chapters", "topic": "islamiat-mcqs-from-book-chapters", "question": ": Bible is the Holy Book of . . . .", "options": ["Jews", "Hindus", "Christians", "Parsis"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-chapters/"}
{"subject": "islamiat-mcqs-from-book-chapters", "topic": "islamiat-mcqs-from-book-chapters", "question": ": How many mujahideen in the army of Ghazwa Badr . . . .", "options": ["380", "413", "210", "313"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-chapters/"}
{"subject": "islamiat-mcqs-from-book-chapters", "topic": "islamiat-mcqs-from-book-chapters", "question": ": The Imam of Muslim, Imam Bukhari, was born in . . . .", "options": ["190 AH", "180 AH", "194 AH", "210 AH"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamiat-mcqs-from-book-chapters/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": During the Golden Age of Islamic civilization, which city became a center for learning, translation, and scientific advancement?", "options": ["Baghdad", "Damascus", "Mecca", "Cairo"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": The Golden Age of Islamic civilization is often associated with which Islamic dynasty?", "options": ["Umayyad", "Abbasid", "Fatimid", "Rashidun"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": Which Islamic scholar is known as the “Father of Algebra” and made significant contributions to mathematics during the Golden Age?", "options": ["Ibn Sina", "Al-Khwarizmi", "Ibn Rushd", "Ibn Battuta"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": The House of Wisdom, a major intellectual center during the Golden Age, was established in which city?", "options": ["Baghdad", "Cairo", "Damascus", "Cordoba"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": Which famous Muslim scientist made significant advancements in optics, astronomy, and physics during the Golden Age?", "options": ["Al-Biruni", "Ibn al-Haytham", "Al-Razi", "Ibn Khaldun"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": The translation movement during the Golden Age aimed to translate works from which language into Arabic?", "options": ["Latin", "Greek", "Persian", "Sanskrit"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": Which Golden Age scholar is known for his contributions to medicine and authored the famous medical encyclopedia “Canon of Medicine”?", "options": ["Al-Battani", "Avicenna (Ibn Sina)", "Al-Kindi", "Al-Farabi"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": The Golden Age of Islamic civilization saw the preservation and translation of classical Greek works, including those of which philosopher?", "options": ["Plato", "Socrates", "Aristotle", "Pythagoras"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": Which Golden Age scholar is known for his contributions to philosophy and is often referred to as the “Second Teacher” (after Aristotle)?", "options": ["Al-Farabi", "Al-Ghazali", "Ibn Rushd", "Al-Kindi"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": The development of algebra as a mathematical discipline is attributed to scholars during which period of Islamic civilization?", "options": ["Golden Age", "Umayyad Era", "Fatimid Period", "Rashidun Caliphate"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": Which Islamic scholar is credited with the invention of the astrolabe, a device used for navigation and astronomy?", "options": ["Al-Battani", "Al-Razi", "Al-Khwarizmi", "Al-Biruni"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": The Golden Age of Islamic civilization saw the establishment of numerous educational institutions known as:", "options": ["Madrasas", "Mosques", "Universities", "Libraries"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": Which Golden Age scientist is known for his work in the fields of chemistry, pharmacy, and alchemy?", "options": ["Al-Razi", "Ibn Khaldun", "Al-Farabi", "Al-Biruni"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": The translation of Greek philosophical works into Arabic during the Golden Age contributed significantly to the development of which branch of knowledge?", "options": ["Philosophy", "Mathematics", "Astronomy", "Medicine"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": The Golden Age of Islamic civilization saw advancements in architecture, notably exemplified by the construction of:", "options": ["Hagia Sophia", "The Dome of the Rock", "The Great Mosque of Cordoba", "The Parthenon"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": The Golden Age of Islamic civilization saw the emergence of which city as a leading center of commerce, culture, and intellectual pursuits?", "options": ["Cairo", "Cordoba", "Damascus", "Baghdad"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": Which Golden Age scholar is known for his contributions to geography, cartography, and ethnography?", "options": ["Ibn Battuta", "Al-Biruni", "Al-Kindi", "Al-Farabi"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": The Golden Age of Islamic civilization witnessed significant advancements in which field of science, including the works of Jabir ibn Hayyan?", "options": ["Chemistry", "Physics", "Biology", "Astronomy"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": The Golden Age of Islamic civilization saw the development of a sophisticated legal system known as:", "options": ["Sharia", "Fiqh", "Qiyas", "Ijma"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "expansion-of-islam-islamic-study-mcqs", "topic": "expansion-of-islam-islamic-study-mcqs", "question": ": Which Golden Age scholar is known for his contributions to music theory, mathematics, and philosophy?", "options": ["Al-Farabi", "Al-Ghazali", "Ibn Khaldun", "Ibn Sina"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/expansion-of-islam-islamic-study-mcqs/"}
{"subject": "rashidun-caliphs-abu-bakr-umar-uthman-ali-islamic-study-mcqs", "topic": "rashidun-caliphs-abu-bakr-umar-uthman-ali-islamic-study-mcqs", "question": ": Who compiled Sunan Ibn Majah?", "options": ["Imam Bukhari", "Imam Muslim", "Imam Abu Dawood", "Ibn Majah"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/rashidun-caliphs-abu-bakr-umar-uthman-ali-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": Which geometric design element is extensively used in Islamic art and architecture?", "options": ["Circle", "Square", "Arabesque", "Triangle"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The Great Mosque of Cordoba in Spain is an example of Islamic architecture influenced by which civilization?", "options": ["Greek", "Roman", "Byzantine", "Moorish"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": What is the tall tower used to call the faithful to prayer in Islamic architecture called?", "options": ["Spire", "Steeple", "Dome", "Minaret"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The Dome of the Rock in Jerusalem is renowned for its:", "options": ["Copper dome", "Gold-plated dome", "Silver dome", "Brass dome"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The Taj Mahal, a masterpiece of Islamic architecture, is located in which country?", "options": ["India", "Iran", "Saudi Arabia", "Egypt"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": What serves as a focal point for prayer in mosques and is often adorned with intricate designs?", "options": ["Minaret", "Qibla", "Mihrab", "Sahn"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The Alhambra palace in Spain is known for its intricate:", "options": ["Frescoes", "Mosaics", "Stucco work", "Wood carvings"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The Blue Mosque in Istanbul, Turkey, is named for the:", "options": ["Blue tiles adorning its interior", "Blue domes", "Blue carpets", "Blue calligraphy"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": Which type of Islamic architectural structure consists of a covered passageway around a courtyard?", "options": ["Dome", "Arcade", "Minaret", "Minbar"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The use of horseshoe arches is characteristic of which Islamic architectural style?", "options": ["Ottoman", "Moorish", "Mughal", "Persian"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": Islamic art often features intricate designs based on natural motifs such as:", "options": ["Human figures", "Animals", "Plants", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The Hagia Sophia in Istanbul, Turkey, was initially a Christian church before being converted into a mosque by which Islamic ruler?", "options": ["Suleiman the Magnificent", "Mehmed the Conqueror", "Selim the Grim", "Osman I"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": Islamic architecture emphasizes:", "options": ["Asymmetry", "Complexity", "Simplicity", "Symmetry"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The word “mihrab” refers to:", "options": ["A tower", "A dome", "A niche in the mosque indicating the direction of Mecca", "A courtyard"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": Islamic calligraphy is an essential element of art and is often used to:", "options": ["Decorate mosques and manuscripts", "Adorn carpets", "Carve wood", "Paint frescoes"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The use of mosaics is a prominent feature in Islamic architecture, especially in:", "options": ["North Africa", "Central Asia", "Southeast Asia", "South Asia"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The use of muqarnas, or stalactite vaulting, is a distinctive feature of which Islamic architectural style?", "options": ["Ottoman", "Mughal", "Mamluk", "Safavid"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The use of pointed arches is a characteristic feature of Islamic architecture in which region?", "options": ["South Asia", "Southeast Asia", "North Africa", "Western Europe"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The use of geometric patterns in Islamic art reflects Islamic beliefs about:", "options": ["The diversity of nature", "The transience of life", "The unity of God and the universe", "The chaos of existence"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The calligraphic script used in Islamic art is known as:", "options": ["Hieroglyphics", "Kufic", "Cuneiform", "Gothic"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The use of muqarnas allows Islamic architects to create:", "options": ["Flat roofs", "Intricate domes and vaults", "Tall minarets", "Elaborate gardens"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The Shah Mosque in Isfahan, Iran, is renowned for its:", "options": ["Blue tiles and majestic dome", "Golden spires", "Marble columns", "Fresco paintings"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": Islamic calligraphy is often used to write verses from which holy book?", "options": ["Bible", "Quran", "Torah", "Gita"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The use of horseshoe arches in Islamic architecture was influenced by which civilization?", "options": ["Greek", "Roman", "Visigoths", "Persians"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The use of muqarnas in Islamic architecture creates the impression of:", "options": ["Flatness", "Depth and intricacy", "Simplicity", "Geometric precision"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The Dome of the Rock in Jerusalem is built on the site of:", "options": ["The Temple Mount", "The Kaaba", "The Sphinx", "The Tower of Babel"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": Islamic architecture often features courtyards, reflecting the importance of:", "options": ["Communal living", "Privacy and contemplation", "Agricultural activities", "Trade and commerce"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The Great Mosque of Damascus in Syria is one of the oldest mosques in the world and is known for its:", "options": ["Blue domes", "Grand courtyard", "Golden spires", "Marble columns"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The use of arabesque patterns in Islamic art is meant to evoke:", "options": ["Mysticism", "Nature", "Mathematics", "History"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "islamic-art-and-architecture-islamic-study-mcqs", "topic": "islamic-art-and-architecture-islamic-study-mcqs", "question": ": The Alhambra palace in Granada, Spain, features:", "options": ["Frescoes", "Mosaics", "Ornate stucco work", "Wood carvings"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/islamic-art-and-architecture-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": Which term refers to the practices and teachings of Prophet Muhammad (PBUH) as recorded in Hadith?", "options": ["Tafsir", "Sunnah", "Zakat", "Jihad"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": What is the significance of Hadith in Islamic jurisprudence?", "options": ["It provides guidance on the interpretation of the Quran.", "It offers insights into the Prophet’s character and behavior.", "It serves as a source of religious law.", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": How are Hadith classified based on the number of narrators in the chain of transmission?", "options": ["By the time of the Prophet’s life", "By the number of verses", "By the authenticity of the text", "By the number of narrators"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": Which of the following is NOT a criterion for authenticating Hadith?", "options": ["The integrity of narrators", "The consistency of the text with the Quran", "The number of times it is narrated", "The absence of any defects in the chain of transmission"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": Who is considered the most reliable transmitter of Hadith?", "options": ["Abu Bakr", "Umar ibn al-Khattab", "Ali ibn Abi Talib", "Prophet Muhammad (PBUH)"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": What is the term for Hadith that has been rigorously authenticated?", "options": ["Sahih", "Hasan", "Da’if", "Mawdu’"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": Which Hadith collection is known as one of the six major Sunni collections?", "options": ["Musnad Ahmad", "Sahih al-Bukhari", "Sunan Ibn Majah", "Muwatta Malik"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": Who is the compiler of Sahih al-Bukhari?", "options": ["Imam Bukhari", "Imam Muslim", "Imam Tirmidhi", "Imam Abu Dawood"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": What distinguishes Sahih Muslim from Sahih al-Bukhari?", "options": ["Sahih Muslim includes more Hadiths.", "Sahih Muslim is organized thematically.", "Sahih Muslim is considered more authentic.", "Sahih Muslim was compiled earlier."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": What does the term “Sahih” mean in the context of Hadith?", "options": ["Weak", "Fabricated", "Authentic", "Partially authentic"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": Which collection of Hadith is known for its focus on legal rulings and is organized by jurisprudential topics?", "options": ["Sunan Ibn Majah", "Sunan al-Tirmidhi", "Sunan Abu Dawood", "Sunan al-Nasa’i"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": What is the term for Hadith that does not meet the criteria of authenticity?", "options": ["Sahih", "Hasan", "Da’if", "Mawdu’"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": Who was Imam Muslim, the compiler of Sahih Muslim?", "options": ["Imam Abu Dawood", "Imam al-Nasa’i", "Imam Muslim ibn al-Hajjaj", "Imam Malik ibn Anas"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": Which of the following Hadith collections is not recognized by Sunni scholars as one of the six major collections?", "options": ["Sunan Ibn Majah", "Sunan al-Tirmidhi", "Muwatta Malik", "Sahih Muslim"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": What is the significance of the Isnad in Hadith transmission?", "options": ["It refers to the subject matter of the Hadith.", "It verifies the authenticity of the Hadith.", "It provides historical context for the Hadith.", "It indicates the geographic origin of the Hadith."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": Which companion of the Prophet Muhammad (PBUH) is known for transmitting a large number of Hadith?", "options": ["Abu Bakr", "Umar ibn al-Khattab", "Abu Huraira", "Aisha"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": What is the Hadith literature that deals with the sayings, actions, and approvals of Prophet Muhammad (PBUH) collectively referred to as?", "options": ["Sunnah", "Quran", "Sirah", "Fiqh"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "hadith-and-sunnah-islamic-study-mcqs", "topic": "hadith-and-sunnah-islamic-study-mcqs", "question": ": What is the term for the science of Hadith criticism and authentication?", "options": ["Tafsir", "Usul al-Fiqh", "Ilm al-Hadith", "Sirah"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/hadith-and-sunnah-islamic-study-mcqs/"}
{"subject": "rights-and-responsibilities-islamic-study-mcqs", "topic": "rights-and-responsibilities-islamic-study-mcqs", "question": ": In Islam, which Surah (chapter) of the Quran emphasizes the rights and responsibilities of women?", "options": ["Surah Al-Fatiha", "Surah Al-Baqarah", "Surah Al-Mulk", "Surah Al-Nisa"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/rights-and-responsibilities-islamic-study-mcqs/"}
{"subject": "rights-and-responsibilities-islamic-study-mcqs", "topic": "rights-and-responsibilities-islamic-study-mcqs", "question": ": What is the term for the dowry or marital gift that a husband gives to his wife in Islam?", "options": ["Mahr", "Zakat", "Sadaqah", "Fitrah"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/rights-and-responsibilities-islamic-study-mcqs/"}
{"subject": "rights-and-responsibilities-islamic-study-mcqs", "topic": "rights-and-responsibilities-islamic-study-mcqs", "question": ": Which Islamic principle states that men and women are equal in the sight of Allah, but they may have different roles and responsibilities?", "options": ["Hijab", "Qiwamah", "Taqwa", "Ihsan"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/rights-and-responsibilities-islamic-study-mcqs/"}
{"subject": "rights-and-responsibilities-islamic-study-mcqs", "topic": "rights-and-responsibilities-islamic-study-mcqs", "question": ": According to Islamic teachings, what is the responsibility of a husband towards his wife?", "options": ["Financial support", "Household chores", "Sole decision-making power", "None of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/rights-and-responsibilities-islamic-study-mcqs/"}
{"subject": "rights-and-responsibilities-islamic-study-mcqs", "topic": "rights-and-responsibilities-islamic-study-mcqs", "question": ": In Islam, what is the term for the concept of mutual consultation and decision-making between spouses?", "options": ["Tawakkul", "Shura", "Tawbah", "Istikhara"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/rights-and-responsibilities-islamic-study-mcqs/"}
{"subject": "rights-and-responsibilities-islamic-study-mcqs", "topic": "rights-and-responsibilities-islamic-study-mcqs", "question": ": Which Islamic figure is known for her knowledge and scholarship, often cited as a role model for women?", "options": ["Aisha bint Abu Bakr", "Khadijah bint Khuwaylid", "Fatimah bint Muhammad", "Asma bint Abu Bakr"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/rights-and-responsibilities-islamic-study-mcqs/"}
{"subject": "rights-and-responsibilities-islamic-study-mcqs", "topic": "rights-and-responsibilities-islamic-study-mcqs", "question": ": What is the Islamic ruling on a woman’s right to education?", "options": ["Women are not allowed to seek education", "Women can only seek religious education", "Women have the right to seek education like men", "Women must seek permission from their husbands"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/rights-and-responsibilities-islamic-study-mcqs/"}
{"subject": "rights-and-responsibilities-islamic-study-mcqs", "topic": "rights-and-responsibilities-islamic-study-mcqs", "question": ": In Islamic jurisprudence, what is the term for the guardianship of women, often given to male relatives?", "options": ["Qiwamah", "Wali", "Mahr", "Tawakkul"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/rights-and-responsibilities-islamic-study-mcqs/"}
{"subject": "rights-and-responsibilities-islamic-study-mcqs", "topic": "rights-and-responsibilities-islamic-study-mcqs", "question": ": Which Islamic principle emphasizes modesty and decency in behavior and dress for both men and women?", "options": ["Jihad", "Ihsan", "Hijab", "Taqwa"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/rights-and-responsibilities-islamic-study-mcqs/"}
{"subject": "rights-and-responsibilities-islamic-study-mcqs", "topic": "rights-and-responsibilities-islamic-study-mcqs", "question": ": According to Islamic teachings, what are some of the rights of a mother?", "options": ["Financial support from her children", "Respect and kindness", "Inheritance from her children", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/rights-and-responsibilities-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": What is Sawm in Islam?", "options": ["Charity giving", "Fasting during Ramadan", "Pilgrimage to Mecca", "Recitation of Quranic verses"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": During Ramadan, Muslims fast from:", "options": ["Sunrise to sunset", "Sunset to sunrise", "Midnight to noon", "Noon to midnight"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": What is the pre-dawn meal before fasting called?", "options": ["Suhoor", "Iftar", "Taraweeh", "Tahajjud"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": The breaking of the fast at sunset is known as:", "options": ["Suhoor", "Iftar", "Taraweeh", "Tahajjud"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": What is the Arabic term for the special night prayer performed during Ramadan?", "options": ["Suhoor", "Iftar", "Taraweeh", "Tahajjud"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": Muslims abstain from which of the following during fasting hours?", "options": ["Eating and drinking", "Speaking", "Sleeping", "All of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": Who is exempted from fasting during Ramadan according to Islamic law?", "options": ["Children", "Pregnant and nursing women", "Travelers", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": Fasting is obligatory for Muslims once they reach the age of:", "options": ["5", "10", "15", "Puberty"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": What is the significance of fasting during Ramadan?", "options": ["To attain physical fitness", "To purify the soul and attain God-consciousness", "To lose weight", "To showcase discipline"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": The last ten days of Ramadan are particularly significant for:", "options": ["Extra prayers and worship", "Eating special meals", "Shopping for Eid", "Visiting relatives"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": What is Laylat al-Qadr?", "options": ["The Night of Destiny", "The Night of Forgiveness", "The Night of Miracles", "The Night of Ascension"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": On which odd night of the last ten days of Ramadan does Laylat al-Qadr occur?", "options": ["21st", "23rd", "25th", "27th"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": The reward for worshipping on Laylat al-Qadr is equivalent to:", "options": ["100 days of worship", "1000 days of worship", "100 months of worship", "100 years of worship"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": What is the recommended supplication during Laylat al-Qadr?", "options": ["Dua-e-Qunoot", "Surah Al-Fatihah", "Surah Al-Ikhlas", "Dua-e-Qadr"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": Fasting on the Day of Arafah is recommended for:", "options": ["Muslims performing Hajj", "Muslims residing outside Mecca", "Non-Muslims", "Children"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": What is the reward for fasting on the Day of Arafah?", "options": ["Forgiveness of sins for the past and coming year", "Guaranteed entry into paradise", "Wealth and prosperity", "Improved health"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": What is the purpose of fasting beyond abstaining from food and drink?", "options": ["To experience hunger and thirst", "To empathize with the less fortunate", "To lose weight", "To show religious superiority"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": During fasting, Muslims are encouraged to:", "options": ["Sleep as much as possible", "Minimize physical activities", "Increase acts of worship and charity", "Avoid reading Quran"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": What is the penalty for intentionally breaking the fast during Ramadan without a valid reason?", "options": ["Fine", "Imprisonment", "Redemption by feeding the poor", "Social boycott"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": Which meal is encouraged to be eaten first when breaking the fast?", "options": ["Dates", "Water", "Rice", "Meat"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": How many times is Ramadan mentioned in the Quran?", "options": ["Once", "Twice", "Thrice", "Four times"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": Fasting is prescribed for Muslims as it was for:", "options": ["The Jews", "The Christians", "The previous nations", "All of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": Which meal is eaten before the pre-dawn meal during Ramadan?", "options": ["Sahari", "Suhoor", "Iftar", "Taraweeh"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": What is the minimum age at which fasting becomes obligatory for Muslims?", "options": ["7 years", "10 years", "15 years", "Puberty"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": Which act invalidates the fast during Ramadan?", "options": ["Accidental swallowing of food", "Using toothpaste while brushing", "Accidental intake of water while bathing", "None of the above"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": If a Muslim is ill during Ramadan, what should they do regarding fasting?", "options": ["Fast regardless of the illness", "Fast only if the illness is not severe", "Skip fasting and make up for it later", "Fast with the intention of compensating later"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": What is the name of the meal Muslims eat to break their fast?", "options": ["Iftar", "Suhoor", "Taraweeh", "Eid"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": What is the purpose of Taraweeh prayers during Ramadan?", "options": ["To perform the Hajj pilgrimage", "To recite the entire Quran", "To pray for forgiveness", "To offer additional prayers"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": Which act invalidates the fast and requires expiation?", "options": ["Intentional vomiting", "Accidentally swallowing food or drink", "Rinsing the mouth while performing ablution", "All of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "sawm-fasting-during-ramadan-islamic-study-mcqs", "topic": "sawm-fasting-during-ramadan-islamic-study-mcqs", "question": ": What is the significance of Laylat al-Qadr?", "options": ["It marks the beginning of Ramadan", "It is the night of forgiveness", "It is the night of the Battle of Badr", "It commemorates the revelation of the Quran"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sawm-fasting-during-ramadan-islamic-study-mcqs/"}
{"subject": "letter-writing-drafting-mcqs", "topic": "letter-writing-drafting-mcqs", "question": "At which place ‘With love’ can be used in an informal letter?", "options": ["Closing", "Opening", "Heading", "Body"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/letter-writing-drafting-mcqs/"}
{"subject": "letter-writing-drafting-mcqs", "topic": "letter-writing-drafting-mcqs", "question": "Suppose we didn’t know the recipient’s name of a letter, how can we address the recipient?", "options": ["Dear Mr/Mrs", "Hello", "My dear", "Dear Sir or Dear Madam"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/letter-writing-drafting-mcqs/"}
{"subject": "letter-writing-drafting-mcqs", "topic": "letter-writing-drafting-mcqs", "question": "A formal letter should be …… to have the desired effect on the recipient?", "options": ["In the proper format", "To the point and relevant", "Grammatically correct", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/letter-writing-drafting-mcqs/"}
{"subject": "letter-writing-drafting-mcqs", "topic": "letter-writing-drafting-mcqs", "question": "Suppose we didn’t know the recipient’s name, how can we close and end the letter?", "options": ["Yours sincerely", "Affectionately yours", "Yours faithfully", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/letter-writing-drafting-mcqs/"}
{"subject": "letter-writing-drafting-mcqs", "topic": "letter-writing-drafting-mcqs", "question": "How can we address the recipient when writing an informal letter?", "options": ["Dear Mr", "Hello Sir/Madam", "Dear Sir/Madam", "My dear"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/letter-writing-drafting-mcqs/"}
{"subject": "letter-writing-drafting-mcqs", "topic": "letter-writing-drafting-mcqs", "question": "Which of the following is the name given to the date and address at the top in a formal letter?", "options": ["Starting", "Closing", "Body", "Heading"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/letter-writing-drafting-mcqs/"}
{"subject": "letter-writing-drafting-mcqs", "topic": "letter-writing-drafting-mcqs", "question": "How to end the main body of a formal letter?", "options": ["By showing your love for the recipient", "By discussing the weather in your city", "By discussing the weather in the recipient’s city", "By telling the recipient what he should be doing next"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/letter-writing-drafting-mcqs/"}
{"subject": "letter-writing-drafting-mcqs", "topic": "letter-writing-drafting-mcqs", "question": "What would you say in the opening part of a formal letter and what kind of information should it include?", "options": ["Ask how good the weather is in the recipient’s city", "Inform the recipient why you are writing the letter", "Discuss whether the recipient is hale and hearty", "Discuss how good the weather is in your city"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/letter-writing-drafting-mcqs/"}
{"subject": "letter-writing-drafting-mcqs", "topic": "letter-writing-drafting-mcqs", "question": "The key point of a formal letter is written in which part of a formal letter?", "options": ["Postscript", "Body", "Opening", "Closing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/letter-writing-drafting-mcqs/"}
{"subject": "letter-writing-drafting-mcqs", "topic": "letter-writing-drafting-mcqs", "question": "How to write an informal letter?", "options": ["Write legibly in simple English", "Ignore grammar", "Leave out the date", "Scribble"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/letter-writing-drafting-mcqs/"}
{"subject": "parts-of-business-letter-mcqs", "topic": "parts-of-business-letter-mcqs", "question": "The receiver’s address should be written completely in capitals, without periods or commas on the envelope of the letter.", "options": ["True", "False", "None of these", "All of the above"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parts-of-business-letter-mcqs/"}
{"subject": "parts-of-business-letter-mcqs", "topic": "parts-of-business-letter-mcqs", "question": "The body of the letter is followed by which of the following complimentary close?", "options": ["Yours Truly:", "Yours truly,", "Yours Truly,", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parts-of-business-letter-mcqs/"}
{"subject": "parts-of-business-letter-mcqs", "topic": "parts-of-business-letter-mcqs", "question": "Select the abbreviation that is written to show that a separate document accompanies the letter.", "options": ["Att.", "Enc.", "None of these", "Ref."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/parts-of-business-letter-mcqs/"}
{"subject": "parts-of-business-letter-mcqs", "topic": "parts-of-business-letter-mcqs", "question": "What is the accurate representation to show the purpose of a letter?", "options": ["Please Note: Formal Notice", "Attention: Formal Notice", "Subject: Formal Notice", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parts-of-business-letter-mcqs/"}
{"subject": "parts-of-business-letter-mcqs", "topic": "parts-of-business-letter-mcqs", "question": "What is the meaning of “cc” in Business writing?", "options": ["A copy of the letter has been sent to the person(s) indicated.", "A copy of the letter has been filed.", "None of these", "Copy Checked"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parts-of-business-letter-mcqs/"}
{"subject": "parts-of-business-letter-mcqs", "topic": "parts-of-business-letter-mcqs", "question": "Which of the following is a recommended style to write the date in a business letter?", "options": ["01/06/2021", "June 1, 2021", "Monday, June 1st, 2021", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/parts-of-business-letter-mcqs/"}
{"subject": "parts-of-business-letter-mcqs", "topic": "parts-of-business-letter-mcqs", "question": "“Confidential”, “Personal,” or “Registered” like instructions are usually written entirely.", "options": ["True", "False", "None of these", "Sometimes"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parts-of-business-letter-mcqs/"}
{"subject": "parts-of-business-letter-mcqs", "topic": "parts-of-business-letter-mcqs", "question": "Which of the following is the pre-printed part of the letter that shows across the top margin and comprises the name of the business?", "options": ["Letterhead", "Inside address", "Addressee notation", "Salutation"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parts-of-business-letter-mcqs/"}
{"subject": "parts-of-business-letter-mcqs", "topic": "parts-of-business-letter-mcqs", "question": "Which of the following shows the accurate form for the salutation or greeting in writing a business letter?", "options": ["Dear F.R. Shamil:", "Dear Mr. F.R. Shamil,", "None of these", "Dear Sir"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parts-of-business-letter-mcqs/"}
{"subject": "parts-of-business-letter-mcqs", "topic": "parts-of-business-letter-mcqs", "question": "Which part of the letter contains the mailing address and receiver’s name?", "options": ["Inside address", "Addressee notation", "Salutation", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/parts-of-business-letter-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memos Mcqs", "question": "What is the primary focus of meteorology? (A) Long-term weather patterns", "options": ["Short-term weather forecasting", "Climate change studies", "Historical climate data", "Short-term weather forecasting"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/memos-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memos Mcqs", "question": "Online help screens and websites having which kind of Structure?", "options": ["Randomly linear", "chronological order", "linear", "nonlinear"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/memos-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memos Mcqs", "question": "‘Pictographs’ are a type of which kind of charts or graphs?", "options": ["Flow charts", "Pie charts", "Bar charts", "line graphs"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/memos-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memos Mcqs", "question": "Free Memo Template Download Another word for an obscure word ‘endeavor’, having a meaning of?", "options": ["send", "try", "find out", "view"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memos-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memos Mcqs", "question": "Concise word, ‘having a meeting’ having a meaning of?", "options": ["official meeting", "meet someone", "scheduled meeting", "All of these"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memos-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memos Mcqs", "question": "What is the purpose of the first sentence of the body of a memo?", "options": ["Introduces the writer of the memo", "States the purpose of the memo and/or what action the reader needs to take", "Tells the audience who to interact with if they have queries", "Serves as a formal greeting"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memos-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memos Mcqs", "question": "A sentence starts with verbs in writing instructions is referred to as?", "options": ["comparative mood", "imperative mood", "indicative mood", "phrases"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memos-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memos Mcqs", "question": "To set writing tone appropriate, considered as a big challenge for;", "options": ["lay audience", "low tech audience", "high-tech audience", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/memos-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memos Mcqs", "question": "In a memo, reasoning on hirings, firings, and purchasing, etc, is known as?", "options": ["affiliations", "procedures", "recommendations", "Preference"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/memos-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memos Mcqs", "question": "Which statement is true for the spacing of a memo?", "options": ["Everything is double spaced except for the body paragraphs", "The entire document is single-spaced", "The entire document is double spaced", "Only the body paragraphs are double spaced"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/memos-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memos Mcqs", "question": "Memos are usually _____ page(s) long.", "options": ["5", "2", "3", "1"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/memos-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memos Mcqs", "question": "‘Meat cleaver’ method is used to make which kind of sentences?", "options": ["grammatically correct", "accurate", "lengthy", "short"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/memos-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memos Mcqs", "question": "U.S. mail is known as?", "options": ["snail mail", "fast mail", "average mail", "international mail"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/memos-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memos Mcqs", "question": "Sometimes Memos cover the subheadings to signal a shift in topics.", "options": ["True", "False", "True"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/memos-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memos Mcqs", "question": "Which two adjectives best describe a memo?", "options": ["Lengthy and in-depth", "Short and concise", "Detailed and formal", "Verbose and succinct"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memos-mcqs/"}
{"subject": "Computer Science General Test", "topic": "T4Tutorials Memos Mcqs", "question": "The concise word ‘make an adjustment of’ can be classified as;", "options": ["congested", "adjust", "digest", "support"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/memos-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "The railway track runs —— the river?", "options": ["over", "on", "by", "across"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Select the Antonym of ONEROUS.", "options": ["Burdensome", "Difficult", "Light", "Fluent"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Select the meaning of De novo.", "options": ["Calm in arm", "To any extent", "Prominent", "New"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "What is the meaning of the following Idiom: “To make amends for”?", "options": ["Make possible effort", "To bring change in something", "To compensate for damage", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "A book that provides information on all branches of knowledge is called?", "options": ["Desperado", "Cynic", "Encyclopedia", "Elysium"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Identify the disease that is liable to be transmitted to people by the environment is called?", "options": ["Contagious", "Fatal", "Infectious", "Incurable"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Select one of the antonyms of the word “Perpetrator” while others are synonyms.", "options": ["Police", "Felon", "Culprit", "Miscreant"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Select the Antonym of HYPOCRISY.", "options": ["Uprightness", "Doubt", "Burdensome", "Fluent"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "The market is nearer to them than ——-?", "options": ["we", "ourselves", "ours", "us"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "A person who talks in his/her sleep is called?", "options": ["Bourgeois", "Somniloquist", "Ventriloquist", "Insomnist"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Something that is hard but likely to crack easily is called?", "options": ["Resilient", "Flexible", "Brittle", "Supple"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "A person who helps another do a crime is called?", "options": ["Cuckold", "Amateur", "Accomplice", "Changeling"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "The antonym of Stale is?", "options": ["Old", "Break", "Tale", "Fresh"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "The process of forcing someone to make payment for not revealing discreditable secrets is called?", "options": ["Assassin", "Despotism", "Blackmail", "Elysium"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Identify the items of business to be considered at a meeting is known as?", "options": ["Elysium", "Bulletin", "Agenda", "Epicture"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "The Antonym of APATHY is?", "options": ["Zeal", "Conclude", "Sleep", "None of these"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "My friend said to me, “I will meet you tonight.”", "options": ["My friend told me that he would meet me that night.", "My friend told that he will meet me tonight.", "My friend told me that I will meet you tonight.", "My friend said to me that he will meet me that night."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "She said, “I need some money.”", "options": ["She said that I need some money.", "She said that she need some money.", "She said that I needed some money.", "She said that she needed some money."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "He said, “I visited Lahore yesterday.”", "options": ["He said that He visited Lahore yesterday.", "He said that I had visited Lahore yesterday.", "He said that He had visited Lahore the previous day.", "He said that He has visited Lahore the previous day."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "She said, “I need your help now.”", "options": ["She said She need my help now.", "She said that I needed your help now.", "She said that he needed my help then.", "All of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "What is the meaning of the idiom “To cut a long story short”?", "options": ["Tell the story briefly", "Miss the main points", "Come to the point", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "She said, “I am studying now.”", "options": ["She said that he was studying then.", "She said that I was studying then.", "She said that I am studying then.", "She said that he was studying now."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Select the antonym of “Prosaic” while others are synonyms.", "options": ["Pedestrian", "Interesting", "Tedious", "Prosy"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Select the antonym of Flaunt while others are synonyms.", "options": ["Brandish", "Cover", "Display", "Exhibit"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Which one of the following is the antonym of “Flummox” while others are synonyms?", "options": ["Baffle", "Enlighten", "Perplex", "Confound"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Select the antonym of Perdition.", "options": ["Infernal", "Doom", "Hell", "Heaven"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "What is the meaning of the idiom “A slap on the wrist”?", "options": ["Hard Punishment", "Beating Someone", "Make someone sad", "Warning or Small Punishment"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Select the antonym of Raucous while others are synonyms. (A) Hoarse", "options": ["Discordant", "Strident", "Subdued", "Subdued"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Identify the antonym of Minuscule while others are synonyms. (A) Majuscule", "options": ["Lilliputian", "Miniature", "Diminutive", "Majuscule"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Select the antonym of Mordant while others are synonyms. (A) Pleasant", "options": ["Caustic", "Corrosive", "Acerbic", "Pleasant"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Select the antonym of Apocryphal while others are synonyms. (A) Unsubstantiated", "options": ["Mythical", "Obscure", "Genuine", "Genuine"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Select the antonym of Welter while others are synonyms. (A) Order", "options": ["Fuddle", "Jumble", "Clutter", "Order"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "She writes — ink. (A) With", "options": ["For", "In", "On", "In"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Leaving one’s country to live in another foreign land is called: (A) Immigrate", "options": ["Eradicate", "Emigrate", "Extempore", "Emigrate"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "english-comprehension-composition-mcqs", "topic": "english-comprehension-composition-mcqs", "question": "Select the antonym of Éclat while others are synonyms. (A) Eminence", "options": ["Dullness", "Plaudit", "Esteem", "Dullness"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/english-comprehension-composition-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "What establishes the technical report?", "options": ["Logical conclusion", "Illogical Conclusion", "Personal prejudice", "Misplaced learning"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "Which is not a basis for a technical report?", "options": ["Facts", "Tests", "Personal prejudices", "Experiments"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "A shorter report is considered to be:", "options": ["One to five pages", "Three to five pages", "Four to five pages", "Two paragraphs"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "In technical writing, the largest report section is termed:", "options": ["Conclusion/recommendation", "Discussion", "Heading", "Footing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "In a technical report, which of these must be avoided?", "options": ["Facts", "Logical conclusion", "Objective evaluation", "Subjective evaluation"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "Once a problem is identified with its causes, the next step involves:", "options": ["Choosing team lead", "Identifying solution to problem", "Identifying the problem", "All of the above"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "“We,” “us,” and “our” are examples of:", "options": ["Contractions", "Pronoun usage", "Name usage", "Nouns"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "A report may be used for:", "options": ["Reading", "Hearing", "Both A and B", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "A list of illustrations, including figures and tables, is placed in the:", "options": ["Abstract section", "Title page", "Table of contents", "Bottom line"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "The last step in writing an effective website involves:", "options": ["Error correction", "Testing the website", "Enhancing tone", "Overviewing"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "Which of these is not a parameter in a report?", "options": ["Extent of information", "Quality of information", "Age of writer", "Ability to acquire information"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "Which audience requires the least information?", "options": ["Low-tech audience", "Lay audience", "High-tech audience", "All of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "Which of the following statements about reports is accurate?", "options": ["Informal reports of eight or fewer pages are the most common in the workplace.", "Writers develop reports for internal audiences only.", "Business professionals rarely write reports.", "Both B and C"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "Which of the following is most likely to be written as an informative report?", "options": ["A recommendation from the IT Department to install a wireless network", "A summary of information presented at a recent conference for technical writers", "A comparison of five handheld communication devices for potential purchase", "A feasibility study addressing tuition reimbursement for all employees"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "Reports that provide data or findings, analyses, and conclusions are:", "options": ["Informational reports", "Progress reports", "Summaries", "Analytical reports"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "Which of the following reports is an example of an analytical report?", "options": ["A report summarizing the details of a recent seminar you attended", "A report outlining the new company procedure for reporting workplace injuries", "A report recommending an antiterrorism security system for mass transit", "A report showing state budget allocations for education"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "The direct pattern of organization is appropriate for a business report when readers:", "options": ["Need to be educated", "Must be persuaded", "May be disappointed or hostile", "Are informed"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "Reports convey information, answer questions, and:", "options": ["Present your opinions", "Comply with government regulations", "Solve problems", "None of these"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "Reports that present data without analysis or recommendations are:", "options": ["Justification reports", "Analytical reports", "Both A and B", "Informational reports"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "To increase your credibility when writing a business report, you should:", "options": ["Provide facts and conclusions that will help decision-making", "Support managers’ preconceived ideas", "Both A and B", "Draw the reader’s attention to your writing style"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "When writing a report, you should adapt to your audience by:", "options": ["Being sensitive to their needs", "Controlling your style and tone", "Both A and B", "None of the above"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "When writing an effective essay, using credible information:", "options": ["Provides content", "Gives credit to sources and upholds ethical writing standards", "Provides structure", "Provides support"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "One of the fundamental principles of efficient and effective writing is to:", "options": ["Use case studies", "Provide examples", "Put the most important information at the start", "Discuss various situations"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "Which one is used for the shortest document among technical written documents?", "options": ["Report", "Website", "Summary", "Paragraph"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "Which of the following words is a technical term for slanting?", "options": ["Lateral", "Sloping", "Tilting", "Bent"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "technical-report-writing-multiple-choice-questions-mcqs", "topic": "technical-report-writing-multiple-choice-questions-mcqs", "question": "What must be avoided in technical writing?", "options": ["Facts", "Grammar", "P"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/technical-report-writing-multiple-choice-questions-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Katie ______ at the grass in the garden?", "options": ["is watching", "is seeing", "is washing", "is looking"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "_______ Bruce reads in bed?", "options": ["Sometimes", "Never", "Always", "Seldom"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "She hasn’t bought ________ mangos.", "options": ["some", "any", "much", "a lot"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Tim and Chris ________ home?", "options": ["they are in", "they are at", "are at", "are in"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "There are ________ in the examination room but only one instructor?", "options": ["a lot of students", "many people", "a lot people", "much students"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "The cat jumped ____ her.", "options": ["in", "over", "upon", "None of These"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Identify which type of sentence is this? You can wait here until Joey calls you.", "options": ["complex", "compound", "simple", "None of These"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Identify which type of sentence is this? A group of students studied the problem and solved it in a few hours.", "options": ["complex", "compound", "simple", "None of These"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Identify complete sentence?", "options": ["He closed his eyes.", "Now and then.", "The child in bed.", "None of These"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Which is the most suitable ending for the sentence? She ran all the way but …", "options": ["She laughed.", "She caught the train.", "She missed the train.", "None of These"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "The students in our college are ________ in other colleges.", "options": ["smarter than those", "smarter", "more smarter than", "smarter than"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Write down ________ your roll number and name.", "options": ["either", "both", "not only", "neither"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "CNG burns not as much as efficiently than gasoline ________.", "options": ["should burn", "burn", "burns", "would burn"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "The woman __________ purse was stolen called the police.", "options": ["whom", "which", "who", "whose"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "The mall is nearer to them than __________.", "options": ["ourselves", "us", "our self", "we"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Jonas takes his turn, and Josephine takes __________.", "options": ["himself", "her", "hers", "herself"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Which one of the following is a complete sentence?", "options": ["Over the bridge.", "The train number 49.", "It was late.", "Both A & B"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Which one of the following is the best word to fill the gap in this sentence? Ali likes games ……. he likes dogs.", "options": ["or", "and", "but", "Both B & C"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Which one of the following is the best word to fill the gap in this sentence? Ali likes chocolates ……. he hates peanuts.", "options": ["but", "or", "when", "Both A & B"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Is Brett short?", "options": ["No, he’sn’t.", "Yes, he’s.", "Yes, he is.", "No, his not."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Where’s the cat?", "options": ["Its here.", "It is near the window.", "There is on a table.", "He is under table."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Chandler is looking at ________?", "options": ["there", "they", "their", "them"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Cardi works, but ________?", "options": ["Irene works?", "works Irene?", "does Irene?", "Irene does?"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Sabrina’s ________ street.", "options": ["under", "in the", "into the", "at the"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Every statement must have a _____ and a subject.", "options": ["phrase", "predicate", "verb", "noun"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Identify which type of sentence is this? The old van was in fairly good operating condition, but the state of the body was deprived.", "options": ["compound", "complex", "simple", "None of These."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Identify which type of dependent clause is in this sentence: The narrow streams that run through this spot are full with fish.", "options": ["noun clause", "adverb clause", "adjective clause", "None of These."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Identify which type of dependent clause is in this sentence: When the leaves start to fall, they will harvest the last of their crops.", "options": ["noun clause", "adverb clause", "adjective clause", "None of These."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Identify which type of dependent clause is in this sentence: Your mother said you haven’t slept in three or four nights.", "options": ["noun clause", "adjective clause", "adverb clause", "None of These."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Identify which type of sentence is this? The troops checked the ship and equipped it for sea.", "options": ["compound sentence", "simple sentence", "None of These.", "simple sentence"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Mike, what _______?", "options": ["are you doing", "at the", "is doing", "are doing"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Tobi and I ________ ?", "options": ["we are here", "am here", "we here", "are here"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Karim and Tareeq _____ the door?", "options": ["are walking to", "are walking at", "walks to", "None of These."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Wade enjoy ______ cricket.", "options": ["playing", "to play", "to playing", "plays"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Majority of the guests arrived ________ cars.", "options": ["by", "with", "in", "from"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "The convenience store is open _______ eight to twelve.", "options": ["from", "by", "during", "between"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "On leaving the mall, Mary was robbed ________ purse.", "options": ["of hers", "by her", "of her", "by hers"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "If I had cash, I ______ it now.", "options": ["would have purchased", "have purchased", "will purchase", "would purchase"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "What _____ doing?", "options": ["do they", "are they", "is they", "does they"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "My brother is a police officer so he always ___ wear a uniform.", "options": ["has to", "don’t have to", "doesn’t have to", "have to"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "What is the primary focus of meteorology?", "options": ["Long-term weather patterns", "Short-term weather forecasting", "Climate change studies", "Historical climate data"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "I _____ work hard after my exam. I can have a vacation.", "options": ["had to", "won’t have", "have too", "won’t have to"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "You _____ work very hard because you have an exam next week.", "options": ["had to", "am having", "have to", "has to"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "His uncle died _____ the war.", "options": ["during", "in", "via", "for"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "They might have a picnic. It depends _____ the weather conditions.", "options": ["about", "with", "to", "on"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "She’s not interested _____ what I think or what I want.", "options": ["in", "with", "on", "to"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "In this sentence, which word is the subject? Percy left the party.", "options": ["left", "Percy", "party", "the"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "In this sentence, which word is the subject? Roy loves to walk.", "options": ["love", "walk", "to", "Roy"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "In this sentence, which word is the subject? The heated mob gathered quickly.", "options": ["mob", "Heated", "quickly", "gathered"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "In this sentence, which word is a verb? The airplane traveled fast.", "options": ["The", "airplane", "fast", "traveled"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "In this sentence, which word is a verb? The raccoon ran quickly.", "options": ["ran", "quickly", "The", "raccoon"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "_____ your best friend occasionally go on vacations with you?", "options": ["Have", "Did", "Do", "Does"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "_____ you often go overseas?", "options": ["Have", "Did", "Do", "Does"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "_____ you ever been to Vegas?", "options": ["Does", "Do", "Did", "Have"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "_____ you have a good vacation last summer?", "options": ["Did", "Are", "Does", "Do"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "_____ you speak four languages?", "options": ["Are", "Do", "Did", "Does"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Which one of the following sentences makes the most sense?", "options": ["I went to the market and I bought some apples but I dropped them on the way home.", "I went to the market and I bought some apples or I dropped them on the way home.", "I went to the market but I bought some apples and I dropped them on the way home.", "Both A & B"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "The girl ________ you met is an entrepreneur.", "options": ["whose", "whom", "which", "who"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "The man ________ is sitting by the window works in Google.", "options": ["which", "whose", "who", "whom"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "She is looking for housing __________ in apartment or shared house.", "options": ["either", "both", "neither", "until"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "You can go neither by airplane __________ by train.", "options": ["or", "no", "and", "nor"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "When Jerome was younger, he ________ six miles a day.", "options": ["had been walking", "walked", "has been walking", "had walked"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "In this sentence, which word is a verb? The dog usually barks at the neighbor.", "options": ["usually", "neighbor", "barks", "Both B & C"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "In this sentence, which word is a verb? Carl usually cycles home after school.", "options": ["cycles", "Carl", "usually", "Both A & B"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "In this sentence, which word is a verb? Emily spoke too hastily.", "options": ["Emily", "spoke", "too", "hastily"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Joe is afraid_______ cats.", "options": ["of", "by", "to", "from"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "They did not have ________ question for the teacher.", "options": ["some", "none", "more", "any"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "If I __________ time, I would have bought it few days ago.", "options": ["would have", "have had", "had had", "would had"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Which of the following word could be a subject?", "options": ["next", "see", "sea", "over"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Choose the correct statement from the following?", "options": ["Do not make friendship with self-centered people.", "Do not make friend with self-centered people.", "Do not make friendly with self-centered people.", "Do not make friends with self-centered people."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "The house is huge _________ is pretty old-fashioned.", "options": ["or", "and", "but", "which"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "I need to find ________ way to solve this problem.", "options": ["the other", "another", "others", "other"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "A few students are ______ at copying.", "options": ["adept", "adopt", "edept", "adapt"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Mother _____ Molly not to go out in the winter.", "options": ["advise", "adviced", "advice", "advised"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "What this sentence lacks is? Drank all the milk.", "options": ["An object", "A verb", "A subject", "Both B&C"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "What this sentence lacks is? Alex bought at last.", "options": ["A verb", "An object", "A subject", "Both A&B"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "What this sentence lacks is? The greedy woman all the cupcakes.", "options": ["A verb", "An object", "A subject", "Both A&B"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Anna thought she had lost her keys… Which of the following sentence is a suitable ending for this sentence?", "options": ["and she locked the door after herself.", "but she had left them at home", "or the key was stolen.", "Both A&B"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Your Spanish is really good but mine _____?", "options": ["isn’t", "haven’t", "doesn’t", "don’t"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Vince didn’t remember my birthday but you _____?", "options": ["does", "did", "don’t", "have"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "I don’t want to leave early but they _____.", "options": ["is", "have", "does", "do"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "George hasn’t finished his work but I _____?", "options": ["do", "have", "doesn’t", "don’t"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "My brother watched TV last night but I _____?", "options": ["doesn’t", "hasn’t", "didn’t", "isn’t"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Milk, bread and eggs. Is this a sentence?", "options": ["No", "Yes", "Maybe", "None of These"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "A white envelope. Is this a sentence?", "options": ["No", "Yes", "Maybe", "None of These"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "The clock has stopped working. Is this a sentence?", "options": ["No", "Yes", "Maybe", "None of These"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Chris loves flying but I _____?", "options": ["don’t", "haven’t", "doesn’t", "isn’t"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Millie isn’t working hard but I _____?", "options": ["are", "am", "has", "have"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Jack doesn’t like ice-cream but Jill _____?", "options": ["has", "is", "does", "have"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "sentence-structuring-english-mcqs", "topic": "sentence-structuring-english-mcqs", "question": "Jill likes ice-cream but Jack _____?", "options": ["doesn’t", "isn’t", "hasn’t", "haven’t"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/sentence-structuring-english-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which part of the sentence typically performs the action?", "options": ["Predicate", "Complement", "Object", "Subject"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which part of the sentence tells what the subject does or is?", "options": ["Predicate", "Modifier", "Clause", "Object"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "In the sentence “The sky turned blue,” the word “blue” functions as a:", "options": ["Direct Object", "Predicate Adjective", "Predicate Noun", "Modifier"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "“She enjoys reading books.” This sentence is ___.", "options": ["Imperative", "Exclamatory", "Declarative", "Interrogative"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which sentence expresses a command?", "options": ["What is your name?", "How beautiful the night is!", "The flowers are blooming.", "Please close the door."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "A sentence containing one independent clause and one dependent clause is:", "options": ["Simple", "Complex", "Compound", "Fragment"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "A group of words with a subject and predicate is called a:", "options": ["Phrase", "Modifier", "Clause", "Infinitive"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "“Under the table” is an example of a:", "options": ["Prepositional Phrase", "Verb Phrase", "Noun Phrase", "Adjective Clause"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "A clause that cannot stand alone is known as a:", "options": ["Independent Clause", "Dependent Clause", "Noun Clause", "Adverb Clause"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which clause can stand alone as a complete sentence?", "options": ["Dependent Clause", "Adjective Clause", "Independent Clause", "Noun Clause"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "The usual English word order is:", "options": ["O–S–V", "S–O–V", "V–S–O", "S–V–O"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "What comes first in a logically sequenced sentence?", "options": ["Verb", "Modifier", "Subject", "Object"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which word correctly modifies a verb?", "options": ["Quick", "Beautiful", "Quickly", "Beauty"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Where should an adjective be placed in a sentence?", "options": ["Before the noun it describes", "After the verb", "At the end of the sentence", "After a conjunction"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Identify the sentence with a dangling modifier.", "options": ["Walking down the street, the trees looked beautiful.", "She baked a cake yesterday.", "The child ran quickly.", "They are watching a movie."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which sentence maintains correct parallel structure?", "options": ["He likes running, to swim, and biking.", "She enjoys reading, writing, and to paint.", "They came, they saw, and they conquered.", "He wants to dance, singing, and jump."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which pair is an example of parallel words?", "options": ["Running and quickly", "Tall and running", "Fast and slow", "To read and reading"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which conjunction joins words or clauses of equal importance?", "options": ["Although", "And", "Because", "When"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which of the following is a subordinating conjunction?", "options": ["And", "But", "While", "Or"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "“He said he will come yesterday.” The error is related to:", "options": ["Voice", "Tense Consistency", "Articles", "Pronouns"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Identify the mixed-tense error.", "options": ["She walks and sings.", "I am reading now.", "They are running and jumping.", "He went home and eats dinner."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "“He said that he had finished the work.” This follows:", "options": ["Future tense sequence", "Incorrect tense sequence", "Present tense sequence", "Correct past tense sequence"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "“The dogs barks loudly.” The error relates to:", "options": ["Subject–Verb Agreement", "Adjectives", "Pronouns", "Voice"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which is plural?", "options": ["Child", "Woman", "Geese", "Mouse"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "“Neither the boys nor the teacher ___ ready.”", "options": ["Are", "Were", "Is", "Be"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which pronoun agrees with “everyone”?", "options": ["Their", "They", "His or her", "Them"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Identify the correct pronoun case: “Between you and ___, this is a secret.”", "options": ["I", "Me", "They", "He"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Identify the ambiguous pronoun.", "options": ["Sarah told Emily that she won.", "Sarah is a good student.", "Emily runs daily.", "She enjoys reading."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Identify the passive voice sentence.", "options": ["The teacher praised him.", "He praised the teacher.", "The homework was completed by her.", "She is reading a book."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "“The ball was kicked by John” → Change to active.", "options": ["John kicks the ball.", "The ball kick John.", "The ball kicks John.", "John kicked the ball."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Passive voice is generally used to:", "options": ["Stress the subject", "Avoid responsibility", "Introduce new topics", "Show strong emotion"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Choose the correct article: “___ honest man is trusted.”", "options": ["A", "An", "The", "No article"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which sentence uses correct article placement?", "options": ["She is a best student.", "He has an umbrella.", "They saw a elephants.", "I need an water."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "“The sun rises in ___ east.”", "options": ["A", "An", "The", "No article"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "“She wants ___ to school early.”", "options": ["Go", "Going", "To go", "Goes"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Fill the blank: “The meeting was postponed ___ the manager arrived late.”", "options": ["And", "Because", "But", "Although"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Choose the correct structure:", "options": ["He is interested in learning.", "He is interested to learn.", "He is interested for learn.", "He is interested on learning."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Find the correct first sentence in a logical sequence.", "options": ["Finally, they celebrated.", "First, they booked their tickets.", "Then they reached the airport.", "After that, they boarded the plane."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Identify the correct coherence marker.", "options": ["Blue", "However", "Running", "Eats"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Choose the improved sentence.", "options": ["Him is going to school.", "He going school.", "He is going to school.", "He school going."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Identify the structural error.", "options": ["She likes to sing and dancing.", "She sings daily.", "They wrote a letter.", "The boy ran fast."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which option corrects the sentence? “He don't like apples.”", "options": ["He do not like apples.", "He not like apples.", "He doesn't likes apples.", "He does not like apples."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Choose the correct connector:", "options": ["Although", "The", "Quickly", "Pink"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Reduce the clause: “He said that he was tired.”", "options": ["He said he tired.", "He said being tired.", "He said he was tired.", "He said tired."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Identify the compound-complex sentence.", "options": ["She cried.", "She cried because she failed.", "She cried, and she left because she was upset.", "She left."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which sentence shows correct structure?", "options": ["Because it rained, and we stayed inside.", "It rained, we stayed inside.", "Rained it, we stayed.", "It rained, so we stayed inside."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Identify the error in the sentence: “He go to school and he studied hard.”", "options": ["Subject–verb error", "Tense error", "Misplaced modifier", "Fragment"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which is a second conditional sentence?", "options": ["If it rains, we get wet.", "If I were rich, I would travel the world.", "If he studied, he will pass.", "If you heat ice, it melts."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Change to indirect speech: “She said, ‘I am tired.’”", "options": ["She said that she was tired.", "She said she is tired.", "She said that I was tired.", "She said she tired."], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which option correctly transforms the sentence? “She said, ‘I will help him.’”", "options": ["She said that she help him.", "She said that she will help him.", "She said that she would help him.", "She said she helped him."], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "A cleft sentence is used to:", "options": ["Express emotion", "Show emphasis", "Form passive voice", "Ask questions"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Identify the inverted sentence.", "options": ["The dog barked loudly.", "Loudly barked the dog.", "The dog is barking.", "The dog will bark."], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which sentence best fits into a reading-based structure task?", "options": ["They are running fast.", "She is happy.", "He plays football.", "The paragraph explains the causes of pollution."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Identify the appropriate choice for paragraph flow.", "options": ["Suddenly", "Moreover", "Blue", "Reading"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "english-sentence-structuring-mcqs", "topic": "english-sentence-structuring-mcqs", "question": "Which option correctly fixes the sentence in context: “The report, confusing written, was unclear”?", "options": ["The report was written confusing.", "Report confusing was unclear.", "The report, written confusing, unclear.", "The confusing written report was unclear."], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/english-sentence-structuring-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "We couldn’t open the new store as scheduled, due to lacking _____.", "options": ["Funds", "Shares", "Expenses", "Interest rates"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "Three very _____ cats are owned by us.", "options": ["Alike", "Same", "Similar-looking", "Alike-looking"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "You should just leave him alone, if your invitations are met with repeated ______.", "options": ["Rebuffs", "Blunts", "Negatives", "Hypotheses"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "_____ I can talk, you are the only person.", "options": ["Which", "That", "To who", "To whom"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "Mr. Smith was _____ mishandling funds, in the course of the meeting.", "options": ["Informed by", "Denied", "Accused of", "Praised for"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "She admitted that she had contemplated suicide on many an occasion, writing her memoirs, Doreen, _____ lost a daughter to cancer.", "options": ["Have", "Who must", "Who had herself", "Would have"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "As _____ the neighborhood I do have concerns, but I don’t dislike the building.", "options": ["In", "Regards", "Well", "If"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "Plenty of times I’ve told you that I _______.", "options": ["Do love you", "Was love you", "Need love you", "Have love you"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "Having such a famous man for a mother ____ had an effect on Emily’s childhood.", "options": ["Must have", "Having", "Have", "Must"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "My brother ____ bought a laptop for his birthday last year.", "options": ["Has", "Had", "Was", "Were"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "My wife and I bought _______ last week.", "options": ["Pieces of new furniture", "Any new furniture", "Some new furniture", "A lot of new furniture"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "To spend my summer holidays, where do you think _______?", "options": ["I might", "Might be the best place", "A good place", "I should"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "Due to _____ having enough money to pay for the hotel, I couldn’t stay any longer.", "options": ["To", "For", "To not", "Not"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "They are happy that the number of their customers are increasing, _____, their business hasn’t taken off as expected.", "options": ["Moreover", "Nonetheless", "In as much as", "Furthermore"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "I’ve had _____ with you guys. Thanks for having me!", "options": ["So good time", "Good time", "Such fun", "So fun"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "On my way home, I stopped _____ a phone call.", "options": ["For make", "To make", "For making", "Making"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "“What if we ____ in for a change?” “Where shall we go this weekend?”", "options": ["Stayed", "Can stay", "Will stay", "Are staying"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "_____ on holiday, he always gets up at 5 o’clock in the morning.", "options": ["Even", "However", "Although", "Moreover"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "The one who was shocked by the atrocities ought to ask himself what _____ to prevent them.", "options": ["Did they do", "They could have done", "They must have done", "Had they done"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "I’m a teacher and _____ my wife.", "options": ["Such is", "So is", "Is she", "Is a teacher"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "_____ seen as a threat was important to her.", "options": ["She wasn’t", "Not to be", "Not being", "To not be"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "Because her parents _______ , she didn’t marry James.", "options": ["Haven’t liked him", "Were against it", "Were against", "Wanted her"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "Even though I’d tried all possible _____ of communication, I couldn’t get in touch with her.", "options": ["Tools", "Means", "Thing", "Ways"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "The thing ______ I like the most about my mother is her smile.", "options": ["That", "Have", "Is", "What"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "______ , he’s not very intelligent, I think he’s an idiot.", "options": ["Say so", "To say nothing", "That is to say", "Having to say"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "In a job interview, avoid ____ questions that are too personal.", "options": ["Answering", "Having to answer", "To answer", "You should answer"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "The kids had bread and butter for lunch, and so _____.", "options": ["Had I", "Me too", "Did I", "I did"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "grammar-and-vocabulary-english-solved-mcqs", "topic": "grammar-and-vocabulary-english-solved-mcqs", "question": "It turned out, all I had to do to convince Janet ____ talk to her mother.", "options": ["To", "By", "Is to", "Was to"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/grammar-and-vocabulary-english-solved-mcqs/"}
{"subject": "types-of-letters-mcqs-technical-and-business-writing", "topic": "types-of-letters-mcqs-technical-and-business-writing", "question": "A perceptive and sensitive communication goal can be classified as?", "options": ["Build trust and persuade", "Build trust and inform", "Persuade and instruct", "Trust and instruct"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/types-of-letters-mcqs-technical-and-business-writing/"}
{"subject": "types-of-letters-mcqs-technical-and-business-writing", "topic": "types-of-letters-mcqs-technical-and-business-writing", "question": "A detailed outline practice, used in formal oral communication is categorized as:", "options": ["Manuscript speech", "Extemporaneous speech", "Memorized speech", "Verbal speech"], "correct": 2, "explanation": "", "source_url": "https://t4tutorials.com/types-of-letters-mcqs-technical-and-business-writing/"}
{"subject": "types-of-letters-mcqs-technical-and-business-writing", "topic": "types-of-letters-mcqs-technical-and-business-writing", "question": "In letter writing, the ideal style to use heading and subheading technique in a newsletter focuses on:", "options": ["Use outlining", "Use detailed phrases", "Use abbreviations", "Avoid excessive punctuation"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/types-of-letters-mcqs-technical-and-business-writing/"}
{"subject": "types-of-letters-mcqs-technical-and-business-writing", "topic": "types-of-letters-mcqs-technical-and-business-writing", "question": "Which of the following is a writing practice against legal and ethical considerations, considered a violating rule of technical writing?", "options": ["Legalities", "Functionalities", "Ethicalities", "Ethics"], "correct": 3, "explanation": "", "source_url": "https://t4tutorials.com/types-of-letters-mcqs-technical-and-business-writing/"}
{"subject": "types-of-letters-mcqs-technical-and-business-writing", "topic": "types-of-letters-mcqs-technical-and-business-writing", "question": "In technical writing, the destination of the memo is defined as:", "options": ["Within a company", "Outside company", "Outside city", "Out of way"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/types-of-letters-mcqs-technical-and-business-writing/"}
{"subject": "types-of-letters-mcqs-technical-and-business-writing", "topic": "types-of-letters-mcqs-technical-and-business-writing", "question": "Suppose we are searching for information regarding admission and advertisement costs. Which type of letter will be used?", "options": ["Inquiry letter", "Adjustment letter", "Bad newsletter", "Complaint letter"], "correct": 1, "explanation": "", "source_url": "https://t4tutorials.com/types-of-letters-mcqs-technical-and-business-writing/"}
{"subject": "types-of-letters-mcqs-technical-and-business-writing", "topic": "types-of-letters-mcqs-technical-and-business-writing", "question": "In letter writing format, a title, “Dear Mr. Shahzeb” is the best example of:", "options": ["Introduction", "Signed name", "Letter body", "Salutation"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/types-of-letters-mcqs-technical-and-business-writing/"}
{"subject": "types-of-letters-mcqs-technical-and-business-writing", "topic": "types-of-letters-mcqs-technical-and-business-writing", "question": "As compared to other countries, Germany and Japan are considered very strict in which of the following?", "options": ["Schedules", "Financial matters", "Business strategies", "All of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/types-of-letters-mcqs-technical-and-business-writing/"}
{"subject": "types-of-letters-mcqs-technical-and-business-writing", "topic": "types-of-letters-mcqs-technical-and-business-writing", "question": "A statement, “We cannot proceed with your request as you are not submitting the documents properly to open the bank account,” is the best example of?", "options": ["Figurative words", "Positive words", "All of these", "None of these"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/types-of-letters-mcqs-technical-and-business-writing/"}
{"subject": "types-of-letters-mcqs-technical-and-business-writing", "topic": "types-of-letters-mcqs-technical-and-business-writing", "question": "Which of the following is a letter stating readers for what they are receiving is commonly called?", "options": ["Complaint letters", "Official letter", "Good newsletters", "Cover letters"], "correct": 4, "explanation": "", "source_url": "https://t4tutorials.com/types-of-letters-mcqs-technical-and-business-writing/"}
