Software Architect Questions


Q:

A man was murdered in his office.

 

The suspects are Ericson, Maggi, Joel, Benny, SonaPatick.

 

A calendar found near the man has blood written 6, 4, 9, 10, 11.

 

Who is the killer?

A) Maggi B) Ericson
C) Sona D) Joel
 
Answer & Explanation Answer: D) Joel

Explanation:

If we consider the given numbers  6, 4, 9, 10, 11 to be the month number then we can easily find the killer.

6 – June – J

4 – April – A

9 – September – S

10 – October – O

11 – November – N

Hence the answer is JOEL.

Report Error

View Answer Report Error Discuss

191 49135
Q:

Which operator performs pattern matching ?

A) LIKE operator B) EXISTS operator
C) BETWEEN operator D) None of these
 
Answer & Explanation Answer: A) LIKE operator

Explanation:

LIKE is a keyword that is used in the WHERE clause. Basically, LIKE allows us to do a search based operation on a pattern rather than specifying exactly what is desired (as in IN) or spell out a range (as in BETWEEN).

 

The syntax is as follows:
SELECT "column_name"
FROM "table_name"
WHERE "column_name" LIKE {PATTERN}

 

{PATTERN} often consists of wildcards.

 

In SQL, there are two wildcards:


% (percent sign) represents zero, one, or more characters.

_ (underscore) represents exactly one character.

 

More :: Certification Questions on SQL

Report Error

View Answer Report Error Discuss

27 36748
Q:

Which of the following is a popular programming language for developing multimedia webpages.

A) COBOL B) Java
C) BASIC D) Assembler
 
Answer & Explanation Answer: B) Java

Explanation:

Java is a general-purpose computer-programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible.

 

Which_of_the_following_is_a_popular_programming_language_for_developing_multimedia_webpages1548652333.jpg image


Java is used to develop mobile apps, web apps, desktop apps, games and much more...

Report Error

View Answer Report Error Discuss

152 34347
Q:

Where is RAM located?

A) Mother Board B) Expansion Board
C) External Drive D) None
 
Answer & Explanation Answer: A) Mother Board

Explanation:

RAM is located in The central processing unit (CPU), also called a processor, is located inside the computer case on the motherboard. It is sometimes called the brain of the computer, and its job is to carry out commands.

Report Error

View Answer Report Error Discuss

129 31472
Q:

main()

{

char *p; p = "Hello";

printf ("%cn", *&*p);

}

A) H B) Hello
C) Compilation error D) H E L L O
 
Answer & Explanation Answer: A) H

Explanation:

* is a dereference operator & is a reference operator. They can be applied any number of times provided it is meaningful. Here p points to the first character in the string "Hello". *p dereferences it and so its value is H. Again & references it to an address and * dereferences it to the value H

Report Error

View Answer Report Error Discuss

Filed Under: Programming
Job Role: Software Architect

19 30359
Q:

There are eight poets, namely, A, B, C, D, E, F, G and H in respect of whom questions are being asked in the examination. The first four are ancient poets and the last four are modern poets. The question on ancient and modern poets is being asked in alternate years. Those who like H also like G, those who like D like C also. The examiner who sets question is not likely to ask question on D because he has written an article on him. But he likes D. Last year a question was asked on F. Considering these facts, on whom the question is most likely to be asked this year ?

Answer

Answer : C


Explanation : 


Since the examiner likes D, it means he must like C also, since the question states that those who like D like C also.


Since last year a question was asked on F, who is a modern poet, this year a question will be asked on an ancient poet which means A,B,C or D


Now the examiner is not likely to ask question on D because he has written an article on him. So he will ask the question on C since he likes C as well

Report Error

View answer Workspace Report Error Discuss

Subject: Non Verbal Reasoning Exam Prep: Bank Exams
Job Role: Software Architect

66 26510
Q:

Artists are generally whimsical. Some of them are frustrated. Frustrated people are prone to be drug addicts.

Based on these statements which of the following conclusions is true?

A) All frustrated people are drug addicts B) Frustrated people are whimsical
C) All drug addicts are artists D) Some artists may be drug addicts
 
Answer & Explanation Answer: D) Some artists may be drug addicts

Explanation:
Report Error

View Answer Report Error Discuss

35 26057
Q:

Which of the following is not part of performance testing?

A) simulating many users B) measuring response times
C) generating many transactions D) recovery testing
 
Answer & Explanation Answer: D) recovery testing

Explanation:

In software engineering, performance testing is in general, a testing practice performed to determine how a system performs in terms of responsiveness and stability under a particular workload.

Report Error

View Answer Report Error Discuss

10 23756