National Level Cyber Security Awareness Quiz Certification | Quiz on Social Engineering About Quiz: ISEA in association with MyGov and Cert-IN is organizing a quiz on Cyber Hygiene practices to inculcate best online practices among the digital users. The quizzes are organized as part of ongoing National Cyber Security Awareness Month …
Read More »Work at MyGOV | Digital India Hiring – 10+ Government Jobs 2022
About Digital India: Digital India Corporation has been set up by the ‘Ministry of Electronics & Information Technology, Government of India’, to innovate, develop and deploy ICT and other emerging technologies for the benefit of the common man. Highlights of the Program: Location: New Delhi ,but transferable to project locations …
Read More »Cisco Announced 12 Months Apprenticeship for Students in Association with National Apprenticeship Training Scheme (NATS)
Cisco Announced 12 Months Apprenticeship for Students in Association with National Apprenticeship Training Scheme (NATS) The Cisco Apprenticeship Program 2022 has been announced for B.Tech graduate students interested in working in the corporate world.Apprenticeship Program is a great way for you to experience the corporate world and gain industry relevant …
Read More »CPA – Programming Essentials in C++ Final Exam Answers
CPA – Programming Essentials in C++ Final Exam Answers Question 1: What is the output of the following snippet? #include <iostream> using namespace std; namespace OuterSpace { int x = 1; int y = 2; } namespace InnerSpace { float x = 3.0; float y = …
Read More »CPA – Programming Essentials in C++ Summary Test Exam Answers
Question 1: What is the output of the following snippet? #include <iostream> using namespace std; int main() { float x = 0.9, y=-0.5; int i,j = 1; i = x + j + y; cout << i; return 0; } 2.4 Compilation error 1 2 …
Read More »CPA – Programming Essentials in C++ Exam Answers
About the Course: As one of the most popular programming languages, C++ is hailed for its efficiency and its ease for developing games, real-time systems, and applications with graphical libraries. Take the course to learn the basics of programming in the C++ language, and the fundamental notions and techniques it …
Read More »CPA – Programming Essentials in C++ Chapter 2 Module 4 Exam Answers
Question 1: What is the output of the following snippet? #include <iostream> using namespace std; class N { public: float x; N() { x = 0.0; } N(float a) { x = a; } N(N &n) { x = n.x; } N &operator=(float f) { …
Read More »CPA – Programming Essentials in C++ Chapter 2 Module 3 Exam Answers
Question 1: What is the output of the following snippet? #include <iostream> #include <exception> using namespace std; int main() { try { throw 2./4; } catch(int i) { cout << i; } return 0; } Compilation fails 0.5 Execution fails 0 Question 2: …
Read More »CPA – Programming Essentials in C++ Chapter 2 Module 2 Exam Answers
Question 1: What is the output of the following snippet? #include <iostream> using namespace std; class A { friend class B; private: int field; public: int set(int x) { return field = ++x; } int get() { return ++field; } }; class B { public: void …
Read More »CPA – Programming Essentials in C++ Chapter 2 Module 1 Exam Answers
CPA – Programming Essentials in C++ Chapter 2 Module 1 Exam Answers Question 1: What is the output of the following snippet? #include <iostream> using namespace std; class A { public: float v; A() { v = 1.0; } A(A &a) { A::v = a.v; cout << …
Read More »