This Gurugram SaaS startup is building software faster by automating the entire QA process
https://yourstory.com/2021/05/gurugram-saas-startup-automation-software-qa-process/amp
https://yourstory.com/2021/05/gurugram-saas-startup-automation-software-qa-process/amp
YourStory.com
This Gurugram SaaS startup is building software faster by automating the entire QA process
Founded in 2019, Gurugram SaaS startup HyperTest is a QA and test automation startup that helps businesses ship software faster and with better quality.
16 Web Developer Interview Questions to Ask | Robert Half
https://www.roberthalf.com/blog/evaluating-job-candidates/16-web-developer-interview-questions-every-hiring-manager-should-ask
https://www.roberthalf.com/blog/evaluating-job-candidates/16-web-developer-interview-questions-every-hiring-manager-should-ask
Robert Half
16 Web Developer Interview Questions Every Hiring Manager Should Ask
Looking to hire a web developer? Here are 16 interview questions for developers that can help you identify the best candidate for the job.
Object Oriented Programming in Java | by Aakash Sharma | The Startup | Medium
https://medium.com/swlh/object-oriented-programming-in-java-919bcf304ce6
https://medium.com/swlh/object-oriented-programming-in-java-919bcf304ce6
Medium
Object Oriented Programming in Java
In this article I plan on discussing how we can utilize the most popular & known programming language, Java. Java has grown & shaped many…
What will be the output of the following pseudocode for a=6,b=6,c=4?
Integer funn(Integer a,Integer b,Integer c){
c=b+c;
c=7+c;
if((5-3)<(10-b)||a<b)
a=8+c;
b=12+b;
a=(b+b)+b;
return a+b+c;
}
Integer funn(Integer a,Integer b,Integer c){
c=b+c;
c=7+c;
if((5-3)<(10-b)||a<b)
a=8+c;
b=12+b;
a=(b+b)+b;
return a+b+c;
}
What will be the output of the following pseudocode for a=8,b=6,c=9?
Integer funn(Integer a,Integer b,Integer c){
for(each c from 3 to 6){
b=5+a;
if((c+a)>(a-c))
continue
Else
a=7+a;
a=(a&b)+b;
End if
End for
return a+b;
End function funn()
Integer funn(Integer a,Integer b,Integer c){
for(each c from 3 to 6){
b=5+a;
if((c+a)>(a-c))
continue
Else
a=7+a;
a=(a&b)+b;
End if
End for
return a+b;
End function funn()
What is the output of the following pseudocode?
Integer p,q,r;
Set p=8,q=3,r=10
for(each r from 5 to 9)
p=q^r
if(9<r)
continue
else
Jump out of the loop
End if
p=7+q
End for
Print p+q;
Integer p,q,r;
Set p=8,q=3,r=10
for(each r from 5 to 9)
p=q^r
if(9<r)
continue
else
Jump out of the loop
End if
p=7+q
End for
Print p+q;
What is the output of the following pseudocode?
Integer j,m
Set m=1
Integer a[4]={1,1,0,2}
a[0]=a[0]-a[1]+a[2]
a[1]=a[1]-a[2]
a[2]=a[2]-a[3]
a[3]=a[0]
m=a[3]
Print m;
Integer j,m
Set m=1
Integer a[4]={1,1,0,2}
a[0]=a[0]-a[1]+a[2]
a[1]=a[1]-a[2]
a[2]=a[2]-a[3]
a[3]=a[0]
m=a[3]
Print m;
What is the output of the following pseudocode?
Integer pp,qq,rr
Set pp=8,qq=3,rr=14
qq=(pp+qq)+qq
qq=11^rr
qq=qq+rr
qq=(rr^6)&rr
qq=(rr^6)&rr
Print pp+qq+rr
Integer pp,qq,rr
Set pp=8,qq=3,rr=14
qq=(pp+qq)+qq
qq=11^rr
qq=qq+rr
qq=(rr^6)&rr
qq=(rr^6)&rr
Print pp+qq+rr
public class Program
{
public static void main(String[] args) {
class Inner{
public String name;//Line 4
public Inner(String s){
name=s;//Line 7
}
}
Object o=new Inner("Hello");//Line 10
Inner inner=(Inner)o;
System.out.println(inner.name);
}
}
What will be the output of the given code?
{
public static void main(String[] args) {
class Inner{
public String name;//Line 4
public Inner(String s){
name=s;//Line 7
}
}
Object o=new Inner("Hello");//Line 10
Inner inner=(Inner)o;
System.out.println(inner.name);
}
}
What will be the output of the given code?
Which component is responsible for to optimize bytecode to machine code?
Anonymous Quiz
56%
JVM
14%
JDK
8%
JRE
8%
JIT
11%
All of the above
2%
None of the above
Which one among the following is not true about java?
Anonymous Quiz
9%
Platform independent
8%
Object oriented language
8%
It is robust and secure
75%
None of the above
Which one among the following statement is not true about OOP?
Anonymous Quiz
12%
It is easier to maintain
17%
It provides better organization for code reuse and library Functionality
38%
Objects are software bundles of data and related procedures
33%
None of the above