Find the third proportional to 8 and 12?
2 : 3, 3 : 4, 5 : 6, 1 : 5
Find the odd word from the list
( Orange, Mandarins, Grapefruit, Pear)
PASSAGE
Tondanuru in Karnataka’s Mandya District, popularly known as Kere Tonnur, has been associated with Sri Ramanujacharya. Tondanuru literally means the place of devotees. It was a flourishing centre of Sri Vaishnava faith and philosophy. Ramanujacharya lived here in the early 12th century and propagated his teachings.
There are over 70 inscriptions found here dating from pre-Hoysala period to the Mysore Wodeyar. Interestingly, a majority of the inscriptions are written in Tamil, in grantha script. It attests to the frequent visits here by Sri Vaishnava devotees from TamilNadu.
The history of Tonnuru can be traced to the prehistoric period as megalithic burial sites have been found in the region. It has been under the control of the gangas of Talakad, Cholas and the Hoysalas and later came under the Vijayanagara, Mysore Wodeyar, and also Hyder Ali and Tipu Sultan. Hoysala chronicles record Tonnura as one of the sub-capital of the period.
The village of Tonnuru in Pandavapura taluk, around 130 km from Bengaluru, is situated amidst fertile paddy fields, coconut groves and a large pond that supplies water for agriculture, with granite hills all around. Local traditions ascribe the excavation of the pond to Ramanujacharya, who also created a channel for water supply.
The religious importance of Tonnur was enhanced by the stay of Sri Ramanujacharya. Tonnuru temples dedicated to the Vaishnavite faith were built or renovated during his presence. It is clear from records that Ramanuja came to Tonnur after Hoysala king Bittiga, who ruled in the 12th century became Vishnuvardhna and an ardent follower of Vishishtadvaita philosophy. Ramanuja’s teachings persuaded many people of the region to become his followers. Later, he moved to Melgate where he stayed for a long period. Sri Yatiraja Dasa became his follower and propagated his teachings.
Question:
The inscriptions found in Tonnuru are of which script?
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main() {
char *src1 = "123456789";
char *dst1 = (char *)malloc( 5 );
printf("src1: %s\n", src1);
strcpy(dst1, src1);
printf("dst1: %s\n", dst1);
return 0;
}
int array[20], *p1, *p2;
k = &array[10];
z = &array[14];
Which of the following statements is incorrect w.r.t. pointers?
Consider the disjoint sets S1, S2 and S3 represented above. If Union operation is performed on S1, S2 and S3 what will be the resultant tree if we use Union by Rank method.
#include<stdio.h>
struct Cricket
{
char team1[20];
char team2[20];
char ground[18];
int result;
}match[4] = {
{"IND","AUS","PUNE",1},
{"IND","PAK","NAGPUR",1},
{"IND","NZ","MUMBAI",0},
{"IND","SA","DELHI",1}
};
void main()
{
struct Cricket *ptr = match;
ptr+=2;
ptr--;
printf("\n%s Vs %s",ptr->team1,ptr->team2);
}
const char* p = "Hello";
printf ("%c ", *p);
printf ("%c ", *++p);
printf ("%c ", *p++);
printf ("%c ", *p);
Which of the following statements is always true?
Consider the array, defined above. Which one of the following definitions and initializations of p is valid?


Suppose the secret message contains the following characters with their frequency:
Character
|
P
|
Q
|
R
|
S
|
T
|
U
|
Frequency
|
5
|
10
|
15
|
20
|
23
|
27
|
If the compression technique used is Huffman Coding, how many bits will be saved in the message___
L1={ a^n b^n b b^n | n>0 }
L2={ a^n b^(n+m) | m, n>0}
Select the correct option.
S-> aS | aA
A-> aA | aB | ∈
B-> aB | bB | ∈
The number of states in minimal DFA accepting the language generated by above grammar are _____
L1={a^n b^n c^m | n,m>0}
L2={a^m b^n c^n | n,m>0}
Select the correct option.
Consider the following regular expression R= ab*a*b. Assume string “ababaaababbab”, the number of tokens generated by regular expression R for the given string will be _________
S→ X&Z | Y*
X→ YZ
Y→ #Y | Z
Z→ &++S | Ο΅
For which non terminal /non terminals, the “*” is a part of corresponding FOLLOW set.

STACK POINTER:
INPUT POINTER:
Note: Given
$βa, aβ+, $β+, +βb, bβ*, +β*, $β*,
*βc, c β +, *β+, +β d, dβ$, + β $, * β $
What is the action taken by the operator precedence parser at this instance?

S1 : In 1-persistent CSMA (Carrier Sense Multiple Access), a station senses the channel when it wants to send a frame. If the channel is idle then it sends the frame otherwise it does not continually sense and wait for a random amount of time and repeats the same process.
S2 : Traceroute always gives the right path from source to destination.
S3 : Link state is an inter domain protocol.
Which of the following statements is/are true?:
is y/4, then the y value is ___
Note: The notation of the graph follows that the alphabet represents the Edge and the ordered pair associated to that alphabet {x,y} indicate that there is edges between x to y. The vertices are named with numbers {1,2,3,4,5}.
[MSQ]
The number of non-essential prime implicants in the K-map is___.