1. In a certain code DISPLAY is written as RHCQZBM How is GROUPED written in that code ?






Write Comment

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

  • By: anil on 05 May 2019 01.26 am
    The word DISPLAY is divided into three pars : DIS , P , LAY I : DIS - RHC The diagonally opposite element is substituted by its immediate preceding alphabet in the English alphabetical series. => D is substituted by C at its diagonally opposite position. Similarly, I is substituted by H at its diagonally opposite position and S by R. II : P - Q The middle letter is substituted by its immediate following alphabet in the English alphabetical series. III : LAY - ZBM The diagonally opposite element is substituted by its immediate following alphabet in the English alphabetical series. => L is substituted by M at its diagonally opposite position. Similarly, A is substituted by B at its diagonally opposite position and Y by Z. Thus, code for GROUPED : GRO - NQF U - V PED - EFQ $$ herefore$$ GROUPED = NQFVEFQ
Show Similar Question And Answers
QA->In a certain code SUNDAY is coded as USDNYA. How could CREATION be written in that code?....
QA->If PROMOTION is written in certain coded message as QSp89 then what will be the code for DEMOTION?....
QA->Coconut and mango grouped under; which kind of fruit?....
QA->Malaria parasite and Amoeba are grouped under?....
QA->Coconut and mango grouped under, which kind of fruit?....
MCQ->In a certain code DISPLAY is written as RHCQZBM How is GROUPED written in that code ?....
MCQ-> Read the following information and the accompanying graphs to answer the questions that follow. www.jay.com spent $ 5,57,000 during last 12 months for online display advertisements, also called impressions, on five websites (Website A, Website B, Website C, Website D and Website E). In this arrangement, www.jay.com is the Destination Site, and the five websites are referred to as the Ad Sites. The allocation of online display advertising expenditure is shown in Graph A. The online display advertisements helped www.jay.com to get visitors on its site. Online visitors, visiting the Ad Sites, are served display advertisements of www.jay.com and on clicking they land on the Destination Site (Graph B). Once on the Destination Site, some of the visitors complete the purchase process(Graph C) Quality traffic = $$\frac{\text{No. of site visitors who start purchase on destination site}}{\text{No. of visitors who click the online display advertisement}}$$ Leakage in online buying = 1 − $$\frac{\text {Complete buying on the destination website}}{\text{Start buying on the destination website}}$$Efficiency of online display advertising expenditure on an Ad Site = $$\frac{\text{No. of visitors from the Ad Site who complete the purchase process}}{\text{Amount spent on the Ad Site}}$$ Which of following Ad Sites provide facility of least cost per advertisement?
 ....
MCQ->Which of the following statement is correct about the program given below? #include<iostream.h> class IndiaBix { int x; public: IndiaBix() { x = 0; } IndiaBix(int xx) { x = xx; } IndiaBix(IndiaBix &objB) { x = objB.x; } void Display() { cout<< x << " "; } }; int main() { IndiaBix objA(25); IndiaBix objB(objA); IndiaBix objC = objA; objA.Display(); objB.Display(); objC.Display(); return 0; }....
MCQ->What is correct about the following program? #include<iostream.h> class Base { int x, y, z; public: Base() { x = y = z = 0; } Base(int xx, int yy = 'A', int zz = 'B') { x = xx; y = x + yy; z = x + y; } void Display(void) { cout<< x << " " << y << " " << z << endl; } }; class Derived : public Base { int x, y; public: Derived(int xx = 65, int yy = 66) : Base(xx, yy) { y = xx; x = yy; } void Display(void) { cout<< x << " " << y << " "; Display(); } }; int main() { Derived objD; objD.Display(); return 0; }....
MCQ->What will be the output of the following program? #include<iostream.h> class Base { public: int S, A, M; Base(int x, int y) { S = y - y; A = x + x; M = x x; } Base(int, int y = 'A', int z = 'B') { S = y; A = y + 1 - 1; M = z - 1; } void Display(void) { cout<< S << " " << A << " " << M << endl; } }; class Derived : public Base { int x, y, z; public: Derived(int xx = 65, int yy = 66, int zz = 67): Base(x) { x = xx; y = yy; z = zz; } void Display(int n) { if(n) Base::Display(); else cout<< x << " " << y << " " << z << endl; } }; int main() { Derived objDev; objDev.Display(-1); return 0; }....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use
DMCA.com Protection Status Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions