You are on page 1of 5

Technical & digital marketing

Aptitude questions

1) The salary of A is 20 % less than that of B. while the salary of C is 25% more
than the salary of B .then find the total salary of A B and C if B’s salary is 54000 ?

2) A man took a loan from a bank at the rate of 12 %pa .after 3 years , he has to pay
rs.5400 interest only for the period. The prncipal amount borrowed by h im was RS?

3) The population of a town before 3 years was 44000. In the first year it increaed by
15% .,second year it again incresed by 20% and in the third year it again decreased by
10% find the difference between present population of the town and the population of
the town before 3 years ?

4) A person wants arange his colleague in the form of a perfect square , but he finds
there are 9 persons too many. What will be the total number of persons
In the first row, if the total number of person with him is 2410?

5) The average weight of 3 men A,B and C is 84kg. another man, D, joins the group,
and the average
weight becomes 80kg. if another man, E, whose weight 3kg more than that of D,
replaces A, then
average weight of B,C,D and E becomes 79kg.The weight of A is?

Reasoning :

1). Pointing to a woman in a photograph a man says “ She is the mother of my


daughter-in-laws husband
only sister”. How woman is related to man?
`
2) In the word ‘DOORSTEP ‘ if all the vowels are replaced with the letter immediate
next in to it in the english alphabet series and all consonants are replaced with the
letter immediate before the english alphabet series , then how many vowels are there
in the new word so formed ?

3) A piece of paper is folded and cut as shown below in the question figures. From the
given answer figures, indicate how it will appear when opened.
 

4) What should come in the place of question mark in the given series ?
11,19,65,259,1161, ?

5) In the given question, two statements are given , followed by 2 conclusions, you
have to consider the statements to be true even if it seems to be at variance from
commonly known facts. You have to decide which of the given conclusion ,if any
follows from the given statements

Statement :
1. All clocks are watches .
2. Some clocks are alarm

Conclusion:
1 .some alarm are watches
2 all watches are alarm

1. only conclusion 1 follows


2. Only conclusion 2 follows
3. Both conclusion follows
4. Neither 1 or 2 follows

Digital marketing
17) List out the trends of market and sales communication of 2020

24) Mention what are the key areas where you can use keywords to optimize the site
ranking? ..

21) What are the 10 markting activities ?

26 ) What is ecommerce marketing ?

.
Technical questions

Java questions :

21) Long I =9632629033;

System.out.println(I);
Output of the program ?if its error , solve it ?

22)Class A {
Public static void main( String [] args)
{
Int I =028;
System.out.println(I);

Output ?

24 Class A {
Public static void main(String args[])
{
byte I =10 ;
byte j =10;
Byte k = I+J
System.out .println( k);
}
Output ?
C++ programming
1.  Which of the following statement is correct?

 A)Overloaded functions can accept same number of arguments.


B)Overloaded functions always return value of same data type.
 
C)  Overloaded functions can accept only same number and same type of
arguments
 D)none of the above

2)Which of the following function declaration is/are incorrect?

A) int Sum(int a, int b = 2, int c = 3);


B) int Sum(int a = 5, int b);
 
C) int Sum(int a = 0, int b, int c = 3);
D) Both B and C are incorrect.

C programming

1)
How will you free the memory allocated by the following program?

#include<stdio.h>#include<stdlib.h>#define MAXROW 3#define MAXCOL 4


int main()
{

int **p, i, j;

p = (int **) malloc(MAXROW * sizeof(int*));

return 0;
}

A
memfree(int p);
.

B
dealloc(p);
.

C
malloc(p, 0);
.

D
free(p);
.
2)

What will be the output of the program?


#include<stdio.h>#include<stdlib.h>
int main()
{

int *p;

p = (int *)malloc(20); /* Assume p has address of 1314 */


free(p);

printf("%u", p);

return 0;
}

A
1314
.

B
Garbage value
.

C
1316
.

D
Random address
.

You might also like