c++

[Solved] Minimum and Maximum with C++

[Solved] Minimum and Maximum with C++

The ExConFair is the region’s largest trade fair on Construction Equipments & Technology. The Event organizers hired college students as volunteers to work at the fair as the event is targeted to be attended by approx. 30 million visitors. At…

[Solved] Four Seasoners with C++

[Solved] Four Seasoners with C++

Four Seasoners: Dinesh also joined the group of 3 idiots and now their group is called Four Seasoners. Meanwhile, Binoy has moved to a new house in the same locality. Now the houses of Ajay, Binoy and Chandru are in…

[Solved] Maximum Score Of Spliced Array LeetCode Contest Problem

[Solved] Maximum Score Of Spliced Array LeetCode Contest Problem

You are given two 0-indexed integer arrays nums1 and nums2, both of length n. You can choose two integers left and right where 0 <= left <= right < n and swap the subarray nums1[left…right] with the subarray nums2[left…right]. For example, if nums1 = [1,2,3,4,5] and nums2 = [11,12,13,14,15] and you choose left = 1 and right = 2, nums1 becomes [1,12,13,4,5] and nums2 becomes [11,2,3,14,15]. You may choose to apply…

MCQs C Programming 90+

MCQs C Programming 90+

1. Which of the following extension is valid for a file containing assembly code? .i .exe .s .obi Ans: .obj 2. Which of the following characteristics is not desired in a good algorithm? Abstraction Simplicity Correctness Ambiguity Abs: Ambiguity 3.…