Tag: dailyprompt-1913
-
Current Affairs Quiz – July, 2024
Q 1.Which team won the 9th ICC Men’s T20 World Cup by defeating the South Africa team? A. IndiaB. AfghanistanC. AustraliaD. New Zealand Show Answer Answer:-A. India Explanation The Indian men’s cricket team, led by Rohit Sharma, won the 9th ICC Men’s T20 World Cup by defeating South Africa by 7 runs at Kensington Oval,…
-
Physics Question MCQs India
Q 1.By how much the orbital velocity of Moon has to increase for it to cease to remain the earth’s satellite?A. 2 timesB. 3 timesC. √3 timesD. √2 times Show Answer Answer:-D. √2 times Explanation If the speed of a satellite orbiting close to the earth is made √2 times (or increased by 41%) then…
-
General Science Chemistry MCQs Question India
Q 1.What is Rose metal? A. It is an alloy of Nickel, Tin and ZincB. It is an alloy of Bismuth, Copper and PalladiumC. It is an alloy of Bismuth, Tin and LeadD. It is an alloy of Palladium, Tin and Lead Show Answer Answer:-C. It is an alloy of Bismuth, Tin and Lead Explanation…
-
C++ Programming MCQ Question– Operators
C++ language interview questions and answers focuses on “Operators”. One shall practice these interview questions to improve their C++ programming skills needed for various interviews (campus interviews, walk-in interviews, company interviews), placements, entrance exams and other competitive exams. These questions can be attempted by anyone focusing on learning C++ programming language. They can be a…
-
C++ Programming Questions and Answers – Pointer to Void
Q 1. The void pointer can point to which type of objects?A. intB. floatC. doubleD. all of the mentioned Show Answer Answer:-B. float Explanation Because it doesn’t know the type of object it is pointing to, So it can point to all objects. Q 2. When does the void pointer can be dereferenced?A. when it…
-
C++ Programming MCQ – References
Q 1. What are the references in C++?A. A new type of variablesB. A pointer to a variableC. An alternative name for already existing variablesD. A new type of constant variable Show Answer Answer:-C. An alternative name for already existing variables Explanation References are an alternative name for an already defined variable. They are different…
-
C++ Programming Quizs Question and Answers – Booleans
C++ language interview questions and answers focuses on “Booleans”. One shall practice these interview questions to improve their C++ programming skills needed for various interviews competitive exams. These questions can be attempted by anyone focusing on learning C++ programming language. They can be a beginner, fresher, engineering graduate or an experienced IT professional. Our C++…
-
C++ Programming Questions and Answers – C++ Concepts – 2
Q 1. Which of the following is the scope resolution operator?A. .B. *C. ::D. ~ Show Answer Answer:-C. :: Explanation :: operator is called scope resolution operator used for accessing a global variable from a function which is having the same name as the variable declared in the function. Q 2. What will be the…
-
C++ Programming Questions and Answers – C++ Concepts – 1
Q 1. In which part of the for loop termination condition is checked?for(I;II;III){IV}A. IB. IIC. IIID. IV Show Answer Answer:-B. II Explanation In II part the termination condition of the for loop is checked. Q 2. What is dynamic binding?A. The process of linking the actual code with a procedural call during compile -timeB. The…
-
C++ Programming Quizs Question and Answers – OOPs – 4
Q 1. What will be the output of the following C++ code? #include <iostream> using namespace std; class A{ public: A(){ cout<<“Constructor called\n“; } ~A(){ cout<<“Destructor called\n“; } }; int main(int argc, char const *argv[]) { A *a = new A[5]; delete[] a; return 0; } A. “Constructor called” five times and then “Destructor called”…