Mellanox technologies Interview Questions Answers, HR Interview Questions, Mellanox technologies Aptitude Test Questions, Mellanox technologies Campus Placements Exam Questions

Find best Interview questions and answer for Mellanox technologies Job. Some people added Mellanox technologies interview Questions in our Website. Check now and Prepare for your job interview. Interview questions are useful to attend job interviews and get shortlisted for job position. Find best Mellanox technologies Interview Questions and Answers for Freshers and experienced. These questions can surely help in preparing for Mellanox technologies interview or job.

This page contains the most recently asked technical questions and answers in the Mellanox technologies.

All of the questions listed below were collected by students recently placed at Mellanox technologies.

Ques:- How many types of normalization? What is the use of it?
Ques:- The first indication of the revolutionary movement in India was seen in
A. Rajasthan
B. Punjab
C. Bengal
D. Maharashtra
Ques:- One aplication have 50 pages out of 50 , 5 pages shouldn't ask user name and password other 45 should ask user name and password?how will you write the code in web.config?
Ques:- Atmospheric pressure is measured by an instrument called ____
A. Anemometer
B. Wind vane
C. Barometer
D. Thermometer
Ques:- Wich type of cable is selected for wiring of 20hp motor?
Ques:- When to use list vs. tuple vs. dictionary vs. set?
Recent Answer : Added by Admin On 2020-05-17 11:16:39:

List is like array, it can be used to store homogeneous as well as heterogeneous data type (It can store same data type as well as different data type). List are faster compared to array. Individual element of List data can be accessed using indexing & can be manipulated.
List Code Snippet:
list = [“Sarah”,29,30000.00]
for i in range (3):
print list[i]
——————
Output
Sarah
29
30000.0
Tuples are similar to lists, but there data can be changed once created throught the execution of program. Individual element of Tuples can be accessed using indexing.
Tuples Code Snippet: The Days
days = (“Sunday”, “Monday”, “Tuesday”, “Wednesday”, “Thursday”, “Friday”, “Saturday”)
print days
——————————
(‘Sunday’, ‘Mondays’, ‘Tuesday’, ‘Wednesday’, ‘Thursday’, ‘Friday’, ‘Saturday’)
Sets stores unordered values & have no index. And unlike Tuples and Lists, Sets can have no duplicate data, It is similar to Mathematical sets.
add() function can be used to add element to a set.
update() function can be used to add a group of elements to a set.
Copy() function can be used to create clone of set.
Set Code Snippet:
disneyLand = set ([‘Minnie Mouse’, ‘Donald Duck’, ‘Daisy Duck’, ‘Goofy’])
disneyLand.add(‘Pluto’)
print disneyLand
———————————————–
Output
set([‘Goofy’, ‘Daisy Duck’, ‘Donald Duck’, ‘Minnie Mouse’, ’Pluto’])
Dictionary are similar to what their name is. In a dictionary, In python, the word is called a ‘key’, and the definition a ‘value’. Dictionaries consist of pairs of keys and their corresponding values.
Dictionary Code Snippet:
>>> dict = {‘India’: ‘Bharat’, ‘Angel’: ‘Mother Teresa’, ‘Cartoon’: ‘Mickey’}
>>>print dict[India]
Bharat
>>>print dict[Angel]
Mother Teresa

Ques:- The highest annual precipitation occurs in
A. Amazon basin
B. Siberian basin
C. Congo basin
D. Canadian shield
Ques:- What is the purpose of require_relative in ruby?
Ques:- What is meantby Split?
Ques:- Is there a list of keyboard shortcuts somewhere?
Ques:- Write a program to implement BFS/ DFS routine in a connected graph
Recent Answer : Added by Admin On 2020-05-17 11:26:53:

#include
#include
#include
void create(); // For creating a graph
void dfs(); // For Deapth First Search(DFS) Traversal.
void bfs(); // For Breadth First Search(BFS) Traversal.
struct node // Structure for elements in the graph
{
int data,status;
struct node *next;
struct link *adj;
};
struct link // Structure for adjacency list
{
struct node *next;
struct link *adj;
};
struct node *start,*p,*q;
struct link *l,*k;
int main()
{
int choice;
clrscr();
create();
while(1)
{
cout<<"-----------------------nn"; cout<<"1: DFSnn2: BSFnn3: ExitnnEnter your choice: n"; cin>>choice;
switch(choice)
{
case 1:
dfs();
break;
case 2:
bfs();
break;
case 3:
exit(0);
break;
default:
cout<<"Incorrect choice!Re-enter your choice."; getch(); } } return 0; } void create() // Creating a graph { int dat,flag=0; start=NULL; cout<<"Enter the nodes in the graph(0 to end): "; while(1) { cin>>dat;
if(dat==0)
break;
p=new node;
p->data=dat;
p->status=0;
p->next=NULL;
p->adj=NULL;
if(flag==0)
{
start=p;
q=p;
flag++;
}
else
{
q->next=p;
q=p;
}
}
p=start;
while(p!=NULL)
{
cout<<"Enter the links to "<data<<" (0 to end) : "; flag=0; while(1) { cin>>dat;
if(dat==0)
break;
k=new link;
k->adj=NULL;
if(flag==0)
{
p->adj=k;
l=k;
flag++;
}
else
{
l->adj=k;
l=k;
}
q=start;
while(q!=NULL)
{
if(q->data==dat)
k->next=q;
q=q->next;
}
}
p=p->next;
}
cout<<"-------------------------"; return; } // Deapth First Search(DFS) Traversal. void bfs() { int qu[20],i=1,j=0; p=start; while(p!=NULL) { p->status=0;
p=p->next;
}
p=start;
qu[0]=p->data;
p->status=1;
while(1)
{
if(qu[j]==0)
break;
p=start;
while(p!=NULL)
{
if(p->data==qu[j])
break;
p=p->next;
}
k=p->adj;
while(k!=NULL)
{
q=k->next;
if(q->status==0)
{
qu[i]=q->data;
q->status=1;
qu[i+1]=0;
i++;
}
k=k->adj;
}
j++;
}
j=0;
cout<<"Breadth First Search Results"; cout<<"---------------------------"; while(qu[j]!=0) { cout<status=0;
p=p->next;
}
p=start;
stack[0]=0;
stack[top]=p->data;
p->status=1;
while(1)
{
if(stack[top]==0)
break;
p=start;
while(p!=NULL)
{
if(p->data==stack[top])
break;
p=p->next;
}
cout<adj;
while(k!=NULL)
{
q=k->next;
if(q->status==0)
{
top++;
stack[top]=q->data;
q->status=1;
}
k=k->adj;
}
}
getch();
return;
}

Ques:- How is my grandmother’s only child’s husband’s mother related to me ?
Recent Answer : Added by Maha On 2022-08-14 16:32:29:

Paternal Grandmother

Ques:- The term Smart Money is refers to
A. Foreign Policy
B. US Dollars
C. Travellers Cheque
D. Internet banking
Ques:- What are the steps for desinig s/w project?
Ques:- When the hr ask us tell me some thing about you then what should we include in what not plz help me by giving some examples.
Ques:- Normalisation?
Ques:- What are the two types of views available in the object navigator(specific to report 2.5)?
Ques:- Would we do functional testing inside integration testing
Ques:- How call flow happening
Ques:- Code to see if a binary tree is a BST or not.

Devendra Bhardwaj With a decade of experience as a Job Hiring Expert, I am a results-driven professional dedicated to elevating recruitment strategies. My expertise lies in navigating the dynamic landscape of talent acquisition, employing innovative approaches to attract, assess, and secure top-tier candidates. I excel in optimizing hiring processes, leveraging cutting-edge technologies, and fostering collaborative relationships with stakeholders. A keen understanding of industry trends allows me to stay ahead, ensuring a competitive edge in securing the best talent for your organization. I am passionate about connecting the right people with the right opportunities and thrive in creating impactful, streamlined recruitment solutions.

Top Interview Questions

Scroll to top