Given a queue of integers of even length, rearrange the elements by interleaving the first half of the queue with the second half of the… Read More
Question 1. What is the output of the following question? class Test { int a = 10; static int b = 20; public static… Read More
In C, apart from keywords, everything in the C program is treated as Identifier. Identifiers can be the names given to variables, constants, functions, and… Read More
Veritas visited our college for campus hiring, 30th August, 2017 . The selection process included aptitude test and Personal Interview round. Aptitude Test consisted of… Read More
TGiven a string, you have to remove the three consecutive duplicates from the string. If no three are consecutive then output the string as it… Read More
In C++, isupper() and islower() are predefined functions used for string and character handling. cstring.h is the header file required for string functions and cctype.h… Read More
PageRank (PR) is an algorithm used by Google Search to rank websites in their search engine results. PageRank was named after Larry Page, one of… Read More
The task is to create a python script that would open the default web browser to the Google map of the address given as the… Read More
There are several APIs available to convert text to speech in python. One of such APIs available in the python library commonly known as win32com… Read More
Given a string of length N, find the length of the smallest sub-string consisting of maximum distinct characters. Note : Our output can have same… Read More
A pot contains 75 white beans and 150 black ones. Next to the pot is a large pile of black beans. A somewhat demented cook… Read More
Given a parent array P, where P[i] indicates the parent of the ith node in the tree(assume parent of root node id indicated with -1).… Read More
Given a stack of integers, write a function pairWiseConsecutive() that checks whether numbers in the stack are pairwise consecutive or not. The pairs can be… Read More
Campus placement season is ongoing at almost all the colleges and each one of us wants to prepare to do the best. This article focuses on… Read More
Prerequisite : Pointers and References Q.1 What Is The Output Of this program? #include <iostream> using namespace std; void fun(int& a, int b) { a… Read More